This commit is contained in:
Aevann1 2022-02-17 05:03:03 +02:00
parent 172c4f725a
commit 613b5dd829
17 changed files with 243 additions and 22 deletions

View file

@ -555,6 +555,35 @@ AWARDS = {
},
}
if SITE == 'PCM':
PCM_AWARDS = {
"croag": {
"kind": "croag",
"title": "Croag",
"description": "Summons Croag on the post.",
"icon": "fas fa-head-side",
"color": "text-gold",
"price": 300
},
"toe": {
"kind": "toe",
"title": "Toe Hype",
"description": "Summons Blade's toe on the post.",
"icon": "fas fa-socks",
"color": "text-gold",
"price": 300
},
"crab": {
"kind": "crab",
"title": "crab",
"description": "Rave time!",
"icon": "fas fa-glass-cheers",
"color": "text-gold",
"price": 300
}
}
AWARDS = {**PCM_AWARDS, **AWARDS}
AWARDS2 = deepcopy(AWARDS)
for k, val in AWARDS.items():
if val['description'] == '???': AWARDS2.pop(k)