diff --git a/files/helpers/const.py b/files/helpers/const.py index 221e36564a..da0cbdaae2 100644 --- a/files/helpers/const.py +++ b/files/helpers/const.py @@ -624,6 +624,14 @@ AWARDS = { "color": "text-gray", "price": 300 }, + "candycane": { + "kind": "candycane", + "title": "Candy Cane", + "description": "???", + "icon": "fas fa-candy-cane", + "color": "text-gray", + "price": 500 + }, "mistletoe": { "kind": "mistletoe", "title": "Mistletoe", diff --git a/files/routes/awards.py b/files/routes/awards.py index 1dff45b95a..e8cf0bb0a7 100644 --- a/files/routes/awards.py +++ b/files/routes/awards.py @@ -219,6 +219,14 @@ def shop(v): "owned": 0, "price": 300 }, + "candycane": { + "kind": "candycane", + "title": "Candy Cane", + "description": "???", + "icon": "fas fa-candy-cane", + "color": "text-gray", + "price": 500 + }, "mistletoe": { "kind": "mistletoe", "title": "Mistletoe", @@ -415,6 +423,14 @@ def buy(v, award): "color": "text-gray", "price": 300 }, + "candycane": { + "kind": "candycane", + "title": "Candy Cane", + "description": "???", + "icon": "fas fa-candy-cane", + "color": "text-gray", + "price": 500 + }, "mistletoe": { "kind": "mistletoe", "title": "Mistletoe",