mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
114 lines
1.9 KiB
TypeScript
114 lines
1.9 KiB
TypeScript
import Card from '../../../interfaces/Card'
|
||
import Type from '../../../interfaces/Type'
|
||
import Tag from '../../../interfaces/Tag'
|
||
import Rarity from '../../../interfaces/Rarity'
|
||
import AbilityType from '../../../interfaces/AbilityType'
|
||
import Category from '../../../interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "dp7-9",
|
||
localId: 9,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Regigigas",
|
||
fr: "Regigigas",
|
||
},
|
||
|
||
hp: 100,
|
||
|
||
type: [
|
||
Type.COLORLESS,
|
||
],
|
||
|
||
dexId: 486,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/dp/dp7/9/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/dp/dp7/9/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/dp/dp7/9/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/dp/dp7/9/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
fr: "Regigigas",
|
||
},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 8,
|
||
name: "Masakazu Fukuda"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 692,
|
||
type: AbilityType.POKEBODY,
|
||
name: {
|
||
en: "Regi Form",
|
||
fr: "Regi forme",
|
||
},
|
||
text: {
|
||
en: "If you have Regirock, Regice, and Registeel in play, the attack cost of Regigigas's attacks is Colorless less.",
|
||
fr: "Si vous avez Regirock, Regice et Registeel en jeu, le Coût d'attaque des attaques de Regigigas est Colorless de moins.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Mega Punch",
|
||
fr: "Ultimapoing",
|
||
},
|
||
damage: 30
|
||
},{
|
||
cost: [
|
||
Type.WATER,
|
||
Type.FIGHTING,
|
||
Type.METAL,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Giga Power",
|
||
fr: "Giga pouvoir",
|
||
},
|
||
text: {
|
||
en: "You may do 60 damage plus 40 more damage. If you do, Regigigas does 40 damage to itself.",
|
||
fr: "Vous pouvez infliger 60 dégâts plus 40 dégâts supplémentaires. Regigigas s'inflige alors 40 dégâts.",
|
||
},
|
||
damage: 60
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 4,
|
||
|
||
rarity: Rarity.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Stormfront",
|
||
code: "dp7"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|