import { Card } from "../../../interfaces" import Set from "../Shining Revelry" const card: Card = { set: Set, name: { en: "Gimmighoul" }, illustrator: "HYOGONOSUKE", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Psychic"], description: { en: "This Pokémon was born inside a treasure chest about 1,500 years ago. It sucks the life-force out of scoundrels who try to steal the treasure." }, stage: "Basic", attacks: [{ name: { en: "Chest-ouflage" }, cost: ["Colorless"], effect: { en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from—and effects of—attacks done to this Pokémon." } }], weaknesses: [{ type: "Darkness", value: "+20" }], retreat: 1 } export default card