Skip to content

Commit

Permalink
Making robotic surgery steps more transparent (#3385)
Browse files Browse the repository at this point in the history
Brings IPC surgery steps more in line with normal surgery steps by adding what tool you need to use in parathesis. 

I sure didn't know what "Add plating" meant before looking at this code let me tell you.)
  • Loading branch information
Gw0sty authored Sep 13, 2024
1 parent 757f16d commit cf10748
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions monkestation/code/modules/smithing/ipcs/surgeries/steps.dm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//cut wires
/datum/surgery_step/cut_wires
name = "cut wires"
name = "cut wires (wirecutter)"
implements = list(
TOOL_WIRECUTTER = 100,
TOOL_SCALPEL = 75,
Expand All @@ -25,7 +25,7 @@

//pry off plating
/datum/surgery_step/pry_off_plating
name = "pry off plating"
name = "pry off plating (crowbar)"
implements = list(
TOOL_CROWBAR = 100,
TOOL_HEMOSTAT = 10,
Expand All @@ -47,7 +47,7 @@

//weld plating
/datum/surgery_step/weld_plating
name = "weld plating"
name = "weld plating (welder)"
implements = list(
TOOL_WELDER = 100,
)
Expand All @@ -69,7 +69,7 @@

//replace wires
/datum/surgery_step/replace_wires
name = "replace wires"
name = "replace wires (coil)"
implements = list(/obj/item/stack/cable_coil = 100)
time = 2.4 SECONDS
var/cableamount = 5
Expand Down Expand Up @@ -98,7 +98,7 @@

//add plating
/datum/surgery_step/add_plating
name = "add plating"
name = "add plating (iron sheets)"
implements = list(/obj/item/stack/sheet/iron = 100)
time = 2.4 SECONDS
var/ironamount = 5
Expand Down

0 comments on commit cf10748

Please sign in to comment.