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

42 lines
984 B
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 '../Fates Collide'
const card: Card = {
name: {
en: "Energy Reset",
fr: "Réinitialisation dÉnergie",
es: "Reinicio de Energía",
it: "Ripresa Energetica",
pt: "Energia Redefinida",
de: "Energierückstellung"
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Placez dans votre main autant dÉnergies attachées à votre Pokémon que vous voulez.",
en: "Put as many Energy attached to your Pokémon as you like into your hand.",
es: "Pon tantas Energías unidas a tus Pokémon como quieras en tu mano.",
it: "Prendi tutte le Energie assegnate ai tuoi Pokémon che vuoi e aggiungile alle carte che hai in mano.",
pt: "Coloque tantas Energias ligadas aos seus Pokémon quanto desejar em sua mão.",
de: "Nimm beliebig viele an deine Pokémon angelegten Energien auf deine Hand."
},
trainerType: "Item",
}
export default card