mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 01:37:52 +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
40 lines
1007 B
TypeScript
40 lines
1007 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Sword & Shield'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Pal Pad",
|
|
fr: "Registre Ami",
|
|
es: "Bloc Amigos",
|
|
it: "Blocco Amici",
|
|
pt: "Pal Pad",
|
|
de: "Adressbuch"
|
|
},
|
|
|
|
illustrator: "Ryo Ueda",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
en: "Shuffle up to 2 Supporter cards from your discard pile into your deck.",
|
|
fr: "Mélangez avec votre deck jusqu'à 2 cartes Supporter de votre pile de défausse.",
|
|
es: "Pon hasta 2 cartas de Partidario de tu pila de descartes en tu baraja y barájalas todas.",
|
|
it: "Rimischia fino a due carte Aiuto dalla tua pila degli scarti nel tuo mazzo.",
|
|
pt: "Embaralhe até 2 cartas de Apoiador da sua pilha de descarte no seu baralho.",
|
|
de: "Mische bis zu 2 Unterstützerkarten aus deinem Ablagestapel in dein Deck."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "D",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card
|