mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-24 07:37:27 +01:00
f8333a8d93
* move those to static paths * maps * . * . * ugh * .
47 lines
1.7 KiB
Plaintext
47 lines
1.7 KiB
Plaintext
/obj/structure/closet/secure_closet/hydroponics
|
|
name = "botanist's locker"
|
|
req_access = list(ACCESS_HYDROPONICS)
|
|
closet_appearance = /datum/decl/closet_appearance/secure_closet/hydroponics
|
|
|
|
starts_with = list(
|
|
/obj/item/storage/bag/plants,
|
|
/obj/item/clothing/under/rank/hydroponics,
|
|
/obj/item/clothing/gloves/botanic_leather,
|
|
/obj/item/analyzer/plant_analyzer,
|
|
/obj/item/radio/headset/service,
|
|
/obj/item/radio/headset/alt/service,
|
|
/obj/item/radio/headset/earbud/service,
|
|
/obj/item/clothing/head/greenbandana,
|
|
/obj/item/shovel/spade,
|
|
/obj/item/material/minihoe,
|
|
/obj/item/material/knife/machete/hatchet,
|
|
/obj/item/reagent_containers/glass/beaker = 2,
|
|
/obj/item/tool/wirecutters/clippers/trimmers,
|
|
/obj/item/reagent_containers/spray/plantbgone,
|
|
/obj/item/clothing/suit/storage/hooded/wintercoat/hydro,
|
|
/obj/item/clothing/shoes/boots/winter/hydro,
|
|
/obj/item/storage/belt/hydro,
|
|
/obj/item/material/fishing_net/butterfly_net)
|
|
|
|
/obj/structure/closet/secure_closet/hydroponics/Initialize(mapload)
|
|
if(prob(50))
|
|
starts_with += /obj/item/clothing/suit/storage/apron
|
|
else
|
|
starts_with += /obj/item/clothing/suit/storage/apron/overalls
|
|
return ..()
|
|
|
|
/obj/structure/closet/secure_closet/hydroponics/sci
|
|
name = "xenoflorist's locker"
|
|
req_access = list(ACCESS_XENOBIOLOGY)
|
|
closet_appearance = /datum/decl/closet_appearance/secure_closet/hydroponics/xenoflora
|
|
|
|
/obj/structure/closet/secure_closet/hydroponics/sci/Initialize(mapload)
|
|
starts_with += /obj/item/clothing/head/bio_hood/scientist
|
|
starts_with += /obj/item/clothing/suit/bio_suit/scientist
|
|
starts_with += /obj/item/clothing/mask/gas/clear // VOREStation Edit: Gasmasks we use are different
|
|
|
|
if(prob(1))
|
|
starts_with += /obj/item/chainsaw
|
|
|
|
return ..()
|