1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

68 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Chilling Reign'
const card: Card = {
dexId: [636],
set: Set,
name: {
en: "Larvesta",
fr: "Pyronille",
es: "Larvesta",
it: "Larvesta",
pt: "Larvesta",
de: "Ignivor"
},
illustrator: "Misa Tsutsui",
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Fire"],
attacks: [{
name: {
en: "Flame Charge",
fr: "Nitrocharge",
es: "Nitrocarga",
it: "Nitrocarica",
pt: "Ataque de Chamas",
de: "Nitroladung"
},
effect: {
en: "Search your deck for a Fire Energy card and attach it to this Pokémon. Then, shuffle your deck.",
fr: "Cherchez dans votre deck une carte Énergie Fire, puis attachez-la à ce Pokémon. Mélangez ensuite votre deck.",
es: "Busca en tu baraja 1 carta de Energía Fire y únela a este Pokémon. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo una carta Energia Fire e assegnala a questo Pokémon. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por 1 carta de Energia Fire no seu baralho e ligue-a a este Pokémon. Em seguida, embaralhe o seu baralho.",
de: "Durchsuche dein Deck nach 1 Fire-Energiekarte und lege sie an dieses Pokémon an. Mische anschließend dein Deck."
},
damage: 10,
cost: ["Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "E",
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