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

120
cards/sm/sm10/196.ts Normal file
View File

@ -0,0 +1,120 @@
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: "sm10-196",
localId: 196,
// Card informations
name: {
en: "Muk & Alolan Muk-GX",
fr: "Grotadmorv et Grotadmorv dAlola-GX",
},
hp: 270,
type: [
Type.PSYCHIC,
],
dexId: 89,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm10/196/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm10/196/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm10/196/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm10/196/high.png",
},
},
evolveFrom: {},
tags: [
Tag.TAGTEAM,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Severe Poison",
fr: "Règle des ESCOUADES",
},
text: {
en: "Your opponent's Active Pokémon is now Poisoned. Put 8 damage counters instead of 1 on that Pokémon between turns.",
},
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Poison Absorption",
fr: "Poison Violent",
},
text: {
en: "If your opponent's Active Pokémon is Poisoned, heal 100 damage from this Pokémon.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Placez 8 marqueurs de dégâts au lieu dun sur le Pokémon ciblé entre chaque tour.",
},
damage: 120
},{
name: {
en: "Nasty Goo Mix-GX",
fr: "Absorption de Poison",
},
text: {
en: "Your opponent's Active Pokémon is now Paralyzed and Poisoned. If this Pokémon has at least 4 extra Energy attached to it (in addition to this attack's cost), put 15 damage counters instead of 1 on that Pokémon between turns. (You can't use more than 1 GX attack in a game.)",
fr: "Si le Pokémon Actif de votre adversaire est Empoisonné, soignez 100 dégâts à ce Pokémon.",
},
damage: 120
},{
name: {
fr: "Mixture de Glu Fétide-GX",
},
text: {
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné et Paralysé. Si au moins 4 Énergies supplémentaires sont attachées à ce Pokémon (en plus du coût de cette attaque), placez 15 marqueurs de dégâts au lieu dun sur le Pokémon ciblé entre chaque tour. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 4,
rarity: Rarity.RareUltra,
category: Category.POKEMON,
set: {
name: "Unbroken Bonds",
code: "sm10"
}
}
export default card