1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 16:49:53 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

80 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Plasma Freeze'
const card: Card = {
name: {
en: "Nidoking",
fr: "Nidoking",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
34,
],
hp: 140,
types: [
"Fighting",
],
evolveFrom: {
en: "Nidorino",
fr: "Nidorino",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Lovestrike",
fr: "Coup de Foudre",
},
effect: {
en: "Does 40 more damage for each Nidoqueen on your Bench.",
fr: "Inflige 40 dégâts supplémentaires pour chaque Nidoqueen sur votre Banc.",
},
damage: 20,
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Horn Drill",
fr: "Empal'Korne",
},
damage: 90,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 3,
}
export default card