1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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

79 lines
1.5 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 '../Shining Fates'
const card: Card = {
dexId: [815],
set: Set,
name: {
fr: "Pyrobut V",
en: "Cinderace V",
es: "Cinderace V",
it: "Cinderace V",
pt: "Cinderace V",
de: "Liberlo V"
},
illustrator: "5ban Graphics",
rarity: "Holo Rare V",
category: "Pokemon",
hp: 210,
types: ["Fire"],
abilities: [{
type: "Ability",
name: {
fr: "Coureur de Fond",
en: "Field Runner",
es: "Corredor de Campo",
it: "[Ability] Corridore",
pt: "[Ability] Corredor Campal",
de: "Feldspieler"
},
effect: {
fr: "Si un Stade est en jeu, ce Pokémon n'a pas de Coût de Retraite.",
en: "If a Stadium is in play, this Pokémon has no Retreat Cost.",
es: "Si hay un Estadio en juego, este Pokémon no tiene ningún Coste de Retirada.",
it: "Se c'è in gioco una carta Stadio, questo Pokémon non ha costo di ritirata.",
pt: "Se um Estádio estiver em jogo, este Pokémon não terá custo de Recuo.",
de: "Wenn eine Stadionkarte im Spiel ist, hat dieses Pokémon keine Rückzugskosten."
}
}],
attacks: [{
name: {
fr: "Jambes Carmin",
en: "Crimson Legs",
es: "Extremidades Carmesís",
it: "Arti Incandescenti",
pt: "Pernas Carmesins",
de: "Rote Beine"
},
damage: 140,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
stage: "Basic",
suffix: "V"
}
export default card