-
-
Notifications
You must be signed in to change notification settings - Fork 538
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may not be viewable. --> <!-- You can view Contributing.MD for a detailed description of the pull request process. --> ## About The Pull Request Sorts all the crafting recipes into there own category while removing some "cruft" recipes Removes some recipes but some of them are just because they already exist in sheet recipes Look at the last commit for recipes removed Part 1 of Spaceman detribalization because I have to split up this pr or tghvr will behead me <!-- Describe The Pull Request. Please be sure every change is documented or this can delay review and even discourage maintainers from merging your PR! --> ## Why It's Good For The Game Makes it easier to manage recipes and removes some bad ones to clean up the recipe list <!-- Please add a short description of why you think these changes would benefit the game. If you can't justify it in words, it might not be worth adding. --> ## Changelog :cl: del: deleted some bad recipes like a golden horn, black carpet, aitater, and legion staff code: organized recipe files /:cl: <!-- Both :cl:'s are required for the changelog to work! You can put your name to the right of the first :cl: if you want to overwrite your GitHub username as author ingame. --> <!-- You can use multiple of the same prefix (they're only used for the icon ingame) and delete the unneeded ones. Despite some of the tags, changelogs should generally represent how a player might be affected by the changes rather than a summary of the PR's contents. -->
- Loading branch information
1 parent
f41723d
commit 732dab1
Showing
15 changed files
with
922 additions
and
1,263 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/datum/crafting_recipe/umbrellared | ||
name = "Red Drink Umbrella" | ||
result = /obj/item/garnish/umbrellared | ||
time = 1 SECONDS | ||
tools = list(/obj/item/toy/crayon/spraycan) | ||
reqs = list( | ||
/obj/item/paper = 1, | ||
/obj/item/stack/rods = 1) | ||
category = CAT_DRINK | ||
|
||
/datum/crafting_recipe/umbrellablue | ||
name = "Blue Drink Umbrella" | ||
result = /obj/item/garnish/umbrellablue | ||
time = 1 SECONDS | ||
tools = list(/obj/item/toy/crayon/spraycan) | ||
reqs = list( | ||
/obj/item/paper = 1, | ||
/obj/item/stack/rods = 1) | ||
category = CAT_DRINK | ||
|
||
/datum/crafting_recipe/umbrellagreen | ||
name = "Green Drink Umbrella" | ||
result = /obj/item/garnish/umbrellagreen | ||
time = 1 SECONDS | ||
tools = list(/obj/item/toy/crayon/spraycan) | ||
reqs = list( | ||
/obj/item/paper = 1, | ||
/obj/item/stack/rods = 1) | ||
category = CAT_DRINK | ||
|
||
/datum/crafting_recipe/ash_garnish | ||
name = "Ash Garnish" | ||
result = /obj/item/garnish/ash | ||
reqs = list(/datum/reagent/ash = 10) | ||
time = 5 | ||
category = CAT_DRINK | ||
|
||
/datum/crafting_recipe/salt_garnish | ||
name = "Salt Garnish" | ||
result = /obj/item/garnish/salt | ||
reqs = list(/datum/reagent/consumable/sodiumchloride = 10) | ||
time = 5 | ||
category = CAT_DRINK | ||
|
||
/datum/crafting_recipe/breakawayflask | ||
name = "Breakaway Flask" | ||
result = /obj/item/reagent_containers/food/drinks/breakawayflask | ||
time = 5 SECONDS | ||
reqs = list(/obj/item/stack/sheet/glass = 5, | ||
/obj/item/stack/sheet/mineral/plasma = 1) | ||
tools = list(TOOL_WELDER) | ||
category = CAT_DRINK |
Oops, something went wrong.