Add a few more cards

This commit is contained in:
Dylan Pizzo
2025-01-08 21:47:44 -08:00
parent dc49eb961f
commit 6c3194c256
4 changed files with 85 additions and 19 deletions

View File

@ -13,6 +13,7 @@ export type DominionBasicCardType = {
| "Action"
| "Treasure"
| "Victory"
| "Curse"
| "Reaction"
| "Duration"
| "Reserve"
@ -108,6 +109,15 @@ export const TYPE_VICTORY: DominionBasicCardType = {
},
};
export const TYPE_CURSE: DominionBasicCardType = {
typeType: "basic",
name: "Curse",
color: {
value: "#d285ff",
priority: 4,
},
};
export const TYPE_REACTION: DominionBasicCardType = {
typeType: "basic",
name: "Reaction",