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

94 lines
2.3 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 '../Celestial Storm'
const card: Card = {
name: {
en: "Torkoal",
fr: "Chartor",
es: "Torkoal",
it: "Torkoal",
pt: "Torkoal",
de: "Qurtel"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
324,
],
hp: 120,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Flaming Honk",
fr: "Sifflet Embrasé",
es: "Resoplido Fogoso",
it: "Sbuffo Infuocato",
pt: "Buzina Flamejante",
de: "Heißes Schnaufen"
},
effect: {
en: "Discard the top 4 cards of your deck. If any of those cards are Fire Energy cards, attach them to your Pokémon in any way you like.",
fr: "Défaussez les 4 cartes du dessus de votre deck. Si vous y trouvez des cartes Énergie Fire, attachez-les à vos Pokémon, de la manière que vous voulez.",
es: "Descarta las 4 primeras cartas de tu baraja. Si entre esas cartas hay cartas de Energía Fire, únelas a tus Pokémon de la manera que desees.",
it: "Scarta le prime quattro carte del tuo mazzo. Se fra queste ci sono delle carte Energia Fire, assegnale a piacimento ai tuoi Pokémon.",
pt: "Descarte as 4 primeiras cartas do seu baralho. Se houver cartas de Energia Fire entre elas, ligue-as aos seus Pokémon como desejar.",
de: "Lege die obersten 4 Karten von deinem Deck auf deinen Ablagestapel. Wenn unter jenen Karten Fire-Energiekarten sind, lege sie beliebig an deine Pokémon an."
},
damage: 30,
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Searing Flame",
fr: "Flammes Calcinantes",
es: "Llama Abrasadora",
it: "Fiamme Ustionanti",
pt: "Chama Cauterizante",
de: "Sengende Flammen"
},
effect: {
en: "Your opponents Active Pokémon is now Burned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
es: "El Pokémon Activo de tu rival pasa a estar Quemado.",
it: "Il Pokémon attivo del tuo avversario viene bruciato.",
pt: "O Pokémon Ativo do seu oponente agora está Queimado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt."
},
damage: 80,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 3,
}
export default card