From a7376491818c3c4ec3b3f40dc9d355973b81ce1b Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Tue, 28 Dec 2021 15:53:08 +0200 Subject: [PATCH] fsd --- files/helpers/const.py | 14 +++++++------- files/routes/users.py | 8 ++++---- files/templates/shop.html | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/files/helpers/const.py b/files/helpers/const.py index ec766c054..a4bffb053 100644 --- a/files/helpers/const.py +++ b/files/helpers/const.py @@ -333,31 +333,31 @@ BADGES = { }, 67: { 'name': 'Unpausable', - 'description': 'Spent 40,000 dramacoins on an unpausable profile anthem' + 'description': 'Spent 40,000 coins on an unpausable profile anthem' }, 68: { 'name': 'Pause Button', - 'description': 'Spent 20,000 dramacoins on a profile anthem pause button' + 'description': 'Spent 20,000 coins on a profile anthem pause button' }, 69: { 'name': 'Little Big Spender', - 'description': 'Dropped 10,000 dramacoins at the shop' + 'description': 'Dropped 10,000 coins at the shop' }, 70: { 'name': 'Big Spender', - 'description': 'Dropped 100,000 dramacoins at the shop' + 'description': 'Dropped 100,000 coins at the shop' }, 71: { 'name': 'Big Big Spender', - 'description': 'Dropped 250,000 dramacoins at the shop' + 'description': 'Dropped 250,000 coins at the shop' }, 72: { 'name': 'Big Big Big Spender', - 'description': 'Dropped 500,000 dramacoins at the shop' + 'description': 'Dropped 500,000 coins at the shop' }, 73: { 'name': 'Le Rich Gentlesir', - 'description': 'Spent a fucking million dramacoins at the shop' + 'description': 'Spent a fucking million coins at the shop' }, 74: { 'name': 'Grass Toucher', diff --git a/files/routes/users.py b/files/routes/users.py index 13bf31e75..2709517a1 100644 --- a/files/routes/users.py +++ b/files/routes/users.py @@ -135,15 +135,15 @@ def steal(v): g.db.add(v) u.coins -= 700 g.db.add(u) - send_repeatable_notification(u.id, f"Some [grubby little rentoid](/@{v.username}) has absconded with 700 of your hard-earned dramacoins to fuel his Funko Pop addiction. Stop being so trusting.") - send_repeatable_notification(v.id, f"You have successfully shorted your heroic landlord 700 dramacoins in rent. You're slightly less materially poor, but somehow even moreso morally. Are you proud of yourself?") + send_repeatable_notification(u.id, f"Some [grubby little rentoid](/@{v.username}) has absconded with 700 of your hard-earned coins to fuel his Funko Pop addiction. Stop being so trusting.") + send_repeatable_notification(v.id, f"You have successfully shorted your heroic landlord 700 coins in rent. You're slightly less materially poor, but somehow even moreso morally. Are you proud of yourself?") g.db.commit() return {"message": "Attempt successful!"} else: if random.random() < 0.15: - send_repeatable_notification(u.id, f"You caught [this sniveling little renthog](/@{v.username}) trying to rob you. After beating him within an inch of his life, you sold his Nintendo Switch for 500 dramacoins and called the cops. He was sentenced to one (1) day in renthog prison.") - send_repeatable_notification(v.id, f"The ever-vigilant landchad has caught you trying to steal his hard-earned rent money. The police take you away and laugh as you impotently stutter A-ACAB :sob: You are fined 500 dramacoins and sentenced to one (1) day in renthog prison.") + send_repeatable_notification(u.id, f"You caught [this sniveling little renthog](/@{v.username}) trying to rob you. After beating him within an inch of his life, you sold his Nintendo Switch for 500 coins and called the cops. He was sentenced to one (1) day in renthog prison.") + send_repeatable_notification(v.id, f"The ever-vigilant landchad has caught you trying to steal his hard-earned rent money. The police take you away and laugh as you impotently stutter A-ACAB :sob: You are fined 500 coins and sentenced to one (1) day in renthog prison.") v.ban(days=1, reason="Jailed thief") v.fail_utc = int(time.time()) else: diff --git a/files/templates/shop.html b/files/templates/shop.html index fe739b29c..ed8738612 100644 --- a/files/templates/shop.html +++ b/files/templates/shop.html @@ -11,7 +11,7 @@ shop banner

Stir drama. Earn coins.

Total sales: {{sales}} coins
-
Dramacoins spent by you: {{v.coins_spent}} coins
+
Coins spent by you: {{v.coins_spent}} coins
{% endblock %}