-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
113 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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
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
10 changes: 10 additions & 0 deletions
10
monkestation/code/modules/new_antagonists/slasher/slasher_outfit/slasher_footwear.dm
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,10 @@ | ||
/obj/item/clothing/shoes/slasher_shoes | ||
name = "Industrial Boots" | ||
icon_state = "jackboots" | ||
inhand_icon_state = "jackboots" | ||
clothing_traits = list(TRAIT_NO_SLIP_ALL) | ||
resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF | ||
|
||
/obj/item/clothing/shoes/slasher_shoes/Initialize(mapload) | ||
. = ..() | ||
ADD_TRAIT(src, TRAIT_NODROP, "slasher") |
16 changes: 16 additions & 0 deletions
16
monkestation/code/modules/new_antagonists/slasher/slasher_outfit/slasher_headgear.dm
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,16 @@ | ||
/obj/item/clothing/mask/gas/slasher | ||
name = "slasher's gas mask" | ||
desc = "A close-fitting sealed gas mask, this one seems to be protruding some kind of dark aura." | ||
|
||
icon = 'icons/obj/clothing/head/utility.dmi' | ||
worn_icon = 'icons/mob/clothing/head/utility.dmi' | ||
icon_state = "welding" | ||
inhand_icon_state = "welding" | ||
resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF | ||
|
||
/obj/item/clothing/mask/gas/slasher/Initialize(mapload) | ||
. = ..() | ||
ADD_TRAIT(src, TRAIT_NODROP, "slasher") | ||
|
||
/obj/item/clothing/mask/gas/slasher/adjustmask() | ||
return |
17 changes: 17 additions & 0 deletions
17
monkestation/code/modules/new_antagonists/slasher/slasher_outfit/slasher_middlewear.dm
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,17 @@ | ||
/obj/item/clothing/suit/apron/slasher | ||
name = "butcher's apron" | ||
desc = "A brown butcher's apron, you can feel an aura of something dark radiating off of it." | ||
resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF | ||
|
||
icon_state = "slasher" | ||
inhand_icon_state = "slasher" | ||
|
||
/obj/item/clothing/suit/apron/slasher/Initialize(mapload) | ||
. = ..() | ||
ADD_TRAIT(src, TRAIT_NODROP, "slasher") | ||
|
||
/obj/item/clothing/under/color/random/slasher | ||
name = "butcher's jumpsuit" | ||
clothing_traits = list(TRAIT_NODROP) | ||
resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF | ||
|
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