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: "bwp-BW76", localId: "BW76", // Card informations name: { en: "Electrode", fr: "Électrode", }, hp: 100, type: [ Type.LIGHTNING, ], dexId: 101, image: { low: { en: "https://assets.tcgdex.net/en/bw/bwp/BW76/low.png", fr: "https://assets.tcgdex.net/fr/bw/bwp/BW76/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bwp/BW76/high.png", fr: "https://assets.tcgdex.net/fr/bw/bwp/BW76/high.png", }, }, evolveFrom: { en: "Voltorb", fr: "Voltorbe", }, tags: [ Tag.STAGE1, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.LIGHTNING ], name: { en: "Electribeam", fr: "Rayon Électrique", }, 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: "Self Destruct", fr: "Destruction", }, text: { en: "This Pokémon does 100 damage to itself.", fr: "Ce Pokémon s'inflige 100 dégâts.", }, damage: 100 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "BW Black Star Promos", code: "bwp" } } export default card