1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-24 00:49:55 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

98 lines
2.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Sun & Moon'
const card: Card = {
name: {
en: "Gigalith",
fr: "Gigalithe",
es: "Gigalith",
it: "Gigalith",
pt: "Gigalith",
de: "Brockoloss"
},
illustrator: "Eske Yoshinob",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
526,
],
hp: 160,
types: [
"Fighting",
],
evolveFrom: {
en: "Boldore",
fr: "Géolithe",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Rock Artillery",
fr: "Artillerie Roche",
es: "Artillería de Rocas",
it: "Artiglieria Roccia",
pt: "Artilharia de Pedra",
de: "Felsartillerie"
},
effect: {
en: "Discard any amount of Fighting Energy from your Pokémon. This attack does 50 damage for each card you discarded in this way.",
fr: "Défaussez nimporte quel nombre dÉnergies Fighting de vos Pokémon. Cette attaque inflige 50 dégâts pour chaque carte défaussée de cette façon.",
es: "Descarta cualquier cantidad de Energías Fighting de tus Pokémon. Este ataque hace 50 puntos de daño por cada carta que hayas descartado de esta manera.",
it: "Scarta tutte le Energie Fighting che vuoi assegnate ai tuoi Pokémon. Questo attacco infligge 50 danni per ogni carta che hai scartato in questo modo.",
pt: "Descarte qualquer quantidade de Energia Fighting dos seus Pokémon. Este ataque causa 50 pontos de dano para cada carta descartada desta forma.",
de: "Lege beliebig viele Fighting-Energien von deinen Pokémon auf deinen Ablagestapel. Diese Attacke fügt 50 Schadenspunkte mal der Anzahl der auf diese Weise auf deinen Ablagestapel gelegten Karten zu."
},
damage: "50×",
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Rock Tumble",
fr: "Roule-Pierre",
es: "Avalancha de Rocas",
it: "Tiramassi",
pt: "Desabamento de Pedras",
de: "Rollende Felsen"
},
effect: {
en: "This attacks damage isnt affected by Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
es: "El daño de este ataque no se ve afectado por Resistencia.",
it: "I danni di questo attacco non sono influenzati dalla resistenza.",
pt: "O dano deste ataque não é afetado por Resistência.",
de: "Der Schaden dieser Attacke wird durch Resistenz nicht verändert."
},
damage: 120,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 4,
}
export default card