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

85 lines
1.4 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 '../Steam Siege'
const card: Card = {
name: {
en: "Chimchar",
fr: "Ouisticram",
es: "Chimchar",
it: "Chimchar",
pt: "Chimchar",
de: "Panflam"
},
illustrator: "Shibuzoh.",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
390,
],
hp: 60,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Scratch",
fr: "Griffe",
es: "Arañazo",
it: "Graffio",
pt: "Arranhão",
de: "Kratzer"
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Ember",
fr: "Flammèche",
es: "Ascuas",
it: "Braciere",
pt: "Brasa",
de: "Glut"
},
effect: {
en: "Flip a coin. If tails, discard a Fire Energy attached to this Pokémon.",
fr: "Lancez une pièce. Si cest pile, défaussez une Énergie Fire attachée à ce Pokémon.",
es: "Lanza 1 moneda. Si sale cruz, descarta 1 Energía Fire unida a este Pokémon.",
it: "Lancia una moneta. Se esce croce, scarta unEnergia Fire assegnata a questo Pokémon.",
pt: "Jogue uma moeda. Se sair coroa, descarte uma Energia Fire ligada a este Pokémon.",
de: "Wirf 1 Münze. Lege bei „Zahl“ 1 an dieses Pokémon angelegte Fire-Energie auf deinen Ablagestapel."
},
damage: 30,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card