mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-22 03:49:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
78
data/HeartGold & SoulSilver/Triumphant/6.ts
Normal file
78
data/HeartGold & SoulSilver/Triumphant/6.ts
Normal file
@ -0,0 +1,78 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Triumphant'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Nidoking",
|
||||
fr: "Nidoking",
|
||||
},
|
||||
illustrator: "match",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
34,
|
||||
],
|
||||
hp: 140,
|
||||
types: [
|
||||
"Fightning",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Nidorino",
|
||||
fr: "Nidorino",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-BODY",
|
||||
name: {
|
||||
en: "Pheromone Stamina",
|
||||
fr: "Endurance aux phéromones",
|
||||
},
|
||||
effect: {
|
||||
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: [
|
||||
"Fightning",
|
||||
"Fightning",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Venomous Horn",
|
||||
fr: "Corne venimeuse",
|
||||
},
|
||||
effect: {
|
||||
en: "The Defending Pokémon is now Poisoned.",
|
||||
fr: "Le Pokémon Défenseur est maintenant Empoisonné.",
|
||||
},
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user