[MODULAR] Modularizes #134 (#237)

<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request
Reimplements #134 modularly. 
Merge after #236
This commit is contained in:
nevimer
2023-06-06 20:42:10 -04:00
committed by GitHub
parent 3939033e37
commit 935d38b1d7
2 changed files with 99 additions and 0 deletions
@@ -0,0 +1,98 @@
/datum/job/science_guard
mail_goodies = list(
/obj/item/food/donut/caramel = 10,
/obj/item/food/donut/matcha = 10,
/obj/item/food/donut/blumpkin = 5,
/obj/item/clothing/mask/whistle = 10,
/obj/item/melee/baton = 5
)
/datum/outfit/job/science_guard
head = /obj/item/clothing/head/beret/sec/science
suit = /obj/item/clothing/suit/armor/vest/alt
r_pocket = /obj/item/reagent_containers/spray/pepper
l_pocket = /obj/item/restraints/handcuffs
backpack_contents = list(
/obj/item/melee/baton/security/loaded/departmental/science = 1,
/obj/item/gun/energy/disabler = 1,
/obj/item/holosign_creator/security = 1
)
/datum/job/orderly
mail_goodies = list(
/obj/item/food/donut/caramel = 10,
/obj/item/food/donut/matcha = 10,
/obj/item/food/donut/blumpkin = 5,
/obj/item/clothing/mask/whistle = 10,
/obj/item/melee/baton = 5
)
/datum/outfit/job/orderly
head = /obj/item/clothing/head/beret/sec/medical
glasses = /obj/item/clothing/glasses/hud/health/sunglasses
r_pocket = /obj/item/reagent_containers/spray/pepper
l_pocket = /obj/item/restraints/handcuffs
backpack_contents = list(
/obj/item/melee/baton/security/loaded/departmental/medical = 1,
/obj/item/gun/energy/disabler = 1,
/obj/item/holosign_creator/security = 1
)
/datum/job/engineering_guard
mail_goodies = list(
/obj/item/food/donut/caramel = 10,
/obj/item/food/donut/matcha = 10,
/obj/item/food/donut/blumpkin = 5,
/obj/item/clothing/mask/whistle = 10,
/obj/item/melee/baton = 5
)
/datum/outfit/job/engineering_guard
head = /obj/item/clothing/head/beret/sec/engineering
r_pocket = /obj/item/reagent_containers/spray/pepper
l_pocket = /obj/item/restraints/handcuffs
backpack_contents = list(
/obj/item/melee/baton/security/loaded/departmental/engineering = 1,
/obj/item/gun/energy/disabler = 1,
/obj/item/holosign_creator/security = 1
)
/datum/job/customs_agent
mail_goodies = list(
/obj/item/food/donut/caramel = 10,
/obj/item/food/donut/matcha = 10,
/obj/item/food/donut/blumpkin = 5,
/obj/item/clothing/mask/whistle = 10,
/obj/item/melee/baton = 5
)
/datum/outfit/job/customs_agent
head = /obj/item/clothing/head/beret/sec/cargo
r_pocket = /obj/item/reagent_containers/spray/pepper
l_pocket = /obj/item/restraints/handcuffs
backpack_contents = list(
/obj/item/melee/baton/security/loaded/departmental/cargo = 1,
/obj/item/gun/energy/disabler = 1,
/obj/item/holosign_creator/security = 1
)
/datum/job/bouncer
mail_goodies = list(
/obj/item/food/donut/caramel = 10,
/obj/item/food/donut/matcha = 10,
/obj/item/food/donut/blumpkin = 5,
/obj/item/clothing/mask/whistle = 10,
/obj/item/melee/baton = 5
)
/datum/outfit/job/bouncer
head = /obj/item/clothing/head/beret/sec/service
suit = /obj/item/clothing/suit/armor/vest/alt
l_pocket = /obj/item/restraints/handcuffs
r_pocket = /obj/item/reagent_containers/spray/pepper
backpack_contents = list(
/obj/item/melee/baton/security/loaded/departmental/service = 1,
/obj/item/gun/energy/disabler = 1,
/obj/item/holosign_creator/security = 1
)
glasses = /obj/item/clothing/glasses/hud/security/sunglasses
+1
View File
@@ -7046,6 +7046,7 @@
#include "modular_skyrat\modules\xenos_skyrat_redo\code\xeno_types\sentinel.dm"
#include "modular_skyrat\modules\xenos_skyrat_redo\code\xeno_types\spitter.dm"
#include "modular_skyrat\modules\xenos_skyrat_redo\code\xeno_types\warrior.dm"
#include "modular_zubbers\code\datums\department_security.dm"
#include "modular_zubbers\code\datums\ert.dm"
#include "modular_zubbers\code\datums\ai_laws\laws_antagonistic.dm"
#include "modular_zubbers\code\datums\bubber_quirks\hydrophilic.dm"