{{ char.name }}

{{ char.level }} 级

{% for rank in char.ranks %} {% if rank.is_unlocked %} {% set lock = '' %} {% else %} {% set lock = 'lock=1' %} {% endif %}
{% if not rank.is_unlocked %} {% endif %}
{% endfor %}
光锥
{% set equip = char.equip %}
{% if equip %}

{{ equip.name }}

{{ equip.level }} 级 叠影 {{ equip.rank }} 阶
{% else %}
暂未装备光锥
{% endif %}
行迹
{# 四个主要行迹#}
{% for skill in char.skills_main %}
{{ skill.level }}
{% endfor %}
{# 额外行迹#} {% if char.skills_single %}
{% for skill in char.skills_single %} {% if skill.is_activated %} {% set lock = "unlock=1" %} {% else %} {% set lock = 'lock=1' %} {% endif %}
{% endfor %}
{% endif %} {# 行迹在树上#}
{% for item in char.skills_map %}
{% for skill in item %} {% if loop.index == 1 %} {% set type = "M" %} {% else %} {% set type = "S" %} {% endif %} {% if skill.is_activated %} {% set lock = "unlock=1" %} {% else %} {% set lock = 'lock=1' %} {% endif %}
{% endfor %}
{% endfor %}
{{ nickname }} - UID {{ uid }}
角色属性
{% for data in properties %}
{% for item in data %} {% if item.highlight %} {% set highlight = "highlight=1" %} {% else %} {% set highlight = "" %} {% endif %}
{{ item.name }} {% if item.show_add %}
{{ item.base }} +{{ item.add }}
{% endif %} {{ item.final }}
{% endfor %}
{% endfor %}
遗器属性
{% if score.is_custom %} 有效副属性由开拓者自定义 {% else %} 有效副属性预设由 提供 {% endif %}

有效副属性命中统计

{% for sc in score.data %} {% if sc.count > 0 %} {% set grey = "" %} {% else %} {% set grey = "grey=1" %} {% endif %}
{{ sc.name }} {{ sc.count }}
{% endfor %}
{{ score.count }}

总计命中

{% for relic in relics %} {% if relic.has_data %}
{{ relic.name }} {% if relic.level > 0 %}
+{{ relic.level }}
{% endif %}
{% for prop in relic.properties %}
{% if prop.highlight %} {% set highlight = "highlight=1" %} {% else %} {% set highlight = "" %} {% endif %} {{ prop.name }} {% if prop.times > 1 %}
{{ prop.times - 1 }}
{% endif %} {{ prop.value }}
{% endfor %}
{% else %}
暂未装备遗器
{% endif %} {% endfor %}