mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
67 lines
1.0 KiB
TypeScript
67 lines
1.0 KiB
TypeScript
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
|