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: "bw4-40", localId: 40, // Card informations name: { en: "Raichu", fr: "Raichu", }, hp: 90, type: [ Type.LIGHTNING, ], dexId: 26, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw4/40/low", fr: "https://assets.tcgdex.net/fr/bw/bw4/40/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw4/40/high", fr: "https://assets.tcgdex.net/fr/bw/bw4/40/high", }, }, evolveFrom: { en: "Pikachu", fr: "Pikachu", }, tags: [ Tag.STAGE1, ], illustrator: "Naoki Saito", attacks: [{ cost: [ Type.LIGHTNING ], name: { en: "Thundershock", fr: "Éclair", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", }, damage: 20 },{ cost: [ Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Slam", fr: "Souplesse", }, text: { en: "Flip 2 coins. This attack does 80 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 80 dégâts multipliés par le nombre de côtés face.", }, damage: 80 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Next Destinies", code: "bw4" } } export default card