1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

92 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Torkoal",
fr: "Chartor",
es: "Torkoal",
it: "Torkoal",
pt: "Torkoal",
de: "Qurtel"
},
illustrator: "0313",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
324,
],
hp: 110,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Fire Fling",
fr: "Dégommage Feu",
es: "Lanzamiento Fuego",
it: "Fuocolancio",
pt: "Arremesso de Fogo",
de: "Feuerwurf"
},
effect: {
en: "Put 4 Fire Energy cards from your discard pile into your hand.",
fr: "Ajoutez 4 cartes Énergie Fire de votre pile de défausse à votre main.",
es: "Pon 4 cartas de Energía Fire de tu pila de descartes en tu mano.",
it: "Prendi quattro carte Energia Fire dalla tua pila degli scarti e aggiungile alle carte che hai in mano.",
pt: "Coloque 4 cartas de Energia Fire da sua pilha de descarte na sua mão.",
de: "Nimm 4 Fire-Energiekarten aus deinem Ablagestapel auf deine Hand."
},
},
{
cost: [
"Fire",
"Fire",
"Fire",
],
name: {
en: "Kindle",
fr: "Enflammer",
es: "Encendido",
it: "Infiammare",
pt: "Inflamar",
de: "Anzünden"
},
effect: {
en: "Discard an Energy from this Pokémon. If you do, discard an Energy from your opponents Active Pokémon.",
fr: "Défaussez une Énergie de ce Pokémon. Dans ce cas, défaussez une Énergie du Pokémon Actif de votre adversaire.",
es: "Descarta 1 Energía de este Pokémon. Si lo haces, descarta 1 Energía del Pokémon Activo de tu rival.",
it: "Scarta unEnergia assegnata a questo Pokémon. Se lo fai, scarta unEnergia assegnata al Pokémon attivo del tuo avversario.",
pt: "Descarte 1 Energia deste Pokémon. Se fizer isto, descarte 1 Energia do Pokémon Ativo do seu oponente.",
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel. Wenn du das machst, lege 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
},
damage: 100,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card