Add first-pass colors to the card types
This commit is contained in:
12
src/types.ts
12
src/types.ts
@ -93,7 +93,7 @@ export const TYPE_TREASURE: DominionBasicCardType = {
|
||||
typeType: "basic",
|
||||
name: "Treasure",
|
||||
color: {
|
||||
value: "yellow",
|
||||
value: "#ffe076",
|
||||
priority: 5,
|
||||
},
|
||||
};
|
||||
@ -102,7 +102,7 @@ export const TYPE_VICTORY: DominionBasicCardType = {
|
||||
typeType: "basic",
|
||||
name: "Victory",
|
||||
color: {
|
||||
value: "green",
|
||||
value: "#b3e5ad",
|
||||
priority: 4,
|
||||
},
|
||||
};
|
||||
@ -111,7 +111,7 @@ export const TYPE_REACTION: DominionBasicCardType = {
|
||||
typeType: "basic",
|
||||
name: "Reaction",
|
||||
color: {
|
||||
value: "blue",
|
||||
value: "#81adff",
|
||||
priority: 1,
|
||||
overridesAction: true,
|
||||
},
|
||||
@ -121,7 +121,7 @@ export const TYPE_DURATION: DominionBasicCardType = {
|
||||
typeType: "basic",
|
||||
name: "Duration",
|
||||
color: {
|
||||
value: "orange",
|
||||
value: "#ffbc55",
|
||||
priority: 3,
|
||||
overridesAction: true,
|
||||
},
|
||||
@ -129,9 +129,9 @@ export const TYPE_DURATION: DominionBasicCardType = {
|
||||
|
||||
export const TYPE_RESERVE: DominionBasicCardType = {
|
||||
typeType: "basic",
|
||||
name: "Duration",
|
||||
name: "Reserve",
|
||||
color: {
|
||||
value: "brown",
|
||||
value: "#e5c28b",
|
||||
priority: 2, // unknown whether this should be above or below reaction/duration?
|
||||
overridesAction: true,
|
||||
},
|
||||
|
Reference in New Issue
Block a user