import { Card } from '../../../interfaces' import Set from '../Unified Minds' const card: Card = { name: { en: "Stunfisk", fr: "Limonde", }, illustrator: "MAHOU", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 618, ], hp: 90, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Trap Bolt", fr: "Piège Foudre", }, effect: { en: "If, before doing damage, your opponent's Active Pokémon has more remaining HP than this Pokémon, this attack does 30 more damage.", fr: "Si, avant d’infliger des dégâts, il reste plus de PV au Pokémon Actif de votre adversaire qu’à ce Pokémon, cette attaque inflige 30 dégâts supplémentaires.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card