import { Card } from '../../../interfaces' import Set from '../Jungle' const card: Card = { name: { en: "Snorlax", }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 143, ], hp: 90, types: [ "Colorless", ], evolveFrom: { en: "Munchlax", }, stage: "Basic", abilities: [ { type: "Poke-POWER", name: { en: "Thick Skinned", }, effect: { en: "Snorlax can't become Asleep, Confused, Paralyzed, or Poisoned. This power can't be used if Snorlax is already Asleep, Confused, or Paralyzed.", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", "Colorless", ], name: { en: "Body Slam", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card