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

67 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 '../Skyridge'
const card: Card = {
name: {
en: "Nidoran♀",
de: "Nidoran W"
},
illustrator: "Masako Yamashita",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
29,
],
hp: 50,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Call for Family",
de: "Familie holen"
},
effect: {
en: "Search your deck for a Basic Pokémon card named Nidoran M or Nidoran F and put it onto your Bench. Shuffle your deck afterward. (You can't use this attack if your bench is full.)",
de: "Durchsuche dein Deck nach einer Basis-Pokémonkarte mit dem Namen Nidoran W oder Nidoran M und lege sie auf deine Bank. Mische dein Deck danach. (Du kannst diesen Angriff nicht verwenden, wenn deine Bank voll ist.)"
},
},
{
cost: [
"Grass",
],
name: {
en: "Scratch",
de: "Kratzer"
},
damage: 10,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card