1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 23:55:12 +00:00
Files
cards-database/data/Platinum/Arceus/91.ts

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