mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-26 22:09:18 +00:00
34 lines
526 B
TypeScript
34 lines
526 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Sword & Shield'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Metal Saucer",
|
||
fr: "Écusson Métal",
|
||
},
|
||
illustrator: "Toyste Beach",
|
||
rarity: "Uncommon",
|
||
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."
|
||
},
|
||
trainerType: "Item",
|
||
|
||
}
|
||
|
||
export default card
|