1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 17:39: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

View File

@ -0,0 +1,70 @@
import { Card } from '../../../interfaces'
import Set from '../Team Up'
const card: Card = {
name: {
en: "Muk",
fr: "Grotadmorv",
},
illustrator: "Anesaki Dynamic",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
89,
],
hp: 130,
types: [
"Psychic",
],
evolveFrom: {
en: "Grimer",
fr: "Tadmorv",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Poison Sacs",
fr: "Sacs de Poison",
},
effect: {
en: "The Special Condition Poisoned is not removed when your opponent's Pokémon evolve or devolve.",
fr: "LÉtat Spécial Empoisonné nest pas retiré lorsque le Pokémon de votre adversaire évolue ou dés-évolue.",
},
},
],
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Toxic Secretion",
fr: "Sécrétion Toxique",
},
effect: {
en: "Your opponent's Active Pokémon is now Poisoned. Put 2 damage counters instead of 1 on that Pokémon between turns.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Placez 2 marqueurs de dégâts au lieu dun sur le Pokémon ciblé entre chaque tour.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 4,
}
export default card