1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-22 16:19:54 +00:00

77 lines
1.1 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: "Nidoqueen",
fr: "Nidoqueen",
},
illustrator: "Mizue",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
31,
],
hp: 130,
types: [
"Psychic",
],
evolveFrom: {
en: "Nidorina",
fr: "Nidorina",
},
stage: "Stage2",
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Poison Horn",
fr: "Corne Empoisonnée",
},
effect: {
en: "The Defending Pokémon is now Poisoned.",
fr: "Le Pokémon Défenseur est maintenant Empoisonné.",
},
damage: 50,
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Double Stomp",
fr: "Double Écrasement",
},
effect: {
en: "Flip 2 coins. This attack does 30 more damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 3,
}
export default card