mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-20 19:44:09 +01:00
Tweak: NT Merch vendor can now be moved and adds it's circuit board to the Circuit Imprinter. (#27374)
* NT Merch vendor can now be moved * Made the NT Merch vendor board printable in the Circuit Imprinter
This commit is contained in:
@@ -1146,6 +1146,7 @@ to destroy them and players will be able to make replacements.
|
||||
icon_state = "generic"
|
||||
build_path = /obj/machinery/economy/merch
|
||||
board_type = "machine"
|
||||
origin_tech = "programming=1"
|
||||
req_components = list(
|
||||
/obj/item/stock_parts/matter_bin = 1,
|
||||
/obj/item/stack/cable_coil = 1)
|
||||
|
||||
@@ -41,6 +41,12 @@
|
||||
|
||||
return ..()
|
||||
|
||||
/obj/machinery/economy/merch/wrench_act(mob/user, obj/item/I)
|
||||
. = TRUE
|
||||
if(!I.use_tool(src, user, 0, volume = 0))
|
||||
return
|
||||
default_unfasten_wrench(user, I, time = 6 SECONDS)
|
||||
|
||||
/obj/machinery/economy/merch/proc/do_purchase(datum/merch_item/merch, mob/user)
|
||||
if(!merch)
|
||||
return FALSE
|
||||
|
||||
@@ -601,3 +601,13 @@
|
||||
materials = list(MAT_GLASS = 1000)
|
||||
build_path = /obj/item/circuitboard/bottler
|
||||
category = list("Misc. Machinery")
|
||||
|
||||
/datum/design/merch
|
||||
name = "Machine Design (Nanotrasen Merch Board)"
|
||||
desc = "The circuit board for an NT Merch vendor."
|
||||
id = "merch"
|
||||
req_tech = list("programming" = 1)
|
||||
build_type = IMPRINTER
|
||||
materials = list(MAT_GLASS = 1000)
|
||||
build_path = /obj/item/circuitboard/merch
|
||||
category = list("Misc. Machinery")
|
||||
|
||||
Reference in New Issue
Block a user