📅 {{ data.date if data.date is defined else '' }} {{ data.week if data.week is defined else '' }} 日常
{% if data is mapping %} {% if data.war is defined %}{% endif %} {% if data.battle is defined %}{% endif %} {% if data.orecar is defined %}{% endif %} {% if data.school is defined %}{% endif %} {% if data.rescue is defined %}{% endif %} {% if data.draw is defined and data.draw %}{% endif %} {% if data.card is defined %} {% endif %} {% if data.team is defined %} {% endif %} {# 通用:遍历其他未明确处理的字段 #} {% for key, value in data.items() %} {% if key not in ['date', 'week', 'war', 'battle', 'orecar', 'school', 'rescue', 'draw', 'team', 'card', 'luck', 'year', 'month', 'day'] %} {% endif %} {% endfor %} {% endif %}
大战{{ data.war }}
战场{{ data.battle }}
矿车{{ data.orecar }}
门派{{ data.school }}
救援{{ data.rescue }}
美人图{{ data.draw }}
武林秘境 {% if data.card is iterable and data.card is not string %} {% for c in data.card %}{{ c }}{% endfor %} {% else %} {{ data.card }} {% endif %}
武林团队 {% if data.team is iterable and data.team is not string %} {% for t in data.team %}{{ t }}{% endfor %} {% else %} {{ data.team }} {% endif %}
{{ key }} {% if value is iterable and value is not string %} {% for v in value %}{{ v }}{% endfor %} {% else %} {{ value }} {% endif %}
{% if data is mapping and data.luck is defined and data.luck %}
🍀 宠物奇遇

{% for l in data.luck %}{{ l }}{% endfor %}

{% endif %}