import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Simisage", fr: "Feuiloutan" }, illustrator: "Hasegawa Saki", rarity: "Uncommon", category: "Pokemon", set: Set, hp: 100, types: [ "Grass", ], evolveFrom: { en: "Pansage", fr: "Feuillajou" }, attacks: [ { cost: [ "Grass", ], name: { en: "Seed Bomb", fr: "Canon Graine" }, 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: "Fire", value: "×2" }, ], retreat: 1, } export default card