mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
96 lines
1.8 KiB
TypeScript
96 lines
1.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Burning Shadows'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Alolan Muk-GX",
|
||
fr: "Grotadmorv d’Alola-GX",
|
||
},
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
89,
|
||
],
|
||
hp: 220,
|
||
types: [
|
||
"Darkness",
|
||
],
|
||
evolveFrom: {
|
||
en: "Alolan Grimer",
|
||
fr: "Tadmorv d’Alola",
|
||
},
|
||
|
||
suffix: "GX",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Darkness",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Chemical Breath",
|
||
fr: "Souffle Chimique",
|
||
},
|
||
effect: {
|
||
en: "This attack does 70 more damage for each Special Condition affecting your opponent's Active Pokémon.",
|
||
fr: "Cette attaque inflige 70 dégâts supplémentaires pour chaque État Spécial affectant le Pokémon Actif de votre adversaire.",
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Darkness",
|
||
"Darkness",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Crunch",
|
||
fr: "Mâchouille",
|
||
},
|
||
effect: {
|
||
en: "Discard an Energy from your opponent's Active Pokémon.",
|
||
fr: "Défaussez une Énergie du Pokémon Actif de votre adversaire.",
|
||
},
|
||
damage: 120,
|
||
|
||
},
|
||
{
|
||
|
||
name: {
|
||
en: "Tri Hazard-GX",
|
||
fr: "Triple Danger-GX",
|
||
},
|
||
effect: {
|
||
en: "Switch 1 of your opponent's Benched Pokémon with their Active Pokémon. The new Active Pokémon is now Burned, Paralyzed, and Poisoned. (You can't use more than 1 GX attack in a game.)",
|
||
fr: "Échangez l’un des Pokémon de Banc de votre adversaire avec son Pokémon Actif. Le nouveau Pokémon Actif est maintenant Brûlé, Empoisonné et Paralysé. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||
},
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Psychic",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 4,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|