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: "dp5-43", localId: 43, // Card informations name: { en: "Pachirisu", fr: "Pachirisu", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 417, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp5/43/low.png", fr: "https://assets.tcgdex.net/fr/dp/dp5/43/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp5/43/high.png", fr: "https://assets.tcgdex.net/fr/dp/dp5/43/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 18, name: "Tomokazu Komiya" }, attacks: [{ name: { en: "Trans Tail", fr: "Trans-queue", }, text: { en: "Search your discard pile for a Lightning Energy card, show it to your opponent, and put it into your hand.", fr: "Cherchez dans votre pile de défausse une carte Énergie Fighting, montrez-la à votre adversaire et placez-la dans votre main.", }, },{ cost: [ Type.LIGHTNING, Type.COLORLESS ], 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: 30 }], weaknesses: [{ type: Type.FIGHTING, value: "+20" }], resistances: [{ type: Type.METAL, value: "-20" }], retreat: 1, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Majestic Dawn", code: "dp5" } } export default card