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: "xy3-29", localId: 29, // Card informations name: { en: "Electabuzz", fr: "Élektek", }, hp: 80, type: [ Type.LIGHTNING, ], dexId: 125, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy3/29/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy3/29/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy3/29/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy3/29/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 15, name: "Naoki Saito" }, attacks: [{ cost: [ Type.LIGHTNING ], name: { en: "Light Punch", fr: "Poing Léger", }, damage: 10 },{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "Ambush", fr: "Embuscade", }, text: { en: "Flip a coin. If heads, this attack does 20 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-20" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Furious Fists", code: "xy3" } } export default card