Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes Nuclear and Assaults operatives having no cyberlink for their cybernetics #3520

Merged
merged 1 commit into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading