rDrama/files/events/helpers/const.py

56 lines
1.1 KiB
Python

EVENT_AWARDS = {
"snow": {
"kind": "snow",
"title": "Snow",
"description": "",
"icon": "fas fa-snowflake",
"color": "text-blue-200",
"price": 300,
"deflectable": False,
"cosmetic": True
},
"gingerbread": {
"kind": "gingerbread",
"title": "Gingerbread",
"description": "",
"icon": "fas fa-gingerbread-man",
"color": "",
"price": 300,
"deflectable": False,
"cosmetic": True
},
"lights": {
"kind": "lights",
"title": "Lights",
"description": "",
"icon": "fas fa-lights-holiday",
"color": "",
"price": 300,
"deflectable": False,
"cosmetic": True
},
"candycane": {
"kind": "candycane",
"title": "Candy Cane",
"description": "",
"icon": "fas fa-candy-cane",
"color": "",
"price": 400,
"deflectable": False,
"cosmetic": True
},
"fireplace": {
"kind": "fireplace",
"title": "Fireplace",
"description": "",
"icon": "fas fa-fireplace",
"color": "",
"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']