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: "dp1-81", localId: 81, // Card informations name: { en: "Electabuzz", fr: "Elektek", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 125, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp1/81/low.png", fr: "https://assets.tcgdex.net/fr/dp/dp1/81/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp1/81/high.png", fr: "https://assets.tcgdex.net/fr/dp/dp1/81/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "Thunderpunch", fr: "Poing-Éclair", }, text: { en: "Flip a coin. If heads, this attack does 30 damage plus 10 more damage. If tails, Electabuzz does 10 damage to itself.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 10 dégâts supplémentaires. Si c'est pile, Elektek s'inflige 10 dégâts.", }, damage: 30 },{ cost: [ Type.LIGHTNING, Type.LIGHTNING ], name: { en: "Shock Wave", fr: "Onde de choc", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed. If Electabuzz is evolved from Elekid, this attack does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé. Si Elektek évolue d'Elekid, cette attaque inflige 20 dégâts à 1 des Pokémon de Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "+10" }], resistances: [{ type: Type.METAL, value: "-20" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Diamond & Pearl", code: "dp1" } } export default card