1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

104
cards/hgss/hgss3/31.ts Normal file
View File

@ -0,0 +1,104 @@
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: "hgss3-31",
localId: 31,
// Card informations
name: {
en: "Muk",
fr: "Grotadmorv",
},
hp: 100,
type: [
Type.PSYCHIC,
],
dexId: 89,
image: {
low: {
en: "https://assets.tcgdex.net/en/hgss/hgss3/31/low.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss3/31/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/hgss/hgss3/31/high.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss3/31/high.png",
},
},
evolveFrom: {
en: "Grimer",
fr: "Tadmorv",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 2,
name: "Midori Harada"
},
attacks: [{
cost: [
Type.PSYCHIC
],
name: {
en: "Sludge Drag",
fr: "Gliss'Crade",
},
text: {
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: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Pester",
fr: "Abattre",
},
text: {
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: Type.PSYCHIC,
value: "×2"
}],
retreat: 3,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "HS—Undaunted",
code: "hgss3"
}
}
export default card