mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 21:18:37 +01:00
## About The Pull Request Adds a new category to the crafting menu allowing anyone to create previously uncraftable flora objects to decorate their bar/chapel/maintroom creations such as flowers, bushes, ferns and tall grass. ## Why It's Good For The Game Several times have the admins been asked to spawn such decorations in the past, as it stands the only way to be able to get these objects for you builds is for them to be pre-existing in the map and for you to painstakingly dig them up one by one, move them and replant them where you need them. This PR aims to make these great decorations available to everyone, letting them create beautiful lush gardens anywhere with only some minimal botany tools and plants required. It will also incentivize interacting with hydroponics more, as there will be people asking for grass and wood. (also adds a use to tower cap longs before you turn them into sheet wood) ## Proof Of Testing I compiled the code and the crafting tab shows up as it should and everything within is craftable.  ## Changelog 🆑 add: Added new Gardening Tab in the Crafting Menu add: New recipes for various existing Flowers/Bushes /🆑
46 lines
692 B
Plaintext
46 lines
692 B
Plaintext
GLOBAL_LIST_INIT(crafting_category_food, list(
|
|
CAT_FOOD,
|
|
CAT_BREAD,
|
|
CAT_BURGER,
|
|
CAT_CAKE,
|
|
CAT_EGG,
|
|
CAT_LIZARD,
|
|
CAT_MEAT,
|
|
CAT_SEAFOOD,
|
|
CAT_MARTIAN,
|
|
CAT_MISCFOOD,
|
|
CAT_MEXICAN,
|
|
CAT_MOTH,
|
|
CAT_PASTRY,
|
|
CAT_PIE,
|
|
CAT_PIZZA,
|
|
CAT_SALAD,
|
|
CAT_SANDWICH,
|
|
CAT_SOUP,
|
|
CAT_SPAGHETTI,
|
|
CAT_ICE,
|
|
CAT_DRINK,
|
|
))
|
|
|
|
GLOBAL_LIST_INIT(crafting_category, list(
|
|
CAT_WEAPON_RANGED,
|
|
CAT_WEAPON_MELEE,
|
|
CAT_WEAPON_AMMO,
|
|
CAT_ROBOT,
|
|
CAT_MISC,
|
|
CAT_CLOTHING,
|
|
CAT_CHEMISTRY,
|
|
CAT_ATMOSPHERIC,
|
|
CAT_STRUCTURE,
|
|
CAT_TILES,
|
|
CAT_WINDOWS,
|
|
CAT_DOORS,
|
|
CAT_FURNITURE,
|
|
CAT_EQUIPMENT,
|
|
CAT_CONTAINERS,
|
|
CAT_ENTERTAINMENT,
|
|
CAT_TOOLS,
|
|
CAT_CULT,
|
|
CAT_GARDENING, // BUBBER EDIT ADDITION - Gardening Category
|
|
))
|