From 048e8969a9e6f556ee97f24ba45cdf29696c5e8d Mon Sep 17 00:00:00 2001 From: Aevann Date: Fri, 1 Dec 2023 22:12:16 +0200 Subject: [PATCH] reduce the price of 3 fistmas awards from 300 to 100 and reduce fistmas lootbox price from 1000 to 300 --- files/helpers/config/awards.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/files/helpers/config/awards.py b/files/helpers/config/awards.py index 98c11d98b5..83ff6bd952 100644 --- a/files/helpers/config/awards.py +++ b/files/helpers/config/awards.py @@ -99,7 +99,7 @@ AWARDS = { "description": "???", "icon": "fas fa-box-open", "color": "text-blue", - "price": 1000, + "price": 300 if IS_FISTMAS() else 1000, "deflectable": True, "cosmetic": False, "ghost": False, @@ -129,7 +129,7 @@ AWARDS = { "description": "???", "icon": "fas fa-snowflake", "color": "text-lightblue", - "price": 300, + "price": 100, "deflectable": False, "cosmetic": True, "ghost": True, @@ -143,7 +143,7 @@ AWARDS = { "description": "???", "icon": "fas fa-gingerbread-man", "color": "text-brown", - "price": 300, + "price": 100, "deflectable": False, "cosmetic": True, "ghost": True, @@ -157,7 +157,7 @@ AWARDS = { "description": "???", "icon": "fas fa-lights-holiday", "color": "text-success", - "price": 300, + "price": 100, "deflectable": False, "cosmetic": True, "ghost": True,