import { Card } from '../../../interfaces' import Set from '../Steam Siege' const card: Card = { name: { en: "Larvesta", fr: "Pyronille", }, 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", }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 2, } export default card