mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
Janitorial equipment tweaks and cleaners availability (#20037)
* Janitorial equipment tweaks and advanced cleaner * cleaner availability tweaks * old cleaner for drones * Mop capacity buff * advanced cleaner for sol traders * conflict part 1 * Merge branch 'master' into janitorial_tweaks * Revert "Merge branch 'master' into janitorial_tweaks" This reverts commit47129ea819. * Revert "Revert "Merge branch 'master' into janitorial_tweaks"" This reverts commita8c520b069. * hahahahaha * hahaha part 2 * hahaha part 3 * cerestation edit * adv cleaner comes with 500 now and ERT belt * lube spray upper case and moving it to spray.dm
This commit is contained in:
@@ -200,7 +200,7 @@
|
||||
/obj/item/storage/belt/utility/full/multitool = 150,
|
||||
/obj/item/clothing/gloves/combat = 100,
|
||||
/obj/item/clothing/glasses/welding = 50,
|
||||
/obj/item/reagent_containers/spray/cleaner = 100,
|
||||
/obj/item/reagent_containers/spray/cleaner/advanced = 100,
|
||||
/obj/item/clothing/shoes/magboots = 50,
|
||||
/obj/item/soap = 50,
|
||||
/obj/item/clothing/under/syndicate/combat = 50,
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
resistance_flags = FLAMMABLE
|
||||
var/mopping = 0
|
||||
var/mopcount = 0
|
||||
var/mopcap = 5
|
||||
var/mopcap = 6
|
||||
var/mopspeed = 30
|
||||
|
||||
/obj/item/mop/New()
|
||||
@@ -33,7 +33,7 @@
|
||||
janicart_insert(user, o)
|
||||
return
|
||||
|
||||
o.reagents.trans_to(src, 5)
|
||||
o.reagents.trans_to(src, 6)
|
||||
to_chat(user, "<span class='notice'>You wet [src] in [o].</span>")
|
||||
playsound(loc, 'sound/effects/slosh.ogg', 25, 1)
|
||||
|
||||
|
||||
@@ -444,7 +444,7 @@
|
||||
/obj/item/storage/belt/janitor/full/populate_contents()
|
||||
new /obj/item/lightreplacer(src)
|
||||
new /obj/item/holosign_creator/janitor(src)
|
||||
new /obj/item/reagent_containers/spray/cleaner(src)
|
||||
new /obj/item/reagent_containers/spray/cleaner/advanced(src)
|
||||
new /obj/item/soap(src)
|
||||
new /obj/item/grenade/chem_grenade/cleaner(src)
|
||||
new /obj/item/grenade/chem_grenade/cleaner(src)
|
||||
|
||||
@@ -182,15 +182,18 @@
|
||||
icon = 'icons/obj/watertank.dmi'
|
||||
icon_state = "misterjani"
|
||||
item_state = "misterjani"
|
||||
amount_per_transfer_from_this = 5
|
||||
spray_maxrange = 4
|
||||
spray_currentrange = 4
|
||||
amount_per_transfer_from_this = 10
|
||||
possible_transfer_amounts = null
|
||||
|
||||
/obj/item/watertank/janitor/make_noz()
|
||||
return new /obj/item/reagent_containers/spray/mister/janitor(src)
|
||||
|
||||
/obj/item/reagent_containers/spray/mister/janitor/attack_self(mob/user)
|
||||
amount_per_transfer_from_this = (amount_per_transfer_from_this == 10 ? 5 : 10)
|
||||
to_chat(user, "<span class='notice'>You [amount_per_transfer_from_this == 10 ? "remove" : "fix"] the nozzle. You'll now use [amount_per_transfer_from_this] units per spray.</span>")
|
||||
amount_per_transfer_from_this = (amount_per_transfer_from_this == 5 ? 10 : 5)
|
||||
spray_currentrange = (spray_currentrange == 2 ? spray_maxrange : 2)
|
||||
to_chat(user, "<span class='notice'>You [amount_per_transfer_from_this == 5 ? "remove" : "fix"] the nozzle. You'll now use [amount_per_transfer_from_this] units per spray.</span>")
|
||||
|
||||
//ATMOS FIRE FIGHTING BACKPACK
|
||||
|
||||
|
||||
Reference in New Issue
Block a user