import { Card } from '../../../interfaces' import Set from '../Plasma Blast' const card: Card = { name: { en: "Larvesta", fr: "Pyronille", es: "Larvesta", it: "Larvesta", pt: "Larvesta", de: "Ignivor" }, illustrator: "Masakazu Fukuda", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 636, ], hp: 70, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", ], name: { en: "Flare", fr: "Flamboiement", }, damage: 10, }, { cost: [ "Fire", "Colorless", ], name: { en: "Ember", fr: "Flammèche", }, effect: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 30, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 3, } export default card