diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm index a0a0e16199f..5bb7735bbc1 100644 --- a/code/game/objects/items/storage/belt.dm +++ b/code/game/objects/items/storage/belt.dm @@ -183,6 +183,7 @@ /obj/item/clothing/mask/breath/medical, /obj/item/surgical_drapes, //for true paramedics /obj/item/clothing/suit/toggle/labcoat/hospitalgown, //SKYRAT EDIT ADDITION - adds surgery gowns to belts + /obj/item/medicell, //SKYRAT EDIT MEDIGUNS /obj/item/scalpel, /obj/item/circular_saw, /obj/item/bonesetter, diff --git a/code/modules/clothing/spacesuits/hardsuit.dm b/code/modules/clothing/spacesuits/hardsuit.dm index 4d6f016cd81..ba169307d32 100644 --- a/code/modules/clothing/spacesuits/hardsuit.dm +++ b/code/modules/clothing/spacesuits/hardsuit.dm @@ -113,7 +113,7 @@ var/helmettype = /obj/item/clothing/head/helmet/space/hardsuit var/obj/item/tank/jetpack/suit/jetpack = null var/hardsuit_type - + var/list/hardsuit_tail_colors //SKYRAT EDIT ADDITION - CUSTOMIZATION /obj/item/clothing/suit/space/hardsuit/Initialize() @@ -543,7 +543,7 @@ desc = "A special suit that protects against hazardous, low pressure environments. Built with lightweight materials for easier movement." icon_state = "hardsuit-medical" inhand_icon_state = "medical_hardsuit" - allowed = list(/obj/item/flashlight, /obj/item/tank/internals, /obj/item/storage/firstaid, /obj/item/healthanalyzer, /obj/item/stack/medical) + allowed = list(/obj/item/flashlight, /obj/item/tank/internals, /obj/item/storage/firstaid, /obj/item/healthanalyzer, /obj/item/stack/medical, /obj/item/gun/energy/medigun) //EDIT MEDIGUNS armor = list(MELEE = 30, BULLET = 5, LASER = 10, ENERGY = 20, BOMB = 10, BIO = 100, RAD = 60, FIRE = 60, ACID = 75, WOUND = 10) helmettype = /obj/item/clothing/head/helmet/space/hardsuit/medical slowdown = 0.5 diff --git a/code/modules/clothing/suits/labcoat.dm b/code/modules/clothing/suits/labcoat.dm index e754386cf8f..e6f7e164f51 100644 --- a/code/modules/clothing/suits/labcoat.dm +++ b/code/modules/clothing/suits/labcoat.dm @@ -39,6 +39,7 @@ . = ..() allowed += list( /obj/item/melee/classic_baton/telescopic, + /obj/item/gun/energy/medigun, //SKYRAT EDIT MEDIGUNS /obj/item/storage/firstaid //SKYRAT EDIT - ADDITION ) diff --git a/code/modules/clothing/suits/wintercoats.dm b/code/modules/clothing/suits/wintercoats.dm index 00035f8544e..707d2417cf4 100644 --- a/code/modules/clothing/suits/wintercoats.dm +++ b/code/modules/clothing/suits/wintercoats.dm @@ -207,6 +207,7 @@ . = ..() allowed += list( /obj/item/melee/classic_baton/telescopic, + /obj/item/gun/energy/medigun, //SKYRAT EDIT MEDIGUNS ) /obj/item/clothing/head/hooded/winterhood/medical/cmo