1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

96 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Burning Shadows'
const card: Card = {
name: {
en: "Alolan Muk-GX",
fr: "Grotadmorv dAlola-GX",
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
89,
],
hp: 220,
types: [
"Darkness",
],
evolveFrom: {
en: "Alolan Grimer",
fr: "Tadmorv dAlola",
},
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 lun 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 quune attaque GX par partie.)",
},
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 4,
}
export default card