mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-29 15:08:02 +01:00
Removes civilian: Return of the Assistant King (#17103)
* Removes Civilian * other alt-titles as well * further resolution * forgot these * TGUI * hud icon
This commit is contained in:
@@ -483,7 +483,7 @@
|
||||
|
||||
if("Occupation")
|
||||
var/list/departments =list(
|
||||
"Civilian",
|
||||
"Assistant",
|
||||
"Engineering",
|
||||
"Medical",
|
||||
"Science",
|
||||
@@ -494,11 +494,11 @@
|
||||
)
|
||||
|
||||
var/department = input(user, "What job would you like to put on this card?\nChoose a department or a custom job title.\nChanging occupation will not grant or remove any access levels.","Agent Card Occupation") in departments
|
||||
var/new_job = "Civilian"
|
||||
var/new_job = "Assistant"
|
||||
|
||||
if(department == "Custom")
|
||||
new_job = sanitize(stripped_input(user,"Choose a custom job title:","Agent Card Occupation", "Civilian", MAX_MESSAGE_LEN))
|
||||
else if(department != "Civilian")
|
||||
new_job = sanitize(stripped_input(user,"Choose a custom job title:","Agent Card Occupation", "Assistant", MAX_MESSAGE_LEN))
|
||||
else if(department != "Assistant")
|
||||
switch(department)
|
||||
if("Engineering")
|
||||
new_job = input(user, "What job would you like to put on this card?\nChanging occupation will not grant or remove any access levels.","Agent Card Occupation") in GLOB.engineering_positions
|
||||
|
||||
@@ -646,8 +646,8 @@
|
||||
else
|
||||
to_chat(missionary, "<span class='notice'>You successfully convert [target] to your cause. The following grows because of your faith!</span>")
|
||||
faith -= 100
|
||||
else if(target.mind.assigned_role == "Civilian")
|
||||
if(prob(55)) //55% chance to take LESS faith than normal, because civies are stupid and easily manipulated
|
||||
else if(target.mind.assigned_role == "Assistant")
|
||||
if(prob(55)) //55% chance to take LESS faith than normal, because assistants are stupid and easily manipulated
|
||||
to_chat(missionary, "<span class='notice'>Your message seems to resound well with [target]; converting [target.p_them()] was much easier than expected.</span>")
|
||||
faith -= 50
|
||||
else //45% chance to take the normal 100 faith cost
|
||||
|
||||
Reference in New Issue
Block a user