import { Card } from '../../../interfaces' import Set from '../DP Black Star Promos' const card: Card = { name: { en: "Arceus", }, illustrator: "Kunihiko Yuyama", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 493, ], hp: 90, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", "Colorless", ], name: { en: "Judgment", }, effect: { en: "Discard all Energy cards attached to Arceus and this attack does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 80, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card