import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Deino", }, illustrator: "Akira Komayama", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 633, ], hp: 60, types: [ "Dragon", ], stage: "Basic", attacks: [ { cost: [ "Darkness", ], name: { en: "Deep Growl", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Power Breath", }, effect: { en: "Discard an Energy attached to this Pokémon.", }, damage: 30, }, ], weaknesses: [ { type: "Dragon", value: "×2" }, ], retreat: 2 } export default card