1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +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,74 @@
import { Card } from '../../../interfaces'
import Set from '../Undaunted'
const card: Card = {
name: {
en: "Muk",
fr: "Grotadmorv",
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
89,
],
hp: 100,
types: [
"Psychic",
],
evolveFrom: {
en: "Grimer",
fr: "Tadmorv",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Sludge Drag",
fr: "Gliss'Crade",
},
effect: {
en: "Switch the Defending Pokémon with 1 of your opponent's Benched Pokémon. The new Defending Pokémon is now Confused and Poisoned.",
fr: "Échangez le Pokémon Défenseur avec un Pokémon de Banc de votre adversaire. Le nouveau Pokémon Défenseur est maintenant Confus et Empoisonné.",
},
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Pester",
fr: "Abattre",
},
effect: {
en: "If the Defending Pokémon is affected by a Special Condition, this attack does 50 damage plus 30 more damage.",
fr: "Si le Pokémon Défenseur est affecté par un État Spécial, cette attaque inflige 50 dégâts plus 30 dégâts supplémentaires.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 3,
}
export default card