import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Larvesta", fr: "Pyronille", es: "Larvesta", it: "Larvesta", pt: "Larvesta", de: "Ignivor" }, illustrator: "match", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 636, ], hp: 80, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Ram", }, damage: 20, }, { cost: [ "Fire", "Fire", "Colorless", ], name: { en: "Flare", }, damage: 40, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 3 } export default card