1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

101
cards/dp/dp6/15.ts Normal file
View File

@ -0,0 +1,101 @@
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: "dp6-15",
localId: 15,
// Card informations
name: {
en: "Regigigas",
fr: "Regigigas",
},
hp: 120,
type: [
Type.COLORLESS,
],
dexId: 486,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp6/15/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp6/15/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp6/15/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp6/15/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 1,
name: "Ryo Ueda"
},
abilities: [{
id: 378,
type: AbilityType.POKEBODY,
name: {
en: "Slow Start",
fr: "Début Calme",
},
text: {
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: [
Type.WATER,
Type.FIGHTING,
Type.METAL,
Type.COLORLESS
],
name: {
en: "Crush Grip",
fr: "Presse",
},
text: {
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: Type.FIGHTING,
value: "×2"
}],
retreat: 4,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Legends Awakened",
code: "dp6"
}
}
export default card