Standardizes All Janitorial Closet Equipment Across Every Station (#28563)

* Janicart code

* mapping stuff

* e

* Update metastation.dmm

* wags-his-tail

* Update metastation.dmm
This commit is contained in:
CRUNCH
2025-03-20 14:25:10 +00:00
committed by GitHub
parent 7b8926697e
commit 214acd3ed5
8 changed files with 3376 additions and 3060 deletions
@@ -78,17 +78,6 @@
new /obj/item/melee/flyswatter(src)
new /obj/item/soap(src)
new /obj/item/soap(src)
new /obj/item/reagent_containers/spray/cleaner(src)
new /obj/item/caution(src)
new /obj/item/caution(src)
new /obj/item/caution(src)
new /obj/item/caution(src)
new /obj/item/push_broom(src)
new /obj/item/push_broom(src)
new /obj/item/storage/bag/trash(src)
new /obj/item/storage/bag/trash(src)
new /obj/item/lightreplacer(src)
new /obj/item/lightreplacer(src)
new /obj/item/holosign_creator/janitor(src)
new /obj/item/holosign_creator/janitor(src)
new /obj/item/watertank/janitor(src)
@@ -97,6 +86,8 @@
new /obj/item/radio/headset/headset_service(src)
new /obj/item/cartridge/janitor(src)
new /obj/item/cartridge/janitor(src)
new /obj/item/reagent_containers/glass/bucket(src)
new /obj/item/reagent_containers/glass/bucket(src)
//Paramedic
+16
View File
@@ -26,6 +26,22 @@
create_reagents(150)
GLOB.janitorial_equipment += src
/obj/structure/janitorialcart/full
/obj/structure/janitorialcart/full/Initialize(mapload)
. = ..()
my_bag = new /obj/item/storage/bag/trash(src)
my_mop = new /obj/item/mop(src)
my_broom = new /obj/item/push_broom(src)
my_spray = new /obj/item/reagent_containers/spray/cleaner(src)
my_replacer = new /obj/item/lightreplacer(src)
new /obj/item/caution(src)
new /obj/item/caution(src)
new /obj/item/caution(src)
new /obj/item/caution(src)
signs = 4
reagents.add_reagent("water", 150)
/obj/structure/janitorialcart/Destroy()
GLOB.janitorial_equipment -= src
QDEL_NULL(my_bag)