import { Card } from '../../../interfaces' import Set from '../XY Black Star Promos' const card: Card = { name: { en: "Arceus", }, illustrator: "Naoki Saito", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 493, ], hp: 130, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Type Switch", }, effect: { en: "Choose Grass, Fire, Water, Lightning, Psychic, Fighting, Darkness, Metal, Fairy, or Dragon type. Until the end of your next turn, this Pokémon is that type.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", "Colorless", ], name: { en: "Power Blast", }, effect: { en: "Discard an Energy card attached to this Pokémon.", }, damage: 120, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card