Trashpile Expansion (#19607)

* Some expansion

* fix
This commit is contained in:
Cameron Lennox
2026-07-17 06:56:42 -04:00
committed by GitHub
parent 613a250bda
commit e1ad4e7eb2
5 changed files with 55 additions and 26 deletions
@@ -512,6 +512,14 @@
user.visible_message(span_notice("[user] cracks and shakes \the [name]."), span_notice("You crack and shake \the [src], turning it on!"))
START_PROCESSING(SSobj, src)
/obj/item/flashlight/glowstick/random
/obj/item/flashlight/glowstick/random/Initialize(mapload)
. = ..()
var/stick_to_pick = pick(typesof(/obj/item/flashlight/glowstick) - /obj/item/flashlight/glowstick/random)
new stick_to_pick(loc)
return INITIALIZE_HINT_QDEL
/obj/item/flashlight/glowstick/red
name = "red glowstick"
desc = "A red military-grade chemical light."
+8
View File
@@ -13,6 +13,14 @@
throw_range = 14
w_class = ITEMSIZE_SMALL
/obj/item/toy/tennis/random
/obj/item/toy/tennis/random/Initialize(mapload)
. = ..()
var/ball_to_pick = pick(subtypesof(/obj/item/toy/tennis) - /obj/item/toy/tennis/random)
new ball_to_pick(loc)
return INITIALIZE_HINT_QDEL
/obj/item/toy/tennis/red
name = "red tennis ball"
desc = "A red tennis ball. It goes twice as fast!"
@@ -205,6 +205,15 @@ Protectiveness | Armor %
desc = "This appears to be two 'sheets' of a material held together by cable. If the sheets are strong, this could be rather protective."
icon_state = "material_armor_makeshift"
/obj/item/clothing/suit/armor/material/makeshift/random
/obj/item/clothing/suit/armor/material/makeshift/random/Initialize(mapload)
. = ..()
var/armor_to_pick = pick(subtypesof(/obj/item/clothing/suit/armor/material/makeshift) - /obj/item/clothing/suit/armor/material/makeshift/random)
new armor_to_pick(loc)
return INITIALIZE_HINT_QDEL
/obj/item/clothing/accessory/material/makeshift/light //Craftable with 4 material sheets, less slowdown, less armour
name = "light armor plate"
desc = "A thin plate of padded material, designed to fit into a plate carrier. Attaches to a plate carrier."