import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Simipour", fr: "Flotoutan" }, illustrator: "Shigenori Negishi", rarity: "Uncommon", category: "Pokemon", set: Set, hp: 100, types: [ "Water", ], evolveFrom: { en: "Panpour", fr: "Flotajou" }, attacks: [ { cost: [ "Water", ], name: { en: "Water Gun", fr: "Pistolet à O" }, damage: 30, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Giga Impact", fr: "Giga Impact" }, effect: { en: "During your next turn, this Pokémon can’t attack.", fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer." }, damage: 110, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, } export default card