mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-25 22:28:44 +01:00
Fixes #8441. Fixes #8820. Less stacked pipes. Medbay now powers all its shutters. Fixes duplicate req_access definitions.
30 lines
966 B
Plaintext
30 lines
966 B
Plaintext
/obj/structure/closet/secure_closet/hydroponics
|
|
name = "botanist's locker"
|
|
req_access = list(access_hydroponics)
|
|
icon_state = "hydrosecure1"
|
|
icon_closed = "hydrosecure"
|
|
icon_locked = "hydrosecure1"
|
|
icon_opened = "hydrosecureopen"
|
|
icon_broken = "hydrosecurebroken"
|
|
icon_off = "hydrosecureoff"
|
|
|
|
|
|
New()
|
|
..()
|
|
switch(rand(1,2))
|
|
if(1)
|
|
new /obj/item/clothing/suit/apron(src)
|
|
if(2)
|
|
new /obj/item/clothing/suit/apron/overalls(src)
|
|
new /obj/item/weapon/storage/bag/plants(src)
|
|
new /obj/item/clothing/under/rank/hydroponics(src)
|
|
new /obj/item/device/analyzer/plant_analyzer(src)
|
|
new /obj/item/device/radio/headset/headset_service(src)
|
|
new /obj/item/clothing/head/greenbandana(src)
|
|
new /obj/item/weapon/minihoe(src)
|
|
new /obj/item/weapon/hatchet(src)
|
|
new /obj/item/weapon/wirecutters/clippers(src)
|
|
new /obj/item/weapon/reagent_containers/spray/plantbgone(src)
|
|
// new /obj/item/weapon/bee_net(src) //No more bees, March 2014
|
|
return
|