import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Larvesta", fr: "Pyronille", es: "Larvesta", it: "Larvesta", pt: "Larvesta", de: "Ignivor" }, illustrator: "Uta", rarity: "Common", category: "Pokemon", set: Set, hp: 70, types: [ "Fire", ], attacks: [ { cost: [ "Fire", ], name: { en: "Singe", fr: "Roussi", es: "Quemadura", it: "Scottata", pt: "Chamuscada", de: "Versengung" }, effect: { en: "Your opponent's Active Pokémon is now Burned.", fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.", es: "El Pokémon Activo de tu rival pasa a estar Quemado.", it: "Il Pokémon attivo del tuo avversario viene bruciato.", pt: "O Pokémon Ativo do seu oponente agora está Queimado.", de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt." }, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 2, regulationMark: "D", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, stage: "Basic", description: { en: "It protects itself with flame. Long years ago, people believed Larvesta had a nest on the sun." } } export default card