import { Card } from '../../../interfaces' import Set from '../Dragons Exalted' const card: Card = { name: { en: "Deino", fr: "Solochi", }, illustrator: "kawayoo", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 633, ], hp: 60, types: [ "Dragon", ], stage: "Basic", attacks: [ { cost: [ "Darkness", ], name: { en: "Deep Growl", fr: "Rugissement Profond", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", }, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Power Breath", fr: "Souffle Puissant", }, effect: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 30, }, ], weaknesses: [ { type: "Dragon", value: "×2" }, ], retreat: 2, } export default card