mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Battle Styles'
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Urn of Vitality",
|
|
fr: "Urne de Vitalité",
|
|
es: "Urna Vitalidad",
|
|
it: "Urna del Vigore",
|
|
pt: "Urna de Vitalidade",
|
|
de: "Urne der Vitalität"
|
|
},
|
|
|
|
illustrator: "Toyste Beach",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Shuffle up to 2 Single Strike Energy cards from your discard pile into your deck.",
|
|
fr: "Mélangez avec votre deck jusqu'à 2 cartes Énergie Poing Final de votre pile de défausse.",
|
|
es: "Pon hasta 2 cartas de Energía Golpe Brusco de tu pila de descartes en tu baraja y barájalas todas.",
|
|
it: "Rimischia fino a due carte Energia Colpo Singolo dalla tua pila degli scarti nel tuo mazzo.",
|
|
pt: "Embaralhe até 2 cartas de Energia Golpe Decisivo da sua pilha de descarte no seu baralho.",
|
|
de: "Mische bis zu 2 Fokussierter-Angriff-Energiekarten aus deinem Ablagestapel in dein Deck."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "E",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card
|