import { Card } from '../../../interfaces' import Set from '../Shining Legends' const card: Card = { name: { en: "Stunfisk", fr: "Limonde", }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 618, ], hp: 110, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Lightning", "Colorless", ], name: { en: "Thunder Shock", fr: "Éclair", }, effect: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, damage: 30, }, { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Head Bolt", fr: "Éclair Frontal", }, damage: 70, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 3, } export default card