import { Card } from '../../../interfaces' import Set from '../Noble Victories' const card: Card = { name: { en: "Larvesta", fr: "Pyronille", es: "Larvesta", it: "Larvesta", pt: "Larvesta", de: "Ignivor" }, illustrator: "Naoki Saito", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 636, ], hp: 80, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Take Down", fr: "Bélier", }, effect: { en: "This Pokémon does 10 damage to itself.", fr: "Ce Pokémon s'inflige 10 dégâts.", }, damage: 30, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 2, } export default card