1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-18 06:19:54 +00:00

71 lines
977 B
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 '../Ancient Origins'
const card: Card = {
name: {
en: "Regirock",
fr: "Regirock",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
377,
],
hp: 120,
types: [
"Fightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Fightning",
"Colorless",
],
name: {
en: "Rock Throw",
fr: "Jet-Pierres",
},
damage: 40,
},
{
cost: [
"Fightning",
"Colorless",
"Colorless",
],
name: {
en: "Unyielding Rock",
fr: "Roc Indestructible",
},
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.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card