-
-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reworks job spawning in City of Light (#2453)
reworks Update lobotomy-corp13.dme makes specific roaming salsu role
- Loading branch information
1 parent
2e2a285
commit cd17cd2
Showing
8 changed files
with
91 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
code/modules/jobs/job_types/city/misc/blade_lineage_misc.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
//Randomspawn Salsus | ||
/datum/job/roamingsalsu | ||
title = "Blade Lineage Roaming Salsu" | ||
outfit = /datum/outfit/job/roamingsalsu | ||
department_head = list("the code of honor") | ||
faction = "Station" | ||
supervisors = "the code of honor" | ||
selection_color = "#72718a" | ||
total_positions = 0 | ||
spawn_positions = 0 | ||
display_order = JOB_DISPLAY_ORDER_SYNDICATEGOON | ||
access = list(ACCESS_SYNDICATE) | ||
minimal_access = list(ACCESS_SYNDICATE) | ||
paycheck = 150 | ||
maptype = list("city") | ||
job_important = "You belong to the Blade Lineage, a band of wandering swordsmen. \ | ||
Seek honor, seek to kill the strong, and take money for your slaughter if the opportunity arrives. \ | ||
In an honorable duel, the loser should be brought to a doctor, out of courtesy to their skill. \ | ||
Using a disguise is dishonorable, as is using ranged weapons and stun weapons, and attacking someone that is not significantly stronger than you while not in an agreed duel. \ | ||
If anyone uses cheese tactics against you, or attacks you for no reason while not in a duel, they are dishonorable. \ | ||
You, or anyone in blade lineage may kill anyone dishonorable in any way, without hesitation, or remorse." | ||
job_notice = "Avoid killing other players without a reason. Killing weak players not in self-defense is cowardly." | ||
|
||
|
||
roundstart_attributes = list( | ||
FORTITUDE_ATTRIBUTE = 60, | ||
PRUDENCE_ATTRIBUTE = 60, | ||
TEMPERANCE_ATTRIBUTE = 60, | ||
JUSTICE_ATTRIBUTE = 60 | ||
) | ||
|
||
/datum/job/salsu/after_spawn(mob/living/carbon/human/H, mob/M) | ||
ADD_TRAIT(H, TRAIT_COMBATFEAR_IMMUNE, JOB_TRAIT) | ||
ADD_TRAIT(H, TRAIT_WORK_FORBIDDEN, JOB_TRAIT) | ||
. = ..() | ||
|
||
|
||
/datum/outfit/job/roamingsalsu | ||
name = "Blade Lineage Salsu" | ||
jobtype = /datum/job/salsu | ||
|
||
belt = /obj/item/pda/security | ||
ears = null | ||
uniform = /obj/item/clothing/under/suit/lobotomy/plain | ||
glasses = /obj/item/clothing/glasses/sunglasses | ||
l_hand = /obj/item/ego_weapon/city/bladelineage/city | ||
r_hand =/obj/item/clothing/suit/armor/ego_gear/city/blade_lineage_salsu | ||
backpack_contents = list() | ||
shoes = /obj/item/clothing/shoes/laceup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,3 +99,6 @@ endmap | |
|
||
map runtimestation | ||
endmap | ||
|
||
map city | ||
endmap |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters