forked from Baystation12/Baystation12
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: UEDCommander <[email protected]>
- Loading branch information
1 parent
bbaec6c
commit 8007ff6
Showing
2 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |