101 lines
2.0 KiB
Python
101 lines
2.0 KiB
Python
EVENT_AWARDS = {
|
|
"lootbox": {
|
|
"kind": "lootbox",
|
|
"title": "Lootbox",
|
|
"description": "",
|
|
"icon": "fas fa-box-open",
|
|
"color": "text-blue",
|
|
"price": 1000,
|
|
"deflectable": True,
|
|
"cosmetic": False
|
|
},
|
|
"snow": {
|
|
"kind": "snow",
|
|
"title": "Snow",
|
|
"description": "",
|
|
"icon": "fas fa-snowflake",
|
|
"color": "text-lightblue",
|
|
"price": 300,
|
|
"deflectable": False,
|
|
"cosmetic": True
|
|
},
|
|
"gingerbread": {
|
|
"kind": "gingerbread",
|
|
"title": "Gingerbread",
|
|
"description": "",
|
|
"icon": "fas fa-gingerbread-man",
|
|
"color": "text-brown",
|
|
"price": 300,
|
|
"deflectable": False,
|
|
"cosmetic": True
|
|
},
|
|
"lights": {
|
|
"kind": "lights",
|
|
"title": "Lights",
|
|
"description": "",
|
|
"icon": "fas fa-lights-holiday",
|
|
"color": "text-success",
|
|
"price": 300,
|
|
"deflectable": False,
|
|
"cosmetic": True
|
|
},
|
|
"candycane": {
|
|
"kind": "candycane",
|
|
"title": "Candy Cane",
|
|
"description": "",
|
|
"icon": "fas fa-candy-cane",
|
|
"color": "text-danger",
|
|
"price": 400,
|
|
"deflectable": False,
|
|
"cosmetic": True
|
|
},
|
|
"fireplace": {
|
|
"kind": "fireplace",
|
|
"title": "Fireplace",
|
|
"description": "",
|
|
"icon": "fas fa-fireplace",
|
|
"color": "text-orange",
|
|
"price": 600,
|
|
"deflectable": False,
|
|
"cosmetic": True
|
|
},
|
|
"frostbite": {
|
|
"kind": "frostbite",
|
|
"title": "Frostbite",
|
|
"description": "",
|
|
"icon": "fas fa-temperature-snow",
|
|
"color": "text-blue",
|
|
"price": 300,
|
|
"deflectable": False,
|
|
"cosmetic": True
|
|
},
|
|
"grinch": {
|
|
"kind": "grinch",
|
|
"title": "Grinch",
|
|
"description": "",
|
|
"icon": "fas fa-angry",
|
|
"color": "text-green-500",
|
|
"price": 1000,
|
|
"deflectable": True,
|
|
"cosmetic": False
|
|
},
|
|
}
|
|
|
|
"""
|
|
"snowed-in": {
|
|
"kind": "snowed-in",
|
|
"title": "Snowed In",
|
|
"description": "",
|
|
"icon": "fas fa-temperature-snow",
|
|
"color": "text-blue",
|
|
"price": 600,
|
|
"deflectable": False,
|
|
"cosmetic": True
|
|
},
|
|
|
|
"""
|
|
|
|
EVENT_FORCED_HATS = ['/i/hats/Santa Hat III.webp?h=1', \
|
|
'/i/hats/Winter Cap.webp?h=1', \
|
|
'/i/hats/Present Bow.webp?h=1']
|