1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 07:32: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

70 lines
1.7 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 '../Dragon Majesty'
const card: Card = {
name: {
en: "Turtonator",
fr: "Boumata",
es: "Turtonator",
it: "Turtonator",
pt: "Turtonator",
de: "Tortunator"
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
776,
],
hp: 110,
types: [
"Dragon",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
"Fire",
"Fire",
],
name: {
en: "Explosive Jet",
fr: "Souffle Explosif",
es: "Propulsión Explosiva",
it: "Getto Esplosivo",
pt: "Jato Explosivo",
de: "Explosiver Antrieb"
},
effect: {
en: "Discard any amount of Fire Energy from your Pokémon. This attack does 50 damage for each card you discarded in this way.",
fr: "Défaussez nimporte quel nombre dÉnergies Fire de vos Pokémon. Cette attaque inflige 50 dégâts pour chaque carte défaussée de cette façon.",
es: "Descarta cualquier cantidad de Energías Fire de tus Pokémon. Este ataque hace 50 puntos de daño por cada carta que hayas descartado de esta manera.",
it: "Scarta tutte le Energie Fire che vuoi assegnate ai tuoi Pokémon. Questo attacco infligge 50 danni per ogni carta che hai scartato in questo modo.",
pt: "Descarte qualquer quantidade de Energia Fire dos seus Pokémon. Este ataque causa 50 pontos de dano para cada carta descartada desta forma.",
de: "Lege beliebig viele Fire-Energien von deinen Pokémon auf deinen Ablagestapel. Diese Attacke fügt 50 Schadenspunkte mal der Anzahl der auf diese Weise auf deinen Ablagestapel gelegten Karten zu."
},
damage: "50×",
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 3,
}
export default card