1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

86 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 '../Flashfire'
const card: Card = {
name: {
en: "Torkoal",
fr: "Chartor",
es: "Torkoal",
it: "Torkoal",
pt: "Torkoal",
de: "Qurtel"
},
illustrator: "Akira Komayama",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
324,
],
hp: 100,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Live Coal",
fr: "Charbon Mutant",
es: "Carbón Activado",
it: "Carboni Ardenti",
pt: "Carvão Vivo",
de: "Glühende Kohlen"
},
damage: 20,
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Flamethrower",
fr: "Lance-Flammes",
es: "Lanzallamas",
it: "Lanciafiamme",
pt: "Lança-chamas",
de: "Flammenwurf"
},
effect: {
en: "Flip a coin. If tails, discard an Energy attached to this Pokémon.",
fr: "Lancez une pièce. Si c'est pile, défaussez une Énergie attachée à ce Pokémon.",
es: "Lanza 1 moneda. Si sale cruz, descarta 1 Energía unida a este Pokémon.",
it: "Lancia una moneta. Se esce croce, scarta un'Energia assegnata a questo Pokémon.",
pt: "Jogue uma moeda. Se sair coroa, descarte uma Energia ligada a este Pokémon.",
de: "Wirf 1 Münze. Lege bei \"Zahl\" 1 an dieses Pokémon angelegte Energie auf deinen Ablagestapel."
},
damage: 80,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card