[MIRROR] Bluespace Launchpads (#879)
* Bluespace Launchpads * Delete runtimestation.dmm.rej * Delete tgstation.dme.rej * Delete tgui.js.rej * Update tgui.js
This commit is contained in:
committed by
Poojawa
parent
30e18146e5
commit
6a2916a171
@@ -90,6 +90,22 @@
|
||||
build_path = /obj/item/weapon/circuitboard/machine/quantumpad
|
||||
category = list ("Teleportation Machinery")
|
||||
|
||||
/datum/design/board/launchpad
|
||||
name = "Machine Design (Bluespace Launchpad Board)"
|
||||
desc = "The circuit board for a bluespace Launchpad."
|
||||
id = "launchpad"
|
||||
req_tech = list("programming" = 3, "bluespace" = 3, "plasmatech" = 2, "engineering" = 3)
|
||||
build_path = /obj/item/weapon/circuitboard/machine/launchpad
|
||||
category = list ("Teleportation Machinery")
|
||||
|
||||
/datum/design/board/launchpad_console
|
||||
name = "Machine Design (Bluespace Launchpad Console Board)"
|
||||
desc = "The circuit board for a bluespace launchpad Console."
|
||||
id = "launchpad_console"
|
||||
req_tech = list("programming" = 4, "bluespace" = 3, "plasmatech" = 3)
|
||||
build_path = /obj/item/weapon/circuitboard/computer/launchpad_console
|
||||
category = list ("Teleportation Machinery")
|
||||
|
||||
/*/datum/design/board/telepad
|
||||
name = "Machine Design (Telepad Board)"
|
||||
desc = "The circuit board for a telescience telepad."
|
||||
|
||||
@@ -969,6 +969,24 @@ GLOBAL_LIST_EMPTY(uplink_items) // Global list so we only initialize this once.
|
||||
item = /obj/item/weapon/aiModule/syndicate
|
||||
cost = 14
|
||||
|
||||
/datum/uplink_item/device_tools/briefcase_launchpad
|
||||
name = "Briefcase Launchpad"
|
||||
desc = "A briefcase containing a launchpad, a device able to teleport items and people to and from targets up to three tiles away from the briefcase. \
|
||||
Also includes a remote control. Touch the briefcase with the remote to link it."
|
||||
surplus = 0
|
||||
item = /obj/item/briefcase_launchpad
|
||||
cost = 6
|
||||
|
||||
/datum/uplink_item/device_tools/briefcase_launchpad/buy(mob/user, obj/item/device/uplink/U)
|
||||
var/obj/item/device/launchpad_remote/L = new(get_turf(user)) //free remote
|
||||
if(ishuman(user))
|
||||
var/mob/living/carbon/human/H = user
|
||||
if(H.put_in_hands(L))
|
||||
to_chat(H, "[L] materializes into your hands!")
|
||||
else
|
||||
to_chat(H, "\The [L] materializes onto the floor.")
|
||||
return ..()
|
||||
|
||||
/datum/uplink_item/device_tools/magboots
|
||||
name = "Blood-Red Magboots"
|
||||
desc = "A pair of magnetic boots with a Syndicate paintjob that assist with freer movement in space or on-station \
|
||||
|
||||
Reference in New Issue
Block a user