mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-05 00:52:08 +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
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Sword & Shield'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Metal Saucer",
|
|
fr: "Écusson Métal",
|
|
es: "Platillo Metálico",
|
|
it: "Piatto di Metallo",
|
|
pt: "Disco de Metal",
|
|
de: "Metallplatte"
|
|
},
|
|
|
|
illustrator: "Toyste Beach",
|
|
rarity: "Secret Rare",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
en: "Attach a Metal Energy card from your discard pile to 1 of your Benched Metal Pokémon.",
|
|
fr: "Attachez une carte Énergie Metal de votre pile de défausse à l'un de vos Pokémon Metal de Banc.",
|
|
es: "Une 1 carta de Energía Metal de tu pila de descartes a 1 de tus Pokémon Metal en Banca.",
|
|
it: "Assegna a uno dei tuoi Pokémon Metal in panchina una carta Energia Metal dalla tua pila degli scarti.",
|
|
pt: "Ligue 1 carta de Energia Metal da sua pilha de descarte a 1 dos seus Pokémon Metal no Banco.",
|
|
de: "Lege 1 Metal-Energiekarte aus deinem Ablagestapel an 1 Metal-Pokémon auf deiner Bank an."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "D",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card
|