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