mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
73 lines
1002 B
TypeScript
73 lines
1002 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Base Set 2'
|
||
|
||
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: "Fightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Psychic",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|