1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00

74 lines
1005 B
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 '../Holon Phantoms'
const card: Card = {
name: {
en: "Torkoal",
fr: "Chartor",
de: "Qurtel"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
324,
],
hp: 80,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Grind",
fr: "Écrase",
de: "Zermahlen"
},
effect: {
en: "Does 10 damage times the amount of Energy attached to Torkoal.",
fr: "Inflige 10 dégâts multipliés par le nombre d'Énergies attachées à Chartor.",
de: "Dieser Angriff fügt für jede an Qurtel angelegte Energie 10 Schadenspunkte zu."
},
damage: "10x",
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Combustion",
fr: "Fournaise",
de: "Glühen"
},
damage: 40,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card