1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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

65
data/Base/Jungle/6.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from '../../../interfaces'
import Set from '../Jungle'
const card: Card = {
name: {
en: "Mr. Mime",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
122,
],
hp: 40,
types: [
"Psychic",
],
evolveFrom: {
en: "Mime Jr.",
},
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Invisible Wall",
},
effect: {
en: "Whenever an attack (including your own) does 30 or more damage to Mr. Mime (after applying Weakness and Resistance), prevent that damage. (Any other effects of attacks still happen.) This power can't be used if Mr. Mime is Asleep, Confused, or Paralyzed.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Meditate",
},
effect: {
en: "Does 10 damage plus 10 more damage for each damage counter on the Defending Pokémon.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card