import { Card } from '../../../interfaces' import Set from '../Plasma Blast' const card: Card = { name: { en: "Shelmet", fr: "Escargaume", es: "Shelmet", it: "Shelmet", pt: "Shelmet", de: "Schnuthelm" }, illustrator: "Sumiyoshi Kizuki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 616, ], hp: 60, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Yawn", fr: "Bâillement", }, effect: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi.", }, }, { cost: [ "Grass", "Colorless", ], name: { en: "Ram", fr: "Collision", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 3, } export default card