1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

74 lines
1.2 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 '../FireRed & LeafGreen'
const card: Card = {
name: {
en: "Nidorina",
fr: "Nidorina",
de: "Nidorina"
},
illustrator: "Naoyo Kimura",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
30,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Nidoran ♀",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Scratch",
fr: "Griffe",
de: "Kratzer"
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Fast Evolution",
fr: "Évolution fulgurante",
de: "Schnelle Evolution"
},
effect: {
en: "Search your deck for up to 2 Evolution cards, show them to your opponent, and put them into your hand. Shuffle your deck afterward.",
fr: "Cherchez dans votre deck jusqu'à 2 cartes Évolution, montrez-les à votre adversaire et placez-les dans votre main. Ensuite, mélangez votre deck.",
de: "Durchsuche dein Deck nach bis zu 2 Evolutionskarten, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische dein Deck danach."
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card