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

115 lines
2.4 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: "Lycanroc GX",
fr: "Lougaroc GX",
es: "Lycanroc GX",
it: "Lycanroc GX",
pt: "Lycanroc GX",
de: "Wolwerock GX"
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
745,
],
hp: 200,
types: [
"Fighting",
],
evolveFrom: {
en: "Rockruff",
fr: "Rocabot",
},
suffix: "GX",
attacks: [
{
cost: [
"Fighting",
"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: 30,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Accelerock",
fr: "Vif Roc",
es: "Roca Veloz",
it: "Rocciarapida",
pt: "Rocha Veloz",
de: "Turbofelsen"
},
damage: 120,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Lycanfang GX",
fr: "LougaCroc GX",
es: "Lycancolmillo GX",
it: "Fauci Lupo-GX",
pt: "Lycanino GX",
de: "Wolwefänge GX"
},
effect: {
en: "Discard 2 Energy from this Pokémon. (You cant use more than 1 GX attack in a game.)",
fr: "Défaussez 2 Énergies de ce Pokémon. (Vous ne pouvez utiliser quune attaque GX par partie.)",
es: "Descarta 2 Energías de este Pokémon. (No puedes usar más de 1 ataque GX en una partida).",
it: "Scarta due Energie assegnate a questo Pokémon. Non puoi usare più di un attacco GX a partita.",
pt: "Descarte 2 Energias deste Pokémon (você não pode usar mais de 1 ataque GX por partida).",
de: "Lege 2 Energien von diesem Pokémon auf deinen Ablagestapel. (Du kannst pro Spiel nur 1 GX-Attacke einsetzen.)"
},
damage: 200,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card