import { Card } from '../../../interfaces' import Set from '../Steam Siege' const card: Card = { name: { en: "Larvesta", fr: "Pyronille", es: "Larvesta", it: "Larvesta", pt: "Larvesta", de: "Ignivor" }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 636, ], hp: 70, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", "Colorless", ], name: { en: "Bug Bite", fr: "Piqûre", es: "Picadura", it: "Coleomorso", pt: "Picada", de: "Käferbiss" }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 2, } export default card