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-68", localId: 68, // Card informations name: { en: "Stunfisk", fr: "Limonde", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 618, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw3/68/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw3/68/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw3/68/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw3/68/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 2, name: "Midori Harada" }, attacks: [{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "Trickle", fr: "Goutte à Goutte", }, text: { en: "Flip 2 coins. This attack does 30 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.", }, damage: 30 },{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.COLORLESS ], name: { en: "Thundershock", fr: "Éclair", }, 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: 50 }], weaknesses: [{ type: Type.WATER, value: "×2" }], resistances: [{ type: Type.LIGHTNING, value: "-20" }], retreat: 1, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Noble Victories", code: "bw3" } } export default card