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

Some munitions accessories #2574

Merged
merged 1 commit into from
Dec 1, 2023
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
3 changes: 2 additions & 1 deletion nsv13.dme
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
20 changes: 20 additions & 0 deletions nsv13/code/modules/mob/dead/new_player/sprite_accessories.dm
Original file line number Diff line number Diff line change
@@ -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"
Binary file added nsv13/icons/mob/underwear.dmi
Binary file not shown.
Loading