mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-28 23:26:43 +01:00
Marks the 357 speed loader as non-illegal-tech to prevent an exploit with the research techweb.
18 lines
509 B
Plaintext
18 lines
509 B
Plaintext
/datum/uplink_item
|
|
var/surplus_nullcrates //Chance of being included in null crates. null = pull from surplus
|
|
|
|
/datum/uplink_item/New()
|
|
if(isnull(surplus_nullcrates))
|
|
surplus_nullcrates = surplus
|
|
. = ..()
|
|
|
|
/datum/uplink_item/device_tools/arm
|
|
name = "Additional Arm"
|
|
desc = "An additional arm harvested from slaves captured by the Syndicate. Comes with an implanter."
|
|
item = /obj/item/extra_arm
|
|
cost = 8
|
|
|
|
// Made craftable, and no longer illegal
|
|
/datum/uplink_item/ammo/revolver
|
|
illegal_tech = FALSE
|