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

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,70 @@
import { Card } from '../../../interfaces'
import Set from '../Legends Awakened'
const card: Card = {
name: {
en: "Regigigas",
fr: "Regigigas",
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
486,
],
hp: 120,
types: [
"Colorless",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Slow Start",
fr: "Début Calme",
},
effect: {
en: "Regigigas can't attack until your opponent has 3 or less Prize cards left.",
fr: "Regigigas ne peut attaquer que s'il ne reste plus à votre adversaire qu'un maximum de 3 cartes Récompense.",
},
},
],
attacks: [
{
cost: [
"Water",
"Fightning",
"Metal",
"Colorless",
],
name: {
en: "Crush Grip",
fr: "Presse",
},
effect: {
en: "If the Defending Pokémon already has any damage counters on it, this attack's base damage is 40 instead of 120.",
fr: "Si le Pokémon Défenseur possède déjà des marqueurs de dégât, les dégâts de base de cette attaque sont de 40 au lieu de 120.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
retreat: 4,
}
export default card