mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add Stellar Crown (#533)
This commit is contained in:
41
data/Scarlet & Violet/Stellar Crown/074.ts
Normal file
41
data/Scarlet & Violet/Stellar Crown/074.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Stellar Crown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rhyhorn",
|
||||
fr: "Rhinocorne",
|
||||
es: "Rhyhorn",
|
||||
it: "Rhyhorn",
|
||||
pt: "Rhyhorn",
|
||||
de: "Rihorn"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Horn Attack",
|
||||
fr: "Koud'Korne",
|
||||
es: "Cornada",
|
||||
it: "Incornata",
|
||||
pt: "Ataque de Chifre",
|
||||
de: "Hornattacke"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user