1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/226.ts

40 lines
622 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Nidoran♂"
},
illustrator: "Souichirou Gunjima",
rarity: "One Shiny",
category: "Pokemon",
hp: 60,
types: ["Darkness"],
description: {
en: "The horn on a male Nidoran's forehead contains\na powerful poison. This is a very cautious\nPokémon, always straining its large ears."
},
stage: "Basic",
attacks: [{
name: {
en: "Peck"
},
damage: 20,
cost: ["Darkness"]
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card