Skip to content

Commit

Permalink
New clothes for autodrobe, clothesmate and loadout (#3340)
Browse files Browse the repository at this point in the history
* feature(clothing): add shihakusho and white robe

* feature(clothing): add shihakusho sprite

* feature(clothing): add coats path to white robe

* fix(clothing): add missing pixels

* enhancement(clothing): revert unwanted commit and improve white robe sprite

---------

Co-authored-by: Alex <[email protected]>
  • Loading branch information
2 people authored and StealsThePRs committed Jul 3, 2024
1 parent 1558655 commit fdb0cef
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,12 @@
body_parts_covered = CHEST|GROIN|ARMS
female_sprite_flags = FEMALE_UNIFORM_TOP_ONLY

/obj/item/clothing/under/costume/nova/shihakusho
name = "shihakusho"
desc = "A traditional ancient Earth Japanese Shihakusho."
icon_state = "shihakusho"
body_parts_covered = CHEST|GROIN|ARMS

/*
* CHRISTMAS CLOTHES
*/
Expand Down
Binary file modified modular_nova/master_files/icons/mob/clothing/suits/jacket.dmi
Binary file not shown.
Binary file modified modular_nova/master_files/icons/mob/clothing/under/costume.dmi
Binary file not shown.
Binary file modified modular_nova/master_files/icons/obj/clothing/suits/jacket.dmi
Binary file not shown.
Binary file modified modular_nova/master_files/icons/obj/clothing/under/costume.dmi
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,15 @@
flags_1 = IS_PLAYER_COLORABLE_1
supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION_NO_NEW_ICON

/obj/item/clothing/suit/jacket/white_robe
name = "white robe"
desc = "A white long robe."
icon_state = "white_robe"
icon = 'modular_nova/master_files/icons/obj/clothing/suits/jacket.dmi'
worn_icon = 'modular_nova/master_files/icons/mob/clothing/suits/jacket.dmi'
body_parts_covered = CHEST|ARMS
cold_protection = CHEST|ARMS

/obj/item/clothing/suit/varsity
name = "varsity jacket"
desc = "A simple varsity jacket with no obvious sources."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,10 @@ GLOBAL_LIST_INIT(loadout_exosuits, generate_loadout_items(/datum/loadout_item/su
name = "Crop Top Turtleneck"
item_path = /obj/item/clothing/suit/jacket/croptop

/datum/loadout_item/suit/white_robe
name = "White Robe"
item_path = /obj/item/clothing/suit/jacket/white_robe

/*
* FLANNELS
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,10 @@ GLOBAL_LIST_INIT(loadout_miscunders, generate_loadout_items(/datum/loadout_item/
name = "Fancy Kimono"
item_path = /obj/item/clothing/under/costume/nova/kimono

/datum/loadout_item/under/miscellaneous/shihakusho
name = "Shihakusho"
item_path = /obj/item/clothing/under/costume/nova/shihakusho

/datum/loadout_item/under/miscellaneous/chaps
name = "Black Chaps"
item_path = /obj/item/clothing/under/pants/nova/chaps
Expand Down
1 change: 1 addition & 0 deletions modular_nova/modules/modular_vending/code/autodrobe.dm
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
/obj/item/clothing/under/costume/nova/kamishimo = 5,
/obj/item/clothing/under/costume/nova/yukata = 5,
/obj/item/clothing/under/costume/nova/kimono = 5,
/obj/item/clothing/under/costume/nova/shihakusho = 5,
/obj/item/clothing/head/beret/badge = 5,
/obj/item/clothing/mask/masquerade = 25,
/obj/item/clothing/mask/masquerade/two_colors = 25,
Expand Down
1 change: 1 addition & 0 deletions modular_nova/modules/modular_vending/code/clothesmate.dm
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
/obj/item/clothing/suit/duster = 5,
/obj/item/clothing/suit/fallsparka = 5,
/obj/item/clothing/suit/jacket/croptop = 5,
/obj/item/clothing/suit/jacket/white_robe = 5,
/obj/item/clothing/suit/modernwintercoatthing = 5,
/obj/item/clothing/suit/hooded/wintercoat/colourable = 5,
/obj/item/clothing/suit/apron/chef/colorable_apron = 5,
Expand Down

0 comments on commit fdb0cef

Please sign in to comment.