{{ response.Name }}
by
{{ response.CreatorName }}
ID: {{ response.ID }}
Maps: {{ response.MapCount }}
{% if response.Maps %}
{% for map in response.Maps %}
{{ map['Name'] }}
Difficulty: {{ '▲' * map['AverageUserDifficulty']|int }}
by
{{ map['CreatorName'] }}
{{ map['NumThumbsUp'] }} 👍 {{ map['NumThumbsDown'] }} 👎
Replays visible: {{ "always" if map['ReplayVisibility'] == 2 }}{{ "after clear" if map['ReplayVisibility'] == 0 }}
Gems : {{ map['DragonCoins'] }}
{% if map['Description'] != ''%}
{{ map['Description'] }}
{% endif %}
Code:
Full server response
Key
Value
{% for value in map %}
{{value}}
{{map[value]}}
{% endfor %}
First Clear:
{{ map['FirstClearUsername'] }}
{% set BestTime = convert_times(map['BestTimePlaytime']) %} {% set BestFullTime = convert_times(map['BestFullTimePlaytime']) %}
Best Time:
{{ map['BestTimeUsername'] }}
[{{ BestTime[0] }}:{{ BestTime[1] }}:{{ BestTime[2] }}]
{% if map['BestFullTimeUserID'] != 0 %}
Best 100% Time:
{{ map['BestFullTimeUsername'] }}
[{{ BestFullTime[0] }}:{{ BestFullTime[1] }}:{{ BestFullTime[2] }}]{{ "(illegal time)" if not map['DragonCoins'] }}
{% endif %}
{% endfor %}
{% endif %}