import { Card } from '../../../interfaces' import Set from '../Legend Maker' const card: Card = { name: { en: "Lunatone", }, illustrator: "Hisao Nakamura", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 337, ], hp: 60, types: [ "Psychic", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Sol Shade", }, effect: { en: "As long as you have Solrock in play, each player's Fire Pokémon (excluding Pokémon-ex) can't use any Poké-Powers.", }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Moon Guidance", }, effect: { en: "Search your deck for a Trainer card (excluding Supporter cards), show it to your opponent, and put it into your hand. Shuffle your deck afterward.", }, }, { cost: [ "Psychic", ], name: { en: "Psyshock", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card