1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

72 lines
1.0 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Gym Heroes'
const card: Card = {
name: {
en: "Rocket's Snorlax",
},
illustrator: "Shin-ichi Yoshida",
rarity: "Rare Holo",
category: "Pokemon",
set: Set,
dexId: [
143,
],
hp: 90,
types: [
"Colorless",
],
evolveFrom: {
en: "Munchlax",
},
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Restless Sleep",
},
effect: {
en: "If your opponent's attack does damage to Rocket's Snorlax and Rocket's Snorlax is already Asleep (even if it's Knocked Out), this power does 20 damage to the attacking Pokémon.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Collapse",
},
effect: {
en: "Rocket's Snorlax is now Asleep (after doing damage).",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card