import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Stunfisk", }, illustrator: "Yuka Morii", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 618, ], hp: 100, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Muddy Water", }, effect: { en: "Does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 20, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Rumble", }, effect: { en: "The Defending Pokémon can't retreat during your opponent's next turn.", }, damage: 40, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], retreat: 3 } export default card