mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s
Some checks failed
Build / build (push) Failing after 59s
This commit is contained in:
54
data/Scarlet & Violet/151/033.ts
Normal file
54
data/Scarlet & Violet/151/033.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../151"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Nidorino",
|
||||
en: "Nidorino",
|
||||
es: "Nidorino",
|
||||
it: "Nidorino",
|
||||
pt: "Nidorino",
|
||||
de: "Nidorino"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Darkness"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
fr: "Croc Aiguisé",
|
||||
en: "Sharp Fang",
|
||||
es: "Colmillo Afilado",
|
||||
it: "Zannaffilata",
|
||||
pt: "Presa Afiada",
|
||||
de: "Scharfe Fänge"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Darkness", "Darkness", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Cornes Surpuissantes",
|
||||
en: "Superpowered Horns",
|
||||
es: "Cuernos Superpoderosos",
|
||||
it: "Corna Superpotenziate",
|
||||
pt: "Chifres Superpoderosos",
|
||||
de: "Superstarke Hörner"
|
||||
},
|
||||
|
||||
damage: 100
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user