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: "sm12-241", localId: 241, // Card informations name: { en: "Pikachu", fr: "Pikachu", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 25, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm12/241/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm12/241/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm12/241/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm12/241/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 67, name: "Hitoshi Ariga" }, attacks: [{ cost: [ Type.LIGHTNING ], name: { en: "Nuzzle", fr: "Frotte-Frimousse", }, text: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, },{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.COLORLESS ], name: { en: "Volt Tackle", fr: "Électacle", }, text: { en: "This Pokémon does 10 damage to itself.", fr: "Ce Pokémon s’inflige 10 dégâts.", }, damage: 70 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-20" }], retreat: 1, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Cosmic Eclipse", code: "sm12" } } export default card