diff --git a/nsv13.dme b/nsv13.dme index e2c1e332737..b2e103f323c 100644 --- a/nsv13.dme +++ b/nsv13.dme @@ -3844,8 +3844,8 @@ #include "nsv13\code\modules\antagonists\boarders\boarders.dm" #include "nsv13\code\modules\antagonists\boarders\pirate_boarders.dm" #include "nsv13\code\modules\atmospherics\gasmixtures\reactions.dm" -#include "nsv13\code\modules\atmospherics\machinery\components\unary_devices\outlet_injector.dm" #include "nsv13\code\modules\atmospherics\machinery\components\binary_devices\constrictor.dm" +#include "nsv13\code\modules\atmospherics\machinery\components\unary_devices\outlet_injector.dm" #include "nsv13\code\modules\atmospherics\machinery\components\unary_devices\tank.dm" #include "nsv13\code\modules\atmospherics\machinery\components\unary_devices\vent_pump.dm" #include "nsv13\code\modules\cargo\mission_rewards.dm" @@ -3908,6 +3908,7 @@ #include "nsv13\code\modules\mining\asteroid.dm" #include "nsv13\code\modules\mob\mob.dm" #include "nsv13\code\modules\mob\mob_helpers.dm" +#include "nsv13\code\modules\mob\dead\new_player\sprite_accessories.dm" #include "nsv13\code\modules\mob\dead\observer\oberserver.dm" #include "nsv13\code\modules\mob\living\carbon\carbon.dm" #include "nsv13\code\modules\mob\living\carbon\examine_tgui.dm" diff --git a/nsv13/code/modules/mob/dead/new_player/sprite_accessories.dm b/nsv13/code/modules/mob/dead/new_player/sprite_accessories.dm new file mode 100644 index 00000000000..603431e0bb2 --- /dev/null +++ b/nsv13/code/modules/mob/dead/new_player/sprite_accessories.dm @@ -0,0 +1,20 @@ + +/datum/sprite_accessory/undershirt/munitions + icon = 'nsv13/icons/mob/underwear.dmi' + name = "Shirt (Munitions)" + icon_state = "shirt_mun" + +/datum/sprite_accessory/undershirt/tank_munitions + icon = 'nsv13/icons/mob/underwear.dmi' + name = "Tank Top (Munitions)" + icon_state = "tank_mun" + +/datum/sprite_accessory/socks/munitions_thigh + icon = 'nsv13/icons/mob/underwear.dmi' + name = "Thigh-high (Munitions)" + icon_state = "mun_thigh" + +/datum/sprite_accessory/socks/munitions_knee + icon = 'nsv13/icons/mob/underwear.dmi' + name = "Knee-high (Munitions)" + icon_state = "mun_knee" diff --git a/nsv13/icons/mob/underwear.dmi b/nsv13/icons/mob/underwear.dmi new file mode 100644 index 00000000000..5da0ca1ca69 Binary files /dev/null and b/nsv13/icons/mob/underwear.dmi differ