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

Adds 4 cool jackets #11930

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 5 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
37 changes: 37 additions & 0 deletions code/modules/clothing/suits/jacket.dm
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,18 @@
icon_state = "letterman_n"
item_state = "letterman_n"

/obj/item/clothing/suit/jacket/kim
name = "Liutenant jacket"
desc = "An orange jacket that belonged to a liutenant."
icon_state = "kim"
item_state = "kim"

/obj/item/clothing/suit/jacket/kaneda
name = "Biker jacket"
desc = "Good for health. Bad for eduaciton."
icon_state = "kaneda"
item_state = "kaneda"

//Aristocrat coats

/obj/item/clothing/suit/jacket/aristocrat
Expand All @@ -108,3 +120,28 @@
desc = "A fancy coat made of silk. This one is blue."
icon_state = "aristo_blue"
item_state = "aristo_blue"

// New COOL jackets
/obj/item/clothing/suit/jacket/tunnelsnakes //www.youtube.com/watch?v=S0ximxe4XtU&t=61s
name = "Underground Serpents jacket"
desc = "Underground Serpents Jacket rules, we are the underground serpents. That's us, and we rule! ."
icon_state = "tunnelsnakes"
item_state = "tunnelsnakes"

/obj/item/clothing/suit/jacket/kaneda
name = "Teen biker jacket"
desc = "Good for health. Bad for education."
icon_state = "kaneda"
item_state = "kaneda"

/obj/item/clothing/suit/jacket/literallyme
name = "Driver jacket"
desc = "Literally me."
icon_state = "literallyme"
item_state = "literallyme"

/obj/item/clothing/suit/jacket/kim
name = "Liutenant jacket"
desc = "There must be another way into the building."
icon_state = "kim"
item_state = "kim"
6 changes: 5 additions & 1 deletion code/modules/vending/autodrobe.dm
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,11 @@
/obj/item/clothing/under/dress/sailor = 1,
/obj/item/clothing/head/wig/random = 3,
/obj/item/clothing/head/costume/delinquent = 1,
/obj/item/clothing/ears/headphones = 2)
/obj/item/clothing/ears/headphones = 2,
/obj/item/clothing/suit/jacket/tunnelsnakes = 1,
/obj/item/clothing/suit/jacket/kim = 1,
/obj/item/clothing/suit/jacket/kaneda = 1,
/obj/item/clothing/suit/jacket/literallyme = 1)

contraband = list(/obj/item/clothing/suit/costume/judgerobe = 1,
/obj/item/clothing/head/costume/powdered_wig = 1,
Expand Down
Binary file modified icons/mob/clothing/suits/jacket.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/suits/jacket.dmi
Binary file not shown.
Loading