1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +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

123 lines
2.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 '../Crimson Invasion'
const card: Card = {
name: {
en: "Alolan Golem GX",
fr: "Grolem dAlola GX",
es: "Golem de Alola GX",
it: "Golem di Alola GX",
pt: "Golem de Alola GX",
de: "Alola-Geowaz GX"
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
76,
],
hp: 250,
types: [
"Lightning",
],
evolveFrom: {
en: "Alolan Graveler",
fr: "Gravalanch dAlola",
},
suffix: "GX",
attacks: [
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Hammer In",
fr: "Enfoncement",
es: "Martillear",
it: "Martello",
pt: "Martelada",
de: "Einhämmern"
},
damage: 80,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Super Electromagnetic Tackle",
fr: "Super Charge Électromagnétique",
es: "Placaje Superelectromagnético",
it: "Azione Superelettromagnetica",
pt: "Ofensiva Supereletromagnética",
de: "Superelektromagnetischer Rempler"
},
effect: {
en: "This Pokémon does 50 damage to itself.",
fr: "Ce Pokémon sinflige 50 dégâts.",
es: "Este Pokémon se hace 50 puntos de daño a sí mismo.",
it: "Questo Pokémon infligge 50 danni a se stesso.",
pt: "Este Pokémon causa 50 pontos de dano a si mesmo.",
de: "Dieses Pokémon fügt sich selbst 50 Schadenspunkte zu."
},
damage: 200,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Heavy Rock GX",
fr: "Lourd Rocher GX",
es: "Roca Pesada GX",
it: "Macigno Ponderoso-GX",
pt: "Rocha Pesada GX",
de: "Schwerer Felsen GX"
},
effect: {
en: "Your opponent cant play any cards from their hand during their next turn. (You cant use more than 1 GX attack in a game.)",
fr: "Votre adversaire ne peut pas jouer de carte de sa main pendant son prochain tour. (Vous ne pouvez utiliser quune attaque GX par partie.)",
es: "Tu rival no puede jugar ninguna carta de su mano durante su próximo turno. (No puedes usar más de 1 ataque GX en una partida).",
it: "Il tuo avversario non può giocare nessuna carta che ha in mano durante il suo prossimo turno. Non puoi usare più di un attacco GX a partita.",
pt: "Seu oponente não poderá jogar nenhuma carta da própria mão durante a próxima vez dele(a) jogar (você não pode usar mais de 1 ataque GX por partida).",
de: "Dein Gegner kann während seines nächsten Zuges keine Karten aus seiner Hand spielen. (Du kannst pro Spiel nur 1 GX-Attacke einsetzen.)"
},
damage: 100,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 4,
}
export default card