import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "bw4-55", localId: 55, // Card informations name: { en: "Ralts", fr: "Tarsal", }, hp: 60, type: [ Type.PSYCHIC, ], dexId: 280, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw4/55/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw4/55/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw4/55/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw4/55/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Psyshot", fr: "Piqûre Psy", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Smack", fr: "Claque", }, damage: 20 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Next Destinies", code: "bw4" } } export default card