Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add: Elysium "jumpsuits" #955

Merged
merged 2 commits into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
Binary file added mod_celadon/_storge_icons/icons/obj/el_cloth.dmi
Binary file not shown.
1 change: 1 addition & 0 deletions mod_celadon/stuff_elysium/_stuff_elysium.dme
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include "code/shoes.dm"
#include "code/belt.dm"
#include "code/outfit_ship/elysium.dm"
#include "code/under.dm"

#endif

31 changes: 31 additions & 0 deletions mod_celadon/stuff_elysium/code/under.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/obj/item/clothing/under/el_cloth_1
name = "Shirt with shorts"
desc = "Someone who wears this means business."
icon = 'mod_celadon/_storge_icons/icons/obj/el_cloth.dmi'
mob_overlay_icon = 'mod_celadon/_storge_icons/icons/mob/el_cloth.dmi'
icon_state = "el_cloth_1"
item_state = "el_cloth_1"

/obj/item/clothing/under/el_cloth_2
name = "Green shirt with shorts"
desc = "A common low quality t-shirt that is common among the inhabitants of the Republic of Elysium that live in rural areas. It has a bright green color."
icon = 'mod_celadon/_storge_icons/icons/obj/el_cloth.dmi'
mob_overlay_icon = 'mod_celadon/_storge_icons/icons/mob/el_cloth.dmi'
icon_state = "el_cloth_2"
item_state = "el_cloth_2"

/obj/item/clothing/under/el_cloth_3
name = "White robe with gilet"
desc = "A white robe commonly worn by the inhabitants of Elisium. A leather gilet is visible over it. It's the height of fashion."
icon = 'mod_celadon/_storge_icons/icons/obj/el_cloth.dmi'
mob_overlay_icon = 'mod_celadon/_storge_icons/icons/mob/el_cloth.dmi'
icon_state = "el_cloth_3"
item_state = "el_cloth_3"

/obj/item/clothing/under/el_cloth_4
name = "Dropped T-shirt with shorts"
desc = "A common low quality t-shirt, common among the rural inhabitants of the Elysium Republic. It has a slightly faded yellow color. The t-shirt is pulled down, revealing the faded jersey."
icon = 'mod_celadon/_storge_icons/icons/obj/el_cloth.dmi'
mob_overlay_icon = 'mod_celadon/_storge_icons/icons/mob/el_cloth.dmi'
icon_state = "el_cloth_4"
item_state = "el_cloth_4"
Loading