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

67 lines
1.3 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: "Xerneas BREAK",
fr: "Xerneas TURBO",
es: "Xerneas TURBO",
it: "Xerneas TURBO",
pt: "Xerneas TURBO",
de: "Xerneas-TURBO"
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
716,
],
hp: 150,
types: [
"Fairy",
],
evolveFrom: {
en: "Xerneas",
fr: "Xerneas",
},
stage: "BREAK",
attacks: [
{
cost: [
"Fairy",
"Fairy",
],
name: {
en: "Life Stream",
fr: "Flux Vital",
es: "Flujo de Vida",
it: "Flusso Creativo",
pt: "Fluxo de Vida",
de: "Strom des Lebens"
},
effect: {
en: "This attack does 20 damage times the amount of Energy attached to all of your Pokémon.",
fr: "Cette attaque inflige 20 dégâts multipliés par le nombre dÉnergies attachées à tous vos Pokémon.",
es: "Este ataque hace 20 puntos de daño por cada Energía unida a todos tus Pokémon.",
it: "Questo attacco infligge 20 danni per ogni Energia assegnata ai tuoi Pokémon.",
pt: "Este ataque causa 20 de danos vezes a quantidade de Energia ligada a todos os seus Pokémon.",
de: "Dieser Angriff fügt 20 Schadenspunkte für jede an deine Pokémon angelegte Energie zu."
},
damage: "20×",
}
],
retreat: 0
}
export default card