import { Card } from '../../../interfaces' import Set from '../Next Destinies' const card: Card = { name: { en: "Simipour", fr: "Flotoutan", es: "Simipour", it: "Simipour", pt: "Simipour", de: "Sodachita" }, illustrator: "Akira Komayama", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 516, ], hp: 90, types: [ "Water", ], evolveFrom: { en: "Panpour", fr: "Flotajou", }, stage: "Stage1", attacks: [ { cost: [ "Water", ], name: { en: "Collect", fr: "Collecte", }, effect: { en: "Draw 3 cards.", fr: "Piochez 3 cartes.", }, }, { cost: [ "Water", "Colorless", ], name: { en: "Stadium Wave", fr: "Innondation du Stade", }, effect: { en: "If there is any Stadium card in play, this attack does 30 more damage and the Defending Pokémon is now Asleep.", fr: "S'il y a une carte Stade en jeu, cette attaque inflige 30 dégâts supplémentaires et le Pokémon Défenseur est maintenant Endormi.", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, } export default card