1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 17:57:51 +00:00
Florian Bouillon 3c93a3534c
Some checks failed
Build / build (push) Failing after 59s
feat: Add Scarlet & violet three first sets (#446)
2023-11-12 14:56:22 +01:00

41 lines
581 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../151"
const card: Card = {
set: Set,
name: {
fr: "Nidoran♂",
en: "Nidoran♂",
es: "Nidoran♂",
it: "Nidoran♂",
pt: "Nidoran♂",
de: "Nidoran♂"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Darkness"],
stage: "Basic",
attacks: [{
cost: ["Darkness"],
name: {
fr: "Koud'Korne",
en: "Horn Attack",
es: "Cornada",
it: "Incornata",
pt: "Ataque de Chifre",
de: "Hornattacke"
},
damage: 20
}],
retreat: 1,
regulationMark: "G"
}
export default card