import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "xy1-43", localId: 43, // Card informations name: { en: "Raichu", fr: "Raichu", }, hp: 90, type: [ Type.LIGHTNING, ], dexId: 26, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy1/43/low", fr: "https://assets.tcgdex.net/fr/xy/xy1/43/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy1/43/high", fr: "https://assets.tcgdex.net/fr/xy/xy1/43/high", }, }, evolveFrom: { en: "Pikachu", fr: "Pikachu", }, tags: [ Tag.STAGE1, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Circle Circuit", fr: "Cercle Électrik", }, text: { en: "This attack does 20 damage times the number of your Benched Pokémon.", fr: "Cette attaque inflige 20 dégâts multipliés par le nombre de vos Pokémon de Banc.", }, damage: 20 },{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.COLORLESS ], name: { en: "Thunderbolt", fr: "Tonnerre", }, text: { en: "Discard all Energy attached to this Pokémon.", fr: "Défaussez toutes les Énergies attachées à ce Pokémon.", }, damage: 100 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-20" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "XY", code: "xy1" } } export default card