1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
Florian Bouillon 1a98a6022b
Fixed GX being with a dash while it isn't on the card (#58)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-16 11:05:52 +02:00

124 lines
3.9 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",
es: "Muk de Alola GX",
it: "Muk di Alola GX",
pt: "Muk de Alola GX",
de: "Alola-Sleimok GX"
},
illustrator: "5ban Graphics",
rarity: "Secret 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",
es: "Aliento Químico",
it: "Alito Chimico",
pt: "Hálito Químico",
de: "Chemischer Hauch"
},
effect: {
en: "This attack does 70 more damage for each Special Condition affecting your opponents 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.",
es: "Este ataque hace 70 puntos de daño más por cada Condición Especial que le afecte al Pokémon Activo de tu rival.",
it: "Questo attacco infligge 70 danni in più per ogni condizione speciale che influenza il Pokémon attivo del tuo avversario.",
pt: "Este ataque causa 70 pontos de dano a mais para cada Condição Especial afetando o Pokémon Ativo do seu oponente.",
de: "Diese Attacke fügt 70 Schadenspunkte mehr mal der Anzahl der Speziellen Zustände zu, von denen das Aktive Pokémon deines Gegners betroffen ist."
},
damage: "10+",
},
{
cost: [
"Darkness",
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Crunch",
fr: "Mâchouille",
es: "Triturar",
it: "Sgranocchio",
pt: "Mastigada",
de: "Knirscher"
},
effect: {
en: "Discard an Energy from your opponents Active Pokémon.",
fr: "Défaussez une Énergie du Pokémon Actif de votre adversaire.",
es: "Descarta 1 Energía del Pokémon Activo de tu rival.",
it: "Scarta unEnergia assegnata al Pokémon attivo del tuo avversario.",
pt: "Descarte 1 Energia do Pokémon Ativo do seu oponente.",
de: "Lege 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
},
damage: 120,
},
{
name: {
en: "Tri Hazard GX",
fr: "Triple Danger GX",
es: "Triple Riesgo GX",
it: "Triplo Rischio-GX",
pt: "Perigo Triplo GX",
de: "Dreifachgefahr GX"
},
effect: {
en: "Switch 1 of your opponents Benched Pokémon with their Active Pokémon. The new Active Pokémon is now Burned, Paralyzed, and Poisoned. (You cant 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.)",
es: "Cambia 1 de los Pokémon en Banca de tu rival por su Pokémon Activo. El nuevo Pokémon Activo pasa a estar Envenenado, Paralizado y Quemado. (No puedes usar más de 1 ataque GX en una partida).",
it: "Scambia uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon attivo. Il nuovo Pokémon attivo viene bruciato, paralizzato e avvelenato. Non puoi usare più di un attacco GX a partita.",
pt: "Troque 1 dos Pokémon no Banco do seu oponente pelo Pokémon Ativo dele(a). O novo Pokémon Ativo agora está Envenenado, Paralisado e Queimado (você não pode usar mais de 1 ataque GX por partida).",
de: "Tausche 1 Pokémon auf der Bank deines Gegners gegen sein Aktives Pokémon aus. Das neue Aktive Pokémon ist jetzt verbrannt, paralysiert und vergiftet. (Du kannst pro Spiel nur 1 GX-Attacke einsetzen.)"
},
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 4,
}
export default card