mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
87 lines
1.7 KiB
TypeScript
87 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Ancient Origins'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Regirock",
|
||
fr: "Regirock",
|
||
es: "Regirock",
|
||
it: "Regirock",
|
||
pt: "Regirock",
|
||
de: "Regirock"
|
||
},
|
||
illustrator: "Shin Nagasawa",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
377,
|
||
],
|
||
hp: 120,
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Rock Throw",
|
||
fr: "Jet-Pierres",
|
||
es: "Lanzarrocas",
|
||
it: "Sassata",
|
||
pt: "Lançamento de Rocha",
|
||
de: "Steinwurf"
|
||
},
|
||
|
||
damage: 40,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Unyielding Rock",
|
||
fr: "Roc Indestructible",
|
||
es: "Roca Inquebrantable",
|
||
it: "Saldaroccia",
|
||
pt: "Rocha Obstinada",
|
||
de: "Fels in der Brandung"
|
||
},
|
||
effect: {
|
||
en: "If your opponent's Active Pokémon is a Pokémon-EX, this attack does 60 more damage.",
|
||
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-EX, cette attaque inflige 60 dégâts supplémentaires.",
|
||
es: "Si el Pokémon Activo de tu rival es un Pokémon-EX, este ataque hace 60 puntos de daño más.",
|
||
it: "Se il Pokémon attivo del tuo avversario è un Pokémon-EX, questo attacco infligge 60 danni in più.",
|
||
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon-EX, este ataque causará 60 de danos adicionais.",
|
||
de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-EX ist, fügt dieser Angriff 60 weitere Schadenspunkte zu."
|
||
},
|
||
damage: "60+",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Grass",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 3,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|