mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
Finished Complete Rework of the Database
This commit is contained in:
69
data/XY/Primal Clash/67.ts
Normal file
69
data/XY/Primal Clash/67.ts
Normal file
@ -0,0 +1,69 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Primal Clash'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Nidorina",
|
||||
fr: "Nidorina",
|
||||
},
|
||||
illustrator: "Aya Kusube",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
30,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Nidoran♀",
|
||||
fr: "Nidoran♀",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Scratch",
|
||||
fr: "Griffe",
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Psychic",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Strength",
|
||||
fr: "Force",
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user