Adds a Thug antag type, for admin use

This commit is contained in:
Anewbe
2017-10-19 09:53:20 -05:00
parent f726e96fe7
commit 47d644fb9b
3 changed files with 19 additions and 0 deletions
+1
View File
@@ -86,6 +86,7 @@ var/list/be_special_flags = list(
#define MODE_TRAITOR "traitor"
#define MODE_AUTOTRAITOR "autotraitor"
#define MODE_INFILTRATOR "infiltrator"
#define MODE_THUG "thug"
#define DEFAULT_TELECRYSTAL_AMOUNT 120
+17
View File
@@ -0,0 +1,17 @@
var/datum/antagonist/thug/thugs
/datum/antagonist/THUG
id = MODE_THUG
role_type = BE_RENEGADE
role_text = "Thug"
role_text_plural = "Thugs"
bantype = "renegade"
restricted_jobs = list("AI", "Cyborg")
welcome_text = "Sometimes, people just need to get messed up. Luckily, that's what you're here to do."
antag_text = "You are a <b>minor</b> antagonist! Within the server rules, do whatever it is \
that you came to the station to do, be it violence, theft, or just extreme self-defense. \
Try to make sure other players have <i>fun</i>! If you are confused or at a loss, always adminhelp, \
and before taking extreme actions, please try to also contact the administration! \
Think through your actions and make the roleplay immersive! <b>Please remember all \
rules aside from those without explicit exceptions apply to antagonists.</b>"
flags = ANTAG_SUSPICIOUS | ANTAG_IMPLANT_IMMUNE | ANTAG_RANDSPAWN | ANTAG_VOTABLE
+1
View File
@@ -360,6 +360,7 @@
#include "code\game\antagonist\station\renegade.dm"
#include "code\game\antagonist\station\revolutionary.dm"
#include "code\game\antagonist\station\rogue_ai.dm"
#include "code\game\antagonist\station\thug.dm"
#include "code\game\antagonist\station\traitor.dm"
#include "code\game\area\ai_monitored.dm"
#include "code\game\area\areas.dm"