-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3688 from MistakeNot4892/feature/utensils
Reworks utensils.
- Loading branch information
Showing
54 changed files
with
414 additions
and
271 deletions.
There are no files selected for viewing
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
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
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
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
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
28 changes: 18 additions & 10 deletions
28
code/modules/fabrication/designs/micro/designs_cutlery.dm
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 |
---|---|---|
@@ -1,43 +1,51 @@ | ||
/datum/fabricator_recipe/cutlery | ||
name = "fork, aluminium" | ||
path = /obj/item/kitchen/utensil/fork | ||
path = /obj/item/utensil/fork | ||
category = "Cutlery" | ||
fabricator_types = list(FABRICATOR_CLASS_MICRO) | ||
|
||
/datum/fabricator_recipe/cutlery/spoon_aluminium | ||
name = "spoon, aluminium" | ||
path = /obj/item/kitchen/utensil/spoon | ||
path = /obj/item/utensil/spoon | ||
|
||
/datum/fabricator_recipe/cutlery/spork_aluminium | ||
name = "spork, aluminium" | ||
path = /obj/item/kitchen/utensil/spork | ||
path = /obj/item/utensil/spork | ||
|
||
/datum/fabricator_recipe/cutlery/knife_aluminium | ||
name = "table knife, aluminium" | ||
path = /obj/item/knife/table | ||
path = /obj/item/utensil/knife | ||
|
||
/datum/fabricator_recipe/cutlery/chopsticks | ||
name = "chopsticks, aluminium" | ||
path = /obj/item/utensil/chopsticks/aluminium | ||
|
||
/datum/fabricator_recipe/cutlery/foon_aluminium | ||
name = "foon, aluminium" | ||
path = /obj/item/kitchen/utensil/foon | ||
path = /obj/item/utensil/foon | ||
hidden = TRUE | ||
|
||
/datum/fabricator_recipe/cutlery/fork_plastic | ||
name = "fork, plastic" | ||
path = /obj/item/kitchen/utensil/fork/plastic | ||
path = /obj/item/utensil/fork/plastic | ||
|
||
/datum/fabricator_recipe/cutlery/spoon_plastic | ||
name = "spoon, plastic" | ||
path = /obj/item/kitchen/utensil/spoon/plastic | ||
path = /obj/item/utensil/spoon/plastic | ||
|
||
/datum/fabricator_recipe/cutlery/spork_plastic | ||
name = "spork, plastic" | ||
path = /obj/item/kitchen/utensil/spork/plastic | ||
path = /obj/item/utensil/spork/plastic | ||
|
||
/datum/fabricator_recipe/cutlery/knife_plastic | ||
name = "table knife, plastic" | ||
path = /obj/item/knife/table/plastic | ||
path = /obj/item/utensil/knife/plastic | ||
|
||
/datum/fabricator_recipe/cutlery/chopsticks/plastic | ||
name = "chopsticks, plastic" | ||
path = /obj/item/utensil/chopsticks/plastic | ||
|
||
/datum/fabricator_recipe/cutlery/foon_plastic | ||
name = "foon, plastic" | ||
path = /obj/item/kitchen/utensil/foon/plastic | ||
path = /obj/item/utensil/foon/plastic | ||
hidden = TRUE |
Oops, something went wrong.