remotes/1693045480750635534/spooky-22
Aevann1 2021-10-28 00:19:53 +02:00
parent ff0729ec9c
commit 912be326d6
3 changed files with 5 additions and 5 deletions

View File

@ -201,7 +201,7 @@ if SITE_NAME == "Drama":
"description": "Forces the agendaposter theme on the recipient for 24 hours.",
"icon": "fas fa-snooze",
"color": "text-purple",
"price": 2000
"price": 2500
},
"marsey": {
"kind": "marsey",

View File

@ -102,7 +102,7 @@ def shop(v):
"icon": "fas fa-snooze",
"color": "text-purple",
"owned": 0,
"price": 2000
"price": 2500
},
"marsey": {
"kind": "marsey",
@ -304,7 +304,7 @@ def buy(v, award):
"description": "Forces the agendaposter theme on the recipient for 24 hours.",
"icon": "fas fa-snooze",
"color": "text-purple",
"price": 2000
"price": 2500
},
"marsey": {
"kind": "marsey",
@ -835,7 +835,7 @@ def items(v):
"icon": "fas fa-snooze",
"color": "text-purple",
"owned": 0,
"price": 2000
"price": 2500
},
"marsey": {
"kind": "marsey",

View File

@ -64,7 +64,7 @@
{% set kind = a['kind'] %}
<td style="font-weight: bold">
<a class="d-flex btn btn-success {% if v.coins < a['price'] %}disabled{% endif %}" href="javascript:void(0)" onclick="post_toast('/buy/{{kind}}')"><span class="m-auto">Buy</span></a>
{% if v.procoins and kind not in ["agendaposter","grass","pause","unpausable"] %}<a class="d-flex marseybux btn btn-success {% if v.procoins < a['price'] %}disabled{% endif %}" href="javascript:void(0)" onclick="post_toast('/buy/{{kind}}?mb=true')"><span class="m-auto">Buy with Marseybux</span></a>{% endif %}
{% if v.procoins and kind not in ["grass","pause","unpausable"] %}<a class="d-flex marseybux btn btn-success {% if v.procoins < a['price'] %}disabled{% endif %}" href="javascript:void(0)" onclick="post_toast('/buy/{{kind}}?mb=true')"><span class="m-auto">Buy with Marseybux</span></a>{% endif %}
</td>
</tr>
{% endfor %}