mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 08:32:10 +00:00
118 lines
2.3 KiB
TypeScript
118 lines
2.3 KiB
TypeScript
import Card from '../../../interfaces/Card'
|
|
import Type from '../../../interfaces/Type'
|
|
import Tag from '../../../interfaces/Tag'
|
|
import Rarity from '../../../interfaces/Rarity'
|
|
import AbilityType from '../../../interfaces/AbilityType'
|
|
import Category from '../../../interfaces/Category'
|
|
|
|
const card: Card = {
|
|
|
|
// ids
|
|
id: "pl1-57",
|
|
localId: 57,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Muk",
|
|
fr: "Grotadmorv",
|
|
},
|
|
|
|
hp: 100,
|
|
|
|
type: [
|
|
Type.PSYCHIC,
|
|
],
|
|
|
|
dexId: 89,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl1/57/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl1/57/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl1/57/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl1/57/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Grimer",
|
|
fr: "Tadmorv",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 30,
|
|
name: "Hajime Kusajima"
|
|
},
|
|
|
|
abilities: [{
|
|
id: 545,
|
|
type: AbilityType.POKEBODY,
|
|
name: {
|
|
en: "Sludge Cell",
|
|
fr: "Celllule vaseuse",
|
|
},
|
|
text: {
|
|
en: "If Muk remains affected by any Special Conditions between turns, remove 2 damage counters from Muk.",
|
|
fr: "Au début du tour de chaque joueur, si Grotadmorv est affecté par un État Spécial, retirez-lui 2 marqueurs de dégât.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.PSYCHIC,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Strange Poison",
|
|
fr: "Poison étrange",
|
|
},
|
|
text: {
|
|
en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned. If tails, Muk is now Poisoned.",
|
|
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Empoisonné. Si c'est pile, Grotadmorv est maintenant Empoisonné.",
|
|
},
|
|
damage: 30
|
|
},{
|
|
cost: [
|
|
Type.PSYCHIC,
|
|
Type.PSYCHIC,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Strange Sludge",
|
|
fr: "Vase étrange",
|
|
},
|
|
text: {
|
|
en: "If Muk is Poisoned, this attack does 50 damage plus 20 more damage and the Defending Pokémon is now Confused.",
|
|
fr: "Si Grotadmorv est Empoisonné, cette attaque inflige 50 dégâts plus 20 dégâts supplémentaires et le Pokémon Défenseur est maintenant Confus.",
|
|
},
|
|
damage: 50
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.PSYCHIC,
|
|
value: "+20"
|
|
}],
|
|
|
|
|
|
|
|
retreat: 3,
|
|
|
|
rarity: Rarity.Uncommon,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Platinum",
|
|
code: "pl1"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|