1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 17:39: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

107
cards/hgss/hgss4/6.ts Normal file
View File

@ -0,0 +1,107 @@
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: "hgss4-6",
localId: 6,
// Card informations
name: {
en: "Nidoking",
fr: "Nidoking",
},
hp: 140,
type: [
Type.FIGHTING,
],
dexId: 34,
image: {
low: {
en: "https://assets.tcgdex.net/en/hgss/hgss4/6/low.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss4/6/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/hgss/hgss4/6/high.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss4/6/high.png",
},
},
evolveFrom: {
en: "Nidorino",
fr: "Nidorino",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 28,
name: "match"
},
abilities: [{
id: 1100,
type: AbilityType.POKEBODY,
name: {
en: "Pheromone Stamina",
fr: "Endurance aux phéromones",
},
text: {
en: "Nidoking gets +20 HP for each Nidoqueen you have in play.",
fr: "Nidoking reçoit +20 PV pour chacun de vos Nidoqueen en jeu.",
}
}],
attacks: [{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Venomous Horn",
fr: "Corne venimeuse",
},
text: {
en: "The Defending Pokémon is now Poisoned.",
fr: "Le Pokémon Défenseur est maintenant Empoisonné.",
},
damage: 80
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
resistances: [{
type: Type.LIGHTNING,
value: "-20"
}],
retreat: 3,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "HS—Triumphant",
code: "hgss4"
}
}
export default card