forked from SPLURT-Station/S.P.L.U.R.T-Station-13
-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
56 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/obj/machinery/pdapainter | ||
circuit = /obj/item/circuitboard/machine/pdapainter | ||
|
||
/obj/machinery/pdapainter/crowbar_act(mob/living/user, obj/item/tool) | ||
if(!default_deconstruction_crowbar(tool, TRUE)) | ||
return | ||
return TOOL_ACT_TOOLTYPE_SUCCESS |
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,7 @@ | ||
/obj/machinery/aug_manipulator | ||
circuit = /obj/item/circuitboard/machine/aug_manipulator | ||
|
||
/obj/machinery/aug_manipulator/crowbar_act(mob/living/user, obj/item/tool) | ||
if(!default_deconstruction_crowbar(tool, TRUE)) | ||
return | ||
return TOOL_ACT_TOOLTYPE_SUCCESS |
19 changes: 19 additions & 0 deletions
19
modular_bluemoon/code/game/objects/items/circuitboards/machine_circuitboards.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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/obj/item/circuitboard/machine/pdapainter | ||
name = "PDA painter (Machine Board)" | ||
icon_state = "service" | ||
build_path = /obj/machinery/pdapainter | ||
req_components = list( | ||
/obj/item/stock_parts/micro_laser = 1, | ||
/obj/item/stack/cable_coil = 2, | ||
/obj/item/stack/sheet/glass = 2) | ||
needs_anchored = FALSE | ||
|
||
/obj/item/circuitboard/machine/aug_manipulator | ||
name = "Augment manipulator (Machine Board)" | ||
icon_state = "science" | ||
build_path = /obj/machinery/aug_manipulator | ||
req_components = list( | ||
/obj/item/stock_parts/micro_laser = 1, | ||
/obj/item/stack/cable_coil = 2, | ||
/obj/item/stack/sheet/glass = 2) | ||
needs_anchored = FALSE |
15 changes: 15 additions & 0 deletions
15
modular_bluemoon/code/modules/research/designs/machine_desings/machine_designs_all_misc.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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/datum/design/board/pdapainter | ||
name = "Machine Design (PDA painter Board)" | ||
desc = "The circuit board for an PDA painter." | ||
id = "pdapainter" | ||
build_path = /obj/item/circuitboard/machine/pdapainter | ||
category = list ("Misc. Machinery") | ||
departmental_flags = DEPARTMENTAL_FLAG_SERVICE | ||
|
||
/datum/design/board/aug_manipulator | ||
name = "Machine Design (Augment manipulator Board)" | ||
desc = "The circuit board for a augment manipulator." | ||
id = "aug_manipulator" | ||
build_path = /obj/item/circuitboard/machine/aug_manipulator | ||
category = list ("Misc. Machinery") | ||
departmental_flags = DEPARTMENTAL_FLAG_SCIENCE |
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