Skip to content

Commit

Permalink
Giving nukies/operatives cyberlinks (#3520)
Browse files Browse the repository at this point in the history
Someone at cybersun seriously missed the memo on the cybernetics software update and had been providing operatives faulty equiptment. They had been dealt with.

Moves antistun, revivers, and antidrops  into boxes with cyberlinks 2.0's in uplinks so they can actually. You know. Function.
  • Loading branch information
Gw0sty authored Sep 24, 2024
1 parent 7fdbbec commit bd05903
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions code/game/objects/items/storage/uplink_kits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -530,6 +530,17 @@
new /obj/item/autosurgeon/organ/cyberlink_syndicate(src)
new /obj/item/autosurgeon/syndicate/laser_arm (src)

/obj/item/storage/box/syndie_kit/nodrop/PopulateContents()
new /obj/item/autosurgeon/organ/cyberlink_nt_high(src)
new /obj/item/autosurgeon/syndicate/nodrop(src)

/obj/item/storage/box/syndie_kit/anti_stun/PopulateContents()
new /obj/item/autosurgeon/organ/cyberlink_nt_high(src)
new /obj/item/autosurgeon/syndicate/anti_stun(src)

/obj/item/storage/box/syndie_kit/reviver/PopulateContents()
new /obj/item/autosurgeon/organ/cyberlink_nt_high(src)
new /obj/item/autosurgeon/syndicate/reviver(src)

/obj/item/storage/box/syndie_kit/centcom_costume/PopulateContents()
new /obj/item/clothing/under/rank/centcom/officer(src)
Expand Down
4 changes: 2 additions & 2 deletions code/modules/uplink/uplink_items/nukeops.dm
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,7 @@
/datum/uplink_item/implants/antistun
name = "CNS Rebooter Implant"
desc = "This implant will help you get back up on your feet faster after being stunned. Comes with an autosurgeon."
item = /obj/item/autosurgeon/syndicate/anti_stun
item = /obj/item/storage/box/syndie_kit/anti_stun
cost = 12
surplus = 40 //monkestation edit: from 0 to 40
purchasable_from = UPLINK_NUKE_OPS
Expand All @@ -735,7 +735,7 @@
/datum/uplink_item/implants/reviver
name = "Reviver Implant"
desc = "This implant will attempt to revive and heal you if you lose consciousness. Comes with an autosurgeon."
item = /obj/item/autosurgeon/syndicate/reviver
item = /obj/item/storage/box/syndie_kit/reviver
cost = 8
surplus = 30 //monkestation edit: from 0 to 30
purchasable_from = UPLINK_NUKE_OPS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@
/datum/armament_entry/assault_operatives/implants/nodrop
name = "Anti-Drop Implant"
description = "When activated forces your hand muscles to tightly grip the object you are holding, preventing you from dropping it involuntarily."
item_type = /obj/item/autosurgeon/syndicate/nodrop
item_type = /obj/item/storage/box/syndie_kit/nodrop
cost = 5
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@
var/list/boxed = list(
/obj/item/autosurgeon/syndicate/thermal_eyes,
/obj/item/autosurgeon/syndicate/xray_eyes,
/obj/item/autosurgeon/syndicate/anti_stun,
/obj/item/autosurgeon/syndicate/reviver)
/obj/item/storage/box/syndie_kit/anti_stun,
/obj/item/storage/box/syndie_kit/reviver)
var/amount = 5

/obj/item/storage/box/cyber_implants/PopulateContents()
Expand Down

0 comments on commit bd05903

Please sign in to comment.