1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 07:51:58 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

71
data/Gym/Gym Heroes/33.ts Normal file
View File

@@ -0,0 +1,71 @@
import { Card } from '../../../interfaces'
import Set from '../Gym Heroes'
const card: Card = {
name: {
en: "Rocket's Snorlax",
},
illustrator: "Shin-ichi Yoshida",
rarity: "Rare",
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: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card