train award

This commit is contained in:
Aevann1 2021-10-20 21:34:56 +02:00
parent 35c6576196
commit 21e77d2a61
16 changed files with 154 additions and 56 deletions

View file

@ -10,7 +10,7 @@ if site_name == "Drama":
AWARDS = {
"ban": {
"kind": "ban",
"title": "One-Day Ban",
"title": "1-Day Ban",
"description": "Bans the author for a day.",
"icon": "fas fa-gavel",
"color": "text-danger",
@ -39,7 +39,15 @@ if site_name == "Drama":
"icon": "fas fa-seedling",
"color": "text-success",
"price": 10000
}
},
"train": {
"kind": "train",
"title": "Train",
"description": "Summons a train on the post.",
"icon": "fas fa-train",
"color": "text-pink",
"price": 500
},
}
else:
AWARDS = {
@ -58,6 +66,14 @@ else:
"icon": "fas fa-sparkles",
"color": "text-warning",
"price": 500
},
"train": {
"kind": "train",
"title": "Train",
"description": "Summons a train on the post.",
"icon": "fas fa-train",
"color": "text-pink",
"price": 500
}
}