import { Card } from '../../../interfaces' import Set from '../Cosmic Eclipse' const card: Card = { name: { en: "Type: Null", fr: "Type:0", }, illustrator: "KEIICHIRO ITO", rarity: "Uncommon", category: "Pokemon", set: Set, hp: 110, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Air Slash", fr: "Lame d’Air", }, effect: { en: "Discard an Energy from this Pokémon.", fr: "Défaussez une Énergie de ce Pokémon.", }, damage: 50, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 2, } export default card