1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 1a98a6022b
Fixed GX being with a dash while it isn't on the card (#58)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-16 11:05:52 +02:00

92 lines
1.4 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 '../Detective Pikachu'
const card: Card = {
name: {
en: "Charizard",
fr: "Dracaufeu",
es: "Charizard",
it: "Charizard",
pt: "Charizard",
de: "Glurak"
},
illustrator: "Framestore",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
6,
],
hp: 180,
types: [
"Fire",
],
evolveFrom: {
en: "Charmeleon",
fr: "Reptincel",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Slash",
fr: "Tranche",
es: "Cuchillada",
it: "Lacerazione",
pt: "Talho",
de: "Schlitzer"
},
damage: 70,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Wild Tackle",
fr: "Tacle Brutal",
es: "Placaje Salvaje",
it: "Azionferoce",
pt: "Investida Feroz",
de: "Wilder Tackle"
},
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 pontos de dano a si mesmo.",
de: "Dieses Pokémon fügt sich selbst 50 Schadenspunkte zu."
},
damage: 180,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 3,
}
export default card