import { Card } from "../../../interfaces" import Set from "../Shining Revelry" const card: Card = { set: Set, name: { en: "Floragato" }, illustrator: "mashu", rarity: "Two Diamond", category: "Pokemon", hp: 90, types: ["Grass"], evolveFrom: { en: "Sprigatito" }, description: { en: "Floragato deftly wields the vine hidden beneath its long fur, slamming the hard flower bud against its opponents." }, stage: "Stage1", attacks: [{ name: { en: "Slash" }, damage: 40, cost: ["Grass", "Grass"] }], weaknesses: [{ type: "Fire", value: "+20" }], retreat: 1 } export default card