forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-11-18 23:06:34 +02:00
parent e02a4df9cb
commit 3e2c1ca32d
2 changed files with 18 additions and 18 deletions

View File

@ -197,12 +197,12 @@ AWARDS = {
"color": "text-black", "color": "text-black",
"price": 1000 "price": 1000
}, },
"longpost": { "pizzashill": {
"kind": "longpost", "kind": "pizzashill",
"title": "Longpost", "title": "Longpost",
"description": "Forces the recipient to make all posts/comments > 280 characters for 24 hours.", "description": "Forces the recipient to make all posts/comments > 280 characters for 24 hours.",
"icon": "fas fa-book", "icon": "fas fa-pizza",
"color": "text-green", "color": "text-orange",
"price": 1000 "price": 1000
}, },
"flairlock": { "flairlock": {
@ -385,12 +385,12 @@ AWARDS2 = {
"color": "text-black", "color": "text-black",
"price": 1000 "price": 1000
}, },
"longpost": { "pizzashill": {
"kind": "longpost", "kind": "pizzashill",
"title": "Longpost", "title": "Longpost",
"description": "Forces the recipient to make all posts/comments > 280 characters for 24 hours.", "description": "Forces the recipient to make all posts/comments > 280 characters for 24 hours.",
"icon": "fas fa-book", "icon": "fas fa-pizza",
"color": "text-green", "color": "text-orange",
"price": 1000 "price": 1000
}, },
"flairlock": { "flairlock": {

View File

@ -98,12 +98,12 @@ def shop(v):
"price": 1000, "price": 1000,
"MB": True "MB": True
}, },
"longpost": { "pizzashill": {
"kind": "longpost", "kind": "pizzashill",
"title": "Longpost", "title": "Longpost",
"description": "Forces the recipient to make all posts/comments > 280 characters for 24 hours.", "description": "Forces the recipient to make all posts/comments > 280 characters for 24 hours.",
"icon": "fas fa-book", "icon": "fas fa-pizza",
"color": "text-green", "color": "text-orange",
"owned": 0, "owned": 0,
"price": 1000, "price": 1000,
"MB": True "MB": True
@ -274,12 +274,12 @@ def buy(v, award):
"color": "text-black", "color": "text-black",
"price": 1000 "price": 1000
}, },
"longpost": { "pizzashill": {
"kind": "longpost", "kind": "pizzashill",
"title": "Longpost", "title": "Longpost",
"description": "Forces the recipient to make all posts/comments > 280 characters for 24 hours.", "description": "Forces the recipient to make all posts/comments > 280 characters for 24 hours.",
"icon": "fas fa-book", "icon": "fas fa-pizza",
"color": "text-green", "color": "text-orange",
"price": 1000, "price": 1000,
}, },
"flairlock": { "flairlock": {
@ -538,7 +538,7 @@ def award_post(pid, v):
elif kind == "marsey": elif kind == "marsey":
if author.marseyawarded: author.marseyawarded += 86400 if author.marseyawarded: author.marseyawarded += 86400
else: author.marseyawarded = time.time() + 86400 else: author.marseyawarded = time.time() + 86400
elif kind == "longpost": elif kind == "pizzashill":
if author.longpost: author.longpost += 86400 if author.longpost: author.longpost += 86400
else: author.longpost = time.time() + 86400 else: author.longpost = time.time() + 86400
elif kind == "eye": elif kind == "eye":
@ -671,7 +671,7 @@ def award_comment(cid, v):
elif kind == "marsey": elif kind == "marsey":
if author.marseyawarded: author.marseyawarded += 86400 if author.marseyawarded: author.marseyawarded += 86400
else: author.marseyawarded = time.time() + 86400 else: author.marseyawarded = time.time() + 86400
elif kind == "longpost": elif kind == "pizzashill":
if author.longpost: author.longpost += 86400 if author.longpost: author.longpost += 86400
else: author.longpost = time.time() + 86400 else: author.longpost = time.time() + 86400
elif kind == "eye": elif kind == "eye":