import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/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", fr: "https://assets.tcgdex.net/fr/bw/bw3/68/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw3/68/high", fr: "https://assets.tcgdex.net/fr/bw/bw3/68/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "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