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: "pl2-39", localId: 39, // Card informations name: { en: "Electrode G", fr: "Electrode Niv. 38", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 101, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl2/39/low.png", fr: "https://assets.tcgdex.net/fr/pl/pl2/39/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl2/39/high.png", fr: "https://assets.tcgdex.net/fr/pl/pl2/39/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, Tag.SP, ], illustrator: { id: 123, name: "Yusuke Ishikawa" }, attacks: [{ cost: [ Type.LIGHTNING ], name: { en: "Reckless Bomb", fr: "Bombe imprudente", }, text: { en: "This attack does 20 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) Electrode does 100 damage to itself.", fr: "Cette attaque inflige 20 dégâts à chacun des Pokémon de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc). Electrode s'inflige 100 dégâts.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Reflect Energy", fr: "Renvoi d'énergie", }, text: { en: "Move an Energy card attached to Electrode to 1 of your Benched Pokémon.", fr: "Déplacez une carte Énergie attachée à Electrode sur 1 des Pokémon de votre Banc.", }, damage: 30 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-20" }], retreat: 1, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Rising Rivals", code: "pl2" } } export default card