diff --git a/code/modules/surgery/organs/augments_internal.dm b/code/modules/surgery/organs/augments_internal.dm index 114b92f10d..f487e61d38 100644 --- a/code/modules/surgery/organs/augments_internal.dm +++ b/code/modules/surgery/organs/augments_internal.dm @@ -142,22 +142,3 @@ if(prob(60/severity)) to_chat(owner, "Your breathing tube suddenly closes!") owner.losebreath += 2 - -//BOX O' IMPLANTS - -/obj/item/storage/box/cyber_implants - name = "boxed cybernetic implants" - desc = "A sleek, sturdy box." - icon_state = "cyber_implants" - var/list/boxed = list( - /obj/item/autosurgeon/thermal_eyes, - /obj/item/autosurgeon/xray_eyes, - /obj/item/autosurgeon/anti_stun, - /obj/item/autosurgeon/reviver) - var/amount = 5 - -/obj/item/storage/box/cyber_implants/PopulateContents() - var/implant - while(contents.len <= amount) - implant = pick(boxed) - new implant(src) diff --git a/code/modules/surgery/organs/autosurgeon.dm b/code/modules/surgery/organs/autosurgeon.dm index 27bf575627..70959e6253 100644 --- a/code/modules/surgery/organs/autosurgeon.dm +++ b/code/modules/surgery/organs/autosurgeon.dm @@ -103,6 +103,26 @@ /obj/item/autosurgeon/anti_drop starting_organ = /obj/item/organ/cyberimp/brain/anti_drop +//BOX O' IMPLANTS + +/obj/item/storage/box/cyber_implants + name = "boxed cybernetic implants" + desc = "A sleek, sturdy box." + icon_state = "syndiebox" + illustration = "cyber_implants" + var/list/boxed = list( + /obj/item/autosurgeon/thermal_eyes, + /obj/item/autosurgeon/xray_eyes, + /obj/item/autosurgeon/anti_stun, + /obj/item/autosurgeon/reviver) + var/amount = 5 + +/obj/item/storage/box/cyber_implants/PopulateContents() + var/implant + while(contents.len <= amount) + implant = pick(boxed) + new implant(src) + /obj/item/autosurgeon/penis desc = "A single use autosurgeon that contains a penis. A screwdriver can be used to remove it, but implants can't be placed back in." uses = 1 diff --git a/icons/obj/storage.dmi b/icons/obj/storage.dmi index 68bf9bd2bd..fedb6c828e 100644 Binary files a/icons/obj/storage.dmi and b/icons/obj/storage.dmi differ