forked from Sandstorm-Station/Sandstorm-Station-13
-
-
Notifications
You must be signed in to change notification settings - Fork 284
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
7 changed files
with
69 additions
and
1 deletion.
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,2 @@ | ||
//(SPLURT VERSION - To add special behaviours) | ||
/obj/item/clothing/wrists |
40 changes: 40 additions & 0 deletions
40
modular_splurt/code/modules/clothing/wrists/miscellaneous.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,40 @@ | ||
/obj/item/clothing/wrists/armwarmer | ||
name = "Arm Warmers" | ||
desc = "A pair of arm warmers." | ||
icon = 'modular_splurt/icons/obj/clothing/wrists.dmi' | ||
mob_overlay_icon = 'modular_splurt/icons/mob/clothing/wrists.dmi' | ||
icon_state = "armwarmer" | ||
item_state = "armwarmer" | ||
body_parts_covered = ARMS | ||
|
||
/obj/item/clothing/wrists/armwarmer/long | ||
name = "Long Arm Warmers" | ||
desc = "A pair of long arm warmers." | ||
icon = 'modular_splurt/icons/obj/clothing/wrists.dmi' | ||
mob_overlay_icon = 'modular_splurt/icons/mob/clothing/wrists.dmi' | ||
icon_state = "armwarmer_long" | ||
item_state = "armwarmer_long" | ||
body_parts_covered = ARMS | ||
|
||
/obj/item/clothing/wrists/armwarmer_striped | ||
name = "Striped Arm Warmers" | ||
desc = "A pair of striped arm warmers." | ||
icon = 'modular_splurt/icons/obj/clothing/wrists.dmi' | ||
mob_overlay_icon = 'modular_splurt/icons/mob/clothing/wrists.dmi' | ||
icon_state = "armwarmer_striped" | ||
item_state = "armwarmer_striped" | ||
body_parts_covered = ARMS | ||
var/list/poly_colors = list("#FFFFFF", "#FFFFFF") | ||
|
||
/obj/item/clothing/wrists/armwarmer_striped/long | ||
name = "Long Striped Arm Warmers" | ||
desc = "A pair of long striped arm warmers." | ||
icon = 'modular_splurt/icons/obj/clothing/wrists.dmi' | ||
mob_overlay_icon = 'modular_splurt/icons/mob/clothing/wrists.dmi' | ||
icon_state = "armwarmer_striped_long" | ||
item_state = "armwarmer_striped_long" | ||
body_parts_covered = ARMS | ||
|
||
/obj/item/clothing/wrists/armwarmer_striped/ComponentInitialize() | ||
. = ..() | ||
AddElement(/datum/element/polychromic, poly_colors, 2) |
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
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