forked from BoHBranch/BoH-Bay
-
Notifications
You must be signed in to change notification settings - Fork 0
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 BoHBranch#1473 from Tennessee116/10sc-floormachines
Holopads have better examine() and are now constructable
- Loading branch information
Showing
11 changed files
with
134 additions
and
29 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
11 changes: 11 additions & 0 deletions
11
code/game/machinery/_machines_base/machine_construction/floor.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,11 @@ | ||
//Same as default but with but with floor boards (get it?) | ||
/decl/machine_construction/default/panel_closed/floor | ||
down_state = /decl/machine_construction/default/panel_open/floor | ||
needs_board = "floor" | ||
|
||
/decl/machine_construction/default/panel_closed/floor/no_deconstruct/attackby(obj/item/I, mob/user, obj/machinery/machine) | ||
return FALSE | ||
|
||
/decl/machine_construction/default/panel_open/floor | ||
up_state = /decl/machine_construction/default/panel_closed/floor | ||
needs_board = "floor" |
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
32 changes: 32 additions & 0 deletions
32
code/game/objects/items/weapons/circuitboards/machinery/holopad.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,32 @@ | ||
//Holopads are now deconstructable and reconstructable and constructable, cry about it | ||
/obj/item/weapon/stock_parts/circuitboard/holopad | ||
name = T_BOARD("holopad") | ||
build_path = /obj/machinery/hologram/holopad | ||
board_type = "floor" | ||
|
||
origin_tech = list( | ||
TECH_DATA = 2, | ||
TECH_MAGNET = 2 | ||
) | ||
|
||
req_components = list( | ||
/obj/item/weapon/stock_parts/micro_laser = 1, | ||
/obj/item/weapon/stock_parts/scanning_module = 1, | ||
/obj/item/weapon/stock_parts/keyboard = 1 | ||
) | ||
|
||
//Bluespace because why not | ||
/obj/item/weapon/stock_parts/circuitboard/holopad/longrange | ||
name = T_BOARD("long range holopad") | ||
build_path = /obj/machinery/hologram/holopad/longrange | ||
|
||
origin_tech = list( | ||
TECH_BLUESPACE = 2, | ||
TECH_DATA = 2, | ||
TECH_MAGNET = 2 | ||
) | ||
|
||
//For overmap vessels | ||
/obj/item/weapon/stock_parts/circuitboard/holopad/longrange/remoteship | ||
name = T_BOARD("encrypted long range holopad") | ||
build_path = /obj/machinery/hologram/holopad/longrange/remoteship |
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
Binary file not shown.
Binary file not shown.