-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"name": "CoX", | ||
"inputs": [ | ||
{ | ||
"type": "stringlist", | ||
"group": "addl-highlight", | ||
"label": "CoX-specific item highlights", | ||
"macroName": "VAR_COX_HIGHLIGHT" | ||
}, | ||
{ | ||
"type": "style", | ||
"group": "addl-highlight", | ||
"label": "CoX-specific item highlight style", | ||
"macroName": "VAR_COX_HIGHLIGHT_USERSTYLE" | ||
}, | ||
{ | ||
"type": "style", | ||
"group": "potions", | ||
"label": "Overload", | ||
"macroName": "VAR_COX_OVL_USERSTYLE", | ||
"default": { | ||
"textColor": "#1e88e5", | ||
"textAccent": 4 | ||
} | ||
}, | ||
{ | ||
"type": "style", | ||
"group": "potions", | ||
"label": "Prayer enhance", | ||
"macroName": "VAR_COX_PEH_USERSTYLE", | ||
"default": { | ||
"textColor": "#ff00ff", | ||
"textAccent": 4 | ||
} | ||
}, | ||
{ | ||
"type": "style", | ||
"group": "potions", | ||
"label": "Revitalisation", | ||
"macroName": "VAR_COX_REV_USERSTYLE", | ||
"default": { | ||
"textColor": "#e91e63", | ||
"textAccent": 4 | ||
} | ||
}, | ||
{ | ||
"type": "style", | ||
"group": "potions", | ||
"label": "Xeric's aid", | ||
"macroName": "VAR_COX_XER_USERSTYLE", | ||
"default": { | ||
"textColor": "#ffff00", | ||
"textAccent": 4 | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// module:cox | ||
|
||
#define CONST_COX_AREA [] | ||
|
||
#define VAR_COX_OVL_USERSTYLE | ||
#define VAR_COX_PEH_USERSTYLE | ||
#define VAR_COX_REV_USERSTYLE | ||
#define VAR_COX_XER_USERSTYLE | ||
|
||
#define VAR_COX_HIGHLIGHT [] | ||
#define VAR_COX_HIGHLIGHT_USERSTYLE | ||
|
||
if (area:CONST_COX_AREA && name:CONST_COX_HIGHLIGHT) { | ||
VAR_COX_HIGHLIGHT_USERSTYLE; | ||
} | ||
|
||
if (area:CONST_COX_AREA && name:"overload*") { | ||
textColor = "#1e88e5"; | ||
textAccent = 4; | ||
VAR_COX_OVL_USERSTYLE; | ||
} | ||
|
||
if (area:CONST_COX_AREA && name:"prayer enhance*") { | ||
textColor = "#ff00ff"; | ||
textAccent = 4; | ||
VAR_COX_PEH_USERSTYLE; | ||
} | ||
|
||
if (area:CONST_COX_AREA && name:"revitalisation*") { | ||
textColor = "#e91e63"; | ||
textAccent = 4; | ||
VAR_COX_REV_USERSTYLE; | ||
} | ||
|
||
if (area:CONST_COX_AREA && name:"xeric's aid*") { | ||
textColor = "#ffff00"; | ||
textAccent = 4; | ||
VAR_COX_XER_USERSTYLE; | ||
} | ||
|
||
// endmodule:cox |