-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Xedra Evolve] Add Ruach counter to sidebars (#77422)
* Update sidebar.json * Create ruach_counter.json * Initial commit * Add to sidebars
- Loading branch information
1 parent
64914b4
commit 40ca576
Showing
2 changed files
with
126 additions
and
6 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,83 @@ | ||
[ | ||
{ | ||
"id": "spacebar_ruach_counter_block", | ||
"type": "widget", | ||
"style": "layout", | ||
"label": "Ruach", | ||
"arrange": "minimum_columns", | ||
"width": 58, | ||
"widgets": [ "spacebar_separator_2", "ruach_counter_meter" ] | ||
}, | ||
{ | ||
"id": "ruach_counter_meter", | ||
"type": "widget", | ||
"style": "text", | ||
"label": "Ruach", | ||
"flags": [ "W_DISABLED_WHEN_EMPTY" ], | ||
"width": 56, | ||
"clauses": [ | ||
{ | ||
"id": "out_of_ruach", | ||
"text": "Starving", | ||
"color": "c_pink", | ||
"condition": { "and": [ { "u_has_trait": "LILIN_TRAITS" }, { "math": [ "u_vitamin('lilin_ruach_vitamin')", "==", "0" ] } ] } | ||
}, | ||
{ | ||
"id": "ruach_level_1", | ||
"text": "<color_red>Almost Spent</color>", | ||
"condition": { | ||
"and": [ | ||
{ "u_has_trait": "LILIN_TRAITS" }, | ||
{ "math": [ "u_vitamin('lilin_ruach_vitamin')", ">=", "1" ] }, | ||
{ "math": [ "u_vitamin('lilin_ruach_vitamin')", "<", "241" ] } | ||
] | ||
} | ||
}, | ||
{ | ||
"id": "ruach_level_2", | ||
"text": "<color_light_red>Drained</color>", | ||
"condition": { | ||
"and": [ | ||
{ "u_has_trait": "LILIN_TRAITS" }, | ||
{ "math": [ "u_vitamin('lilin_ruach_vitamin')", ">=", "241" ] }, | ||
{ "math": [ "u_vitamin('lilin_ruach_vitamin')", "<", "481" ] } | ||
] | ||
} | ||
}, | ||
{ | ||
"id": "ruach_level_3", | ||
"text": "<color_yellow>Refreshed</color>", | ||
"condition": { | ||
"and": [ | ||
{ "u_has_trait": "LILIN_TRAITS" }, | ||
{ "math": [ "u_vitamin('lilin_ruach_vitamin')", ">=", "480" ] }, | ||
{ "math": [ "u_vitamin('lilin_ruach_vitamin')", "<", "1201" ] } | ||
] | ||
} | ||
}, | ||
{ | ||
"id": "ruach_level_4", | ||
"text": "<color_light_green>Satiated</color>", | ||
"condition": { | ||
"and": [ | ||
{ "u_has_trait": "LILIN_TRAITS" }, | ||
{ "math": [ "u_vitamin('lilin_ruach_vitamin')", ">=", "1200" ] }, | ||
{ "math": [ "u_vitamin('lilin_ruach_vitamin')", "<", "2401" ] } | ||
] | ||
} | ||
}, | ||
{ | ||
"id": "ruach_level_5", | ||
"text": "<color_green>Suffused</color>", | ||
"condition": { | ||
"and": [ | ||
{ "u_has_trait": "LILIN_TRAITS" }, | ||
{ "u_has_trait": "LILIN_HOLD_MORE_RUACH" }, | ||
{ "math": [ "u_vitamin('lilin_ruach_vitamin')", ">=", "2400" ] } | ||
] | ||
} | ||
} | ||
], | ||
"padding": 0 | ||
} | ||
] |
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