import { Card } from '../../../interfaces' import Set from '../Delta Species' const card: Card = { name: { en: "Illumise", }, illustrator: "Midori Harada", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 314, ], hp: 60, types: [ "Grass", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Beacon Protection", }, effect: { en: "As long as you have Volbeat in play, prevent all effects, including damage, done to Illumise by attacks from your opponent's Pokémon that has Dark in its name.", }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Call for Family", }, effect: { en: "Search your deck for a Basic Pokémon and put it onto your Bench. Shuffle your deck afterward.", }, }, { cost: [ "Grass", "Colorless", ], name: { en: "Strange Rasping", }, effect: { en: "If the Defending Pokémon is an Evolved Pokémon, the Defending Pokémon is now Confused.", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card