Skip to content

Commit

Permalink
Coat retexture (#2985)
Browse files Browse the repository at this point in the history
Co-authored-by: UEDCommander <[email protected]>
  • Loading branch information
Baneuus and UEDCommander authored Dec 16, 2024
1 parent bbaec6c commit 8007ff6
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mods/utility_items/_utility_items.dme
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
#include "code/modnye_patchi.dm"
#include "code/bottom.dm"
#include "code/top.dm"
#include "code\skrell-ship.dm"
#include "code/skrell-ship.dm"
#include "code/security.dm"
#include "code/FBP_vox.dm"

#endif
#endif
23 changes: 23 additions & 0 deletions mods/utility_items/code/security.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/obj/item/clothing/suit/armor/hos/Initialize()
. = ..()
name = "armored coat"
desc = "A greatcoat enhanced with a special alloy for some protection and style."
icon = 'maps/sierra/icons/obj/clothing/obj_suit.dmi'
item_icons = list(slot_wear_suit_str = 'maps/sierra/icons/mob/onmob/onmob_suit.dmi')
icon_state = "hos"
sprite_sheets = list(
SPECIES_UNATHI = 'maps/sierra/icons/mob/onmob/onmob_suit.dmi',
SPECIES_TAJARA = 'maps/sierra/icons/mob/onmob/onmob_suit.dmi',
SPECIES_SKRELL = 'maps/sierra/icons/mob/onmob/onmob_suit.dmi',
SPECIES_VOX = 'maps/sierra/icons/mob/onmob/onmob_suit.dmi',
SPECIES_RESOMI = 'mods/resomi/icons/clothing/onmob_suit_resomi.dmi')
body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS
armor = list(
melee = ARMOR_MELEE_MAJOR,
bullet = ARMOR_BALLISTIC_PISTOL,
laser = ARMOR_LASER_HANDGUNS,
energy = ARMOR_ENERGY_MINOR,
bomb = ARMOR_BOMB_PADDED
)
siemens_coefficient = 0.6
flags_inv = null

0 comments on commit 8007ff6

Please sign in to comment.