mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
42 lines
980 B
TypeScript
42 lines
980 B
TypeScript
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
|