mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
33 lines
496 B
TypeScript
33 lines
496 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Arceus'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Ultimate Zone",
|
|
fr: "Zone ultime",
|
|
},
|
|
illustrator: "Yusuke Ishikawa",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
en: "This card stays in play when you play it. Discard this card if another Stadium card comes into play. If another card with the same name is in play, you can't play this card.",
|
|
},
|
|
trainerType: "Stadium",
|
|
|
|
}
|
|
|
|
export default card
|