diff --git a/resources/zzz/abyss/floor.jinja2 b/resources/zzz/abyss/floor.jinja2 index de74f0d..cd18931 100644 --- a/resources/zzz/abyss/floor.jinja2 +++ b/resources/zzz/abyss/floor.jinja2 @@ -22,6 +22,13 @@
{% for character in node.avatars %}
+ {% if character.rank > 0 %} + {% set constellation = character.rank %} + {% set bg = ['blue', 'blue', 'green', 'green', 'red', 'red'][constellation - 1] %} +
+ {{ constellation }} 命 +
+ {% endif %}
diff --git a/resources/zzz/abyss/floor_mem.jinja2 b/resources/zzz/abyss/floor_mem.jinja2 index 029e416..b157cb6 100644 --- a/resources/zzz/abyss/floor_mem.jinja2 +++ b/resources/zzz/abyss/floor_mem.jinja2 @@ -29,6 +29,13 @@
{% for character in data.floor.avatar_list %}
+ {% if character.rank > 0 %} + {% set constellation = character.rank %} + {% set bg = ['blue', 'blue', 'green', 'green', 'red', 'red'][constellation - 1] %} +
+ {{ constellation }} 命 +
+ {% endif %}