1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +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,72 @@
import { Card } from '../../../interfaces'
import Set from '../Aquapolis'
const card: Card = {
name: {
en: "Nidoking",
},
illustrator: "Hironobu Yoshida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
34,
],
hp: 100,
types: [
"Colorless",
],
evolveFrom: {
en: "Nidorino",
},
stage: "Stage2",
attacks: [
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Poison Horn",
},
effect: {
en: "The Defending Pokémon is now Poisoned.",
},
damage: 30,
},
{
cost: [
"Lightning",
"Lightning",
"Fightning",
"Fightning",
],
name: {
en: "Rolling Thunder",
},
effect: {
en: "Flip a coin. If heads, this attack does 10 damage to each of your opponent's Benched Pokémon. If tails, this attack does 10 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 50,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card