-
Notifications
You must be signed in to change notification settings - Fork 496
[COMMISSION] [PORT] ports yogs improvised engineering tools #12226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,48 @@ | ||||||||||||||||||||||
| /datum/crafting_recipe/makeshiftcrowbar | ||||||||||||||||||||||
| name = "Makeshift Crowbar" | ||||||||||||||||||||||
| reqs = list(/obj/item/stack/rods = 3) //just bang them together | ||||||||||||||||||||||
| result = /obj/item/crowbar/makeshift | ||||||||||||||||||||||
| time = 6 SECONDS | ||||||||||||||||||||||
| category = CAT_TOOLS | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| /datum/crafting_recipe/makeshiftwrench | ||||||||||||||||||||||
| name = "Makeshift Wrench" | ||||||||||||||||||||||
| reqs = list(/obj/item/stack/sheet/iron = 2) | ||||||||||||||||||||||
| result = /obj/item/wrench/makeshift | ||||||||||||||||||||||
| time = 6 SECONDS | ||||||||||||||||||||||
| category = CAT_TOOLS | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| /datum/crafting_recipe/makeshiftwirecutters | ||||||||||||||||||||||
| name = "Makeshift Wirecutters" | ||||||||||||||||||||||
| reqs = list(/obj/item/stack/sheet/iron = 2, | ||||||||||||||||||||||
| /obj/item/stack/rods = 2) | ||||||||||||||||||||||
|
Comment on lines
+17
to
+18
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||
| result = /obj/item/wirecutters/makeshift | ||||||||||||||||||||||
| time = 8 SECONDS | ||||||||||||||||||||||
| category = CAT_TOOLS | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| /datum/crafting_recipe/makeshiftweldingtool | ||||||||||||||||||||||
| name = "Makeshift Welding Tool" | ||||||||||||||||||||||
| reqs = list(/obj/item/tank/internals/emergency_oxygen = 1, | ||||||||||||||||||||||
| /obj/item/assembly/igniter = 1) | ||||||||||||||||||||||
|
Comment on lines
+25
to
+26
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||
| tool_behaviors = list(TOOL_SCREWDRIVER) | ||||||||||||||||||||||
| result = /obj/item/weldingtool/makeshift | ||||||||||||||||||||||
| time = 8 SECONDS | ||||||||||||||||||||||
| category = CAT_TOOLS | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| /datum/crafting_recipe/makeshiftmultitool | ||||||||||||||||||||||
| name = "Makeshift Multitool" | ||||||||||||||||||||||
| reqs = list(/obj/item/assembly/igniter = 1, | ||||||||||||||||||||||
| /obj/item/assembly/signaler = 1, | ||||||||||||||||||||||
| /obj/item/stack/sheet/iron = 2, | ||||||||||||||||||||||
| /obj/item/stack/cable_coil = 10) | ||||||||||||||||||||||
|
Comment on lines
+34
to
+37
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||
| tool_behaviors = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) | ||||||||||||||||||||||
| result = /obj/item/multitool/makeshift | ||||||||||||||||||||||
| time = 8 SECONDS | ||||||||||||||||||||||
| category = CAT_TOOLS | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| /datum/crafting_recipe/makeshiftscrewdriver | ||||||||||||||||||||||
| name = "Makeshift Screwdriver" | ||||||||||||||||||||||
| reqs = list(/obj/item/stack/rods = 3) | ||||||||||||||||||||||
| result = /obj/item/screwdriver/makeshift | ||||||||||||||||||||||
| time = 6 SECONDS | ||||||||||||||||||||||
| category = CAT_TOOLS | ||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -318,6 +318,13 @@ | |
| icon_state = "toolkit_engiborg_multitool" | ||
| toolspeed = 0.5 | ||
|
|
||
| /obj/item/multitool/makeshift | ||
| name = "makeshift multitool" | ||
| desc = "As crappy as it is, its still mostly the same as a standard issue Nanotrasen one." | ||
| icon = 'icons/obj/improvised.dmi' | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. use tools.dmi |
||
| icon_state = "multitool_makeshift" | ||
| toolspeed = 2 | ||
|
|
||
| //Tricorder | ||
| //The tricorder is a child of a multitool, atmosanalyzer and health scaner | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Costs are weird, showing with rod costs
crowbar 3 rods
wrench 4 rods
wire cutters 6 rods
multi tool 4 rods