import { Card } from '../../../interfaces' import Set from '../Emerging Powers' const card: Card = { name: { en: "Cubchoo", fr: "Polarhume", es: "Cubchoo", it: "Cubchoo", pt: "Cubchoo", de: "Petznief" }, illustrator: "sui", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 613, ], hp: 70, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Powder Snow", fr: "Poudreuse", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Endormi.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Rest", fr: "Repos", }, effect: { en: "Heal 60 damage from this Pokémon. This Pokémon is now Asleep.", fr: "Soignez 60 dégâts à ce Pokémon. Ce Pokémon est maintenant Endormi.", }, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 2, } export default card