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

88 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: "Rapidash",
fr: "Galopa",
es: "Rapidash",
it: "Rapidash",
pt: "Rapidash",
de: "Gallopa"
},
illustrator: "Yukiko Baba",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
78,
],
hp: 90,
types: [
"Fire",
],
evolveFrom: {
en: "Ponyta",
fr: "Ponyta",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Rear Kick",
fr: "Ruade",
es: "Patada Trasera",
it: "Retrocalcio",
pt: "Chute Traseiro",
de: "Rückwärtskick"
},
damage: 30,
},
{
cost: [
"Fire",
"Fire",
],
name: {
en: "Fire Blast",
fr: "Déflagration",
es: "Llamarada",
it: "Fuocobomba",
pt: "Rajada de Fogo",
de: "Feuersturm"
},
effect: {
en: "Discard a Fire Energy attached to this Pokémon.",
fr: "Défaussez une Énergie Fire attachée à ce Pokémon.",
es: "Descarta 1 Energía Fire unida a este Pokémon.",
it: "Scarta unEnergia Fire assegnata a questo Pokémon.",
pt: "Descarte uma Energia Fire ligada a este Pokémon.",
de: "Lege 1 an dieses Pokémon angelegte Fire-Energie auf deinen Ablagestapel."
},
damage: 70,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card