import { Card } from '../../../interfaces' import Set from '../Noble Victories' const card: Card = { name: { en: "Stunfisk", fr: "Limonde", es: "Stunfisk", it: "Stunfisk", pt: "Stunfisk", de: "Flunschlik" }, illustrator: "Midori Harada", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 618, ], hp: 90, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Lightning", "Colorless", ], name: { en: "Trickle", fr: "Goutte à Goutte", }, effect: { 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: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Thundershock", fr: "Éclair", }, effect: { 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: "Water", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], retreat: 1, } export default card