{% extends "default.html" %} {%- set SHOP_FLAVOR = { 'rDrama': 'Stir drama.', 'WPD': 'Watch people die.', }[SITE_NAME] -%} {% block pagetitle %}Shop{% endblock %} {% block pagetype %}message{% endblock %} {% block banner %}
shop banner

{{SHOP_FLAVOR}} Earn coins.

Total sales: {{"{:,}".format(sales)}} coins
Coins spent by you: {{"{:,}".format(v.coins_spent)}} coins
Lootboxes bought by you: {{v.lootboxes_bought}} lootbox{{'es' if v.lootboxes_bought != 1}}
Your current coins: {{"{:,}".format(v.coins)}}
{% if FEATURES['MARSEYBUX'] %}
Your current marseybux: {{"{:,}".format(v.marseybux)}}
{% endif %}
{% endblock %} {% block content %}
{% for a in awards %} {% if a['baseprice'] != a['price'] %} {% else %} {% endif %} {% set kind = a['kind'] %} {% endfor %}
Icon Title Price Owned Buy Description
{{a['title']}} {{a['baseprice']}} {{a['price']}} {{a['price']}}{{a['owned']}} {% if kind != "benefactor" %} {% endif %} {% if FEATURES['MARSEYBUX'] %} {% if kind != "grass" %} {% endif %} {% endif %} {{a['description']}}
{% endblock %}