mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-24 00:51:26 +00:00
The great hydroponics belt (#6347)
REASON I bloody hate how I have to throw all my crap into my backpack and I don't have a belt that can store my crap onto my belt slot. This aims to have a hydroponics belt be added via the lockers and bio-thingy. Also, it'll add a belt that defines hydroponics, and has a few things added to it so it gives you a reason to use it instead of the regular utility belt. Also, I'm removing the chemical-grenade restriction to cleaning from the janitor belt. Now it can hold all grenades, same with this new belt.
This commit is contained in:
@@ -133,6 +133,14 @@
|
||||
cost = 300,
|
||||
amount = list(1,2,3,4,5),
|
||||
emag = 0
|
||||
),
|
||||
"hydrobelt" = list(
|
||||
name = "Hydroponic Belt",
|
||||
class = "Items",
|
||||
object = /obj/item/weapon/storage/belt/hydro,
|
||||
cost = 300,
|
||||
amount = list(1,2,3,4,5),
|
||||
emag = 0
|
||||
),
|
||||
"wallet" = list(
|
||||
name = "Leather Wallet",
|
||||
|
||||
@@ -233,7 +233,7 @@
|
||||
w_class = 3
|
||||
max_w_class = 3
|
||||
can_hold = list(
|
||||
/obj/item/weapon/grenade/chem_grenade/cleaner,
|
||||
/obj/item/weapon/grenade/chem_grenade, //if I'm going to be doing a full allowance on one belt, I need to do the other.
|
||||
/obj/item/device/lightreplacer,
|
||||
/obj/item/device/flashlight,
|
||||
/obj/item/weapon/reagent_containers/spray,
|
||||
@@ -313,6 +313,43 @@
|
||||
/obj/item/weapon/gun/custom_ka
|
||||
)
|
||||
|
||||
/obj/item/weapon/storage/belt/hydro
|
||||
name = "hydrobelt"
|
||||
desc = "A utility belt to store and provide easy access to your floral utilities."
|
||||
icon_state = "growbelt"
|
||||
item_state = "growbelt"
|
||||
storage_slots = 9
|
||||
w_class = 3
|
||||
max_w_class = 4
|
||||
can_hold = list(
|
||||
/obj/item/weapon/reagent_containers/glass,
|
||||
/obj/item/weapon/grenade/chem_grenade, //weed killer grenades mostly, or water-pottassium if you grow the bannanas!
|
||||
/obj/item/weapon/bee_smoker, //will this ever get used? Probally not.
|
||||
/obj/item/weapon/plantspray/pests,
|
||||
/obj/item/weapon/storage/bag/plants,
|
||||
/obj/item/weapon/reagent_containers/food/snacks/grown,
|
||||
/obj/item/seeds,
|
||||
/obj/item/weapon/grown,
|
||||
/obj/item/weapon/material/minihoe,
|
||||
/obj/item/weapon/material/hatchet,
|
||||
/obj/item/weapon/wirecutters,
|
||||
/obj/item/weapon/reagent_containers/spray, //includes if you ever wish to get a spraybottle full of other chemicals, Like water
|
||||
/obj/item/device/analyzer/plant_analyzer,
|
||||
/obj/item/clothing/gloves/botanic_leather,
|
||||
)
|
||||
|
||||
/obj/item/weapon/storage/belt/hydro/full/fill()
|
||||
..()
|
||||
new /obj/item/weapon/plantspray/pests(src)
|
||||
new /obj/item/weapon/material/minihoe(src)
|
||||
new /obj/item/weapon/storage/bag/plants(src)
|
||||
new /obj/item/clothing/gloves/botanic_leather(src)
|
||||
new /obj/item/device/analyzer/plant_analyzer(src)
|
||||
new /obj/item/weapon/material/hatchet(src)
|
||||
new /obj/item/weapon/reagent_containers/glass/fertilizer/rh(src)
|
||||
new /obj/item/weapon/reagent_containers/spray/plantbgone(src)
|
||||
new /obj/item/weapon/wirecutters/clippers(src)
|
||||
|
||||
/obj/item/weapon/storage/belt/bandolier
|
||||
name = "bandolier"
|
||||
desc = "A pocketed belt designated to hold shotgun shells."
|
||||
@@ -373,4 +410,4 @@
|
||||
/obj/item/weapon/storage/belt/fannypack/yellow
|
||||
name = "yellow fannypack"
|
||||
icon_state = "fannypack_yellow"
|
||||
item_state = "fannypack_yellow"
|
||||
item_state = "fannypack_yellow"
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
new /obj/item/weapon/material/hatchet(src)
|
||||
new /obj/item/weapon/wirecutters/clippers(src)
|
||||
new /obj/item/weapon/reagent_containers/spray/plantbgone(src)
|
||||
new /obj/item/weapon/storage/belt/hydro(src)
|
||||
// new /obj/item/weapon/bee_net(src) //No more bees, March 2014
|
||||
|
||||
/obj/structure/closet/secure_closet/xenobotany
|
||||
@@ -54,3 +55,4 @@
|
||||
new /obj/item/weapon/reagent_containers/spray/plantbgone(src)
|
||||
new /obj/item/clothing/mask/gas/alt(src)
|
||||
new /obj/item/watertank(src)
|
||||
new /obj/item/weapon/storage/belt/hydro(src)
|
||||
|
||||
7
html/changelogs/belt-shit.yml
Normal file
7
html/changelogs/belt-shit.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
author: SonicGotNuked
|
||||
|
||||
delete-after: True
|
||||
|
||||
changes:
|
||||
- rscadd: "Adds a new hydroponics belt to store and easily access your floral utilities."
|
||||
- balance: "Removes the cleaning chemgrenade restriction on the janitor belt, now janitor belts can store all the chemical grenades. Don't make me regret this."
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.2 KiB |
Reference in New Issue
Block a user