1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 22:32:10 +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

92 lines
2.1 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 '../Crimson Invasion'
const card: Card = {
name: {
en: "Regigigas",
fr: "Regigigas",
es: "Regigigas",
it: "Regigigas",
pt: "Regigigas",
de: "Regigigas"
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
486,
],
hp: 180,
types: [
"Colorless",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Seal of Antiquity",
fr: "Sceau dAntiquité",
es: "Sello de Antigüedad",
it: "Sigillo dellAntichità",
pt: "Selo de Antiguidade",
de: "Siegel des Altertums"
},
effect: {
en: "This Pokémon cant attack unless Regirock, Regice, and Registeel are on your Bench.",
fr: "Ce Pokémon ne peut pas attaquer, à moins que Regirock, Regice et Registeel ne soient sur votre Banc.",
es: "Este Pokémon no puede atacar a menos que Regirock, Regice y Registeel estén en tu Banca.",
it: "Questo Pokémon non può attaccare a meno che Regirock, Regice e Registeel non siano nella tua panchina.",
pt: "Este Pokémon não pode atacar a não ser que Regirock, Regice e Registeel estejam no seu Banco.",
de: "Dieses Pokémon kann nicht angreifen, es sei denn, Regirock, Regice und Registeel befinden sich auf deiner Bank."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Giant Stomp",
fr: "Piétinement Gigantesque",
es: "Pisotón Gigante",
it: "Pestata Gigante",
pt: "Pisada Gigante",
de: "Gigantischer Stampfer"
},
effect: {
en: "Discard any Stadium card in play.",
fr: "Défaussez toute carte Stade en jeu.",
es: "Descarta cualquier carta de Estadio en juego.",
it: "Scarta una carta Stadio in gioco.",
pt: "Descarte qualquer carta de Estádio em jogo.",
de: "Lege 1 beliebige Stadionkarte im Spiel auf den Ablagestapel."
},
damage: 160,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 4,
}
export default card