mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-25 06:00:16 +01:00
[MIRROR] removes the nukie tool parcel [MDB IGNORE] (#23421)
* removes the nukie tool parcel (#77986) ## About The Pull Request removes the tool parcel and places tools directly in their box ## Why It's Good For The Game the step of having to pick up your tools invalidates why we put em there in the first place - so nukies can use them in an emergency. its annoying to put them back in your box. the parcel was added because the tools could make the box go above 7 slots during the extended box station trait, but i fixed that in the pr that made it so that trait increases the box size of that box ## Changelog 🆑 qol: removes the nukie tool parcel and places the tools directly in their box /🆑 * removes the nukie tool parcel --------- Co-authored-by: Fikou <23585223+Fikou@users.noreply.github.com>
This commit is contained in:
@@ -101,29 +101,11 @@
|
||||
|
||||
/obj/item/storage/box/survival/syndie/PopulateContents()
|
||||
..()
|
||||
new /obj/item/tool_parcel(src)
|
||||
new /obj/item/crowbar/red(src)
|
||||
new /obj/item/screwdriver/red(src)
|
||||
new /obj/item/weldingtool/mini(src)
|
||||
new /obj/item/paper/fluff/operative(src)
|
||||
|
||||
/obj/item/tool_parcel
|
||||
name = "operative toolkit care package"
|
||||
desc = "A small parcel. It contains a few items every operative needs."
|
||||
w_class = WEIGHT_CLASS_SMALL
|
||||
icon = 'icons/obj/storage/wrapping.dmi'
|
||||
icon_state = "deliverypackage2"
|
||||
|
||||
/obj/item/tool_parcel/attack_self(mob/user)
|
||||
. = ..()
|
||||
new /obj/item/crowbar/red(get_turf(user))
|
||||
new /obj/item/screwdriver/red(get_turf(user))
|
||||
new /obj/item/weldingtool/mini(get_turf(user))
|
||||
new /obj/effect/decal/cleanable/wrapping(get_turf(user))
|
||||
if(prob(5))
|
||||
new /obj/item/storage/fancy/cigarettes/cigpack_syndicate(get_turf(user))
|
||||
new /obj/item/lighter(get_turf(user))
|
||||
to_chat(user, span_notice("...oh, someone left some cigarettes in here."))
|
||||
playsound(loc, 'sound/items/poster_ripped.ogg', 20, TRUE)
|
||||
qdel(src)
|
||||
|
||||
/obj/item/storage/box/survival/centcom
|
||||
name = "emergency response survival box"
|
||||
desc = "A box with the bare essentials of ensuring the survival of your team. This one is labelled to contain a double tank."
|
||||
|
||||
Reference in New Issue
Block a user