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

90 lines
2.3 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: "Regirock",
fr: "Regirock",
es: "Regirock",
it: "Regirock",
pt: "Regirock",
de: "Regirock"
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
377,
],
hp: 130,
types: [
"Fighting",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Rock Peak Growl",
fr: "Pic Rocheux Grondant",
es: "Gruñido Pico Roca",
it: "Piccoruggito",
pt: "Uivo Pico de Rocha",
de: "Steingipfelgrollen"
},
effect: {
en: "Your Registeels attacks do 10 more damage to your opponents Active Pokémon (before applying Weakness and Resistance).",
fr: "Les attaques de vos Registeel infligent 10 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).",
es: "Los ataques de tus Registeel hacen 10 puntos de daño más al Pokémon Activo de tu rival (antes de aplicar Debilidad y Resistencia).",
it: "Gli attacchi dei tuoi Registeel infliggono 10 danni in più al Pokémon attivo del tuo avversario, prima di aver applicato debolezza e resistenza.",
pt: "Os ataques dos seus Registeel causam 10 pontos de dano a mais ao Pokémon Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).",
de: "Die Attacken deiner Registeel fügen dem Aktiven Pokémon deines Gegners 10 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)."
},
},
],
attacks: [
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Tough Swing",
fr: "Frappe Solide",
es: "Golpe Sólido",
it: "Colpo Spietato",
pt: "Tacada Sólida",
de: "Wuchtiger Hieb"
},
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: 110,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card