1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

75 lines
1.2 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 '../Evolutions'
const card: Card = {
name: {
en: "M Charizard EX",
fr: "M-Dracaufeu EX",
es: "M-Charizard EX",
it: "M Charizard EX",
pt: "M-Charizard EX",
de: "M-Glurak EX"
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
6,
],
hp: 220,
types: [
"Fire",
],
evolveFrom: {
en: "Charizard-EX",
fr: "Dracaufeu-EX",
},
stage: "MEGA",
attacks: [
{
cost: [
"Fire",
"Fire",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Crimson Dive",
fr: "Plongeon Écarlate",
es: "Picado Carmesí",
it: "Tufforosso",
pt: "Mergulho Carmim",
de: "Feuerroter Sturzflug"
},
effect: {
en: "This Pokémon does 50 damage to itself.",
fr: "Ce Pokémon sinflige 50 dégâts.",
es: "Este Pokémon se hace 50 puntos de daño a sí mismo.",
it: "Questo Pokémon infligge 50 danni a se stesso.",
pt: "Este Pokémon causa 50 de danos a ele mesmo.",
de: "Dieses Pokémon fügt sich selbst 50 Schadenspunkte zu."
},
damage: 300,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card