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

99 lines
1.5 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",
},
illustrator: "5ban Graphics",
rarity: "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",
},
damage: 80,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Super Electromagnetic Tackle",
fr: "Super Charge Électromagnétique",
},
effect: {
en: "This Pokémon does 50 damage to itself.",
fr: "Ce Pokémon sinflige 50 dégâts.",
},
damage: 200,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Heavy Rock-GX",
fr: "Lourd Rocher-GX",
},
effect: {
en: "Your opponent can't play any cards from their hand during their next turn. (You can't 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.)",
},
damage: 100,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 4,
}
export default card