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

68 lines
1.1 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: "Pyroar BREAK",
fr: "Némélios TURBO",
es: "Pyroar TURBO",
it: "Pyroar TURBO",
pt: "Pyroar TURBO",
de: "Pyroleo-TURBO"
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
668,
],
hp: 160,
types: [
"Fire",
],
evolveFrom: {
en: "Pyroar",
fr: "Némélios",
},
stage: "BREAK",
attacks: [
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Kaiser Tackle",
fr: "Charge Impériale",
es: "Placaje Káiser",
it: "Azione Imperiale",
pt: "Colisão do Imperador",
de: "Kaiser-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 de danos a ele mesmo.",
de: "Dieses Pokémon fügt sich selbst 50 Schadenspunkte zu."
},
damage: 180,
}
],
retreat: 0
}
export default card