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: "bw3-36", localId: 36, // Card informations name: { en: "Zebstrika", fr: "Zéblitz", }, hp: 90, type: [ Type.LIGHTNING, ], dexId: 523, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw3/36/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw3/36/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw3/36/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw3/36/high.png", }, }, evolveFrom: { en: "Blitzle", fr: "Zébibron", }, tags: [ Tag.STAGE1, ], illustrator: { id: 28, name: "match" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Quick Attack", fr: "Vive-Attaque", }, 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: 10 },{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.COLORLESS ], name: { en: "Shock Bolt", fr: "Choc'Éclair", }, text: { en: "Flip a coin. If tails, discard all Lightning Energy attached to this Pokémon.", fr: "Lancez une pièce. Si c'est pile, défaussez toutes les Énergies Lightning attachées à ce Pokémon.", }, damage: 90 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 1, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Noble Victories", code: "bw3" } } export default card