Skip to content

Commit 43f84cd

Browse files
committed
puk
1 parent 305d783 commit 43f84cd

15 files changed

Lines changed: 103 additions & 2 deletions

File tree

code/modules/vending/autodrobe.dm

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,16 @@ GLOBAL_LIST_INIT(autodrobe_costumes_items, list(
4848
/obj/item/clothing/under/costume/gi = 4,
4949
/obj/item/clothing/head/soft/propeller_hat = 3,
5050
/obj/item/clothing/neck/bowtie/rainbow = 3,
51+
//MASSMETA ADDITION - more clothes
52+
/obj/item/clothing/suit/costume/mm/brawler_blazer = 1,
53+
/obj/item/clothing/under/costume/mm/lad/brawler = 1,
54+
/obj/item/clothing/shoes/laceup/mm/lgray = 1,
55+
/obj/item/clothing/under/costume/mm/lad/maddog = 1,
56+
/obj/item/clothing/shoes/mm/metalcomb = 1,
57+
/obj/item/clothing/under/costume/mm/lad/black_hawaii = 1,
58+
/obj/item/clothing/under/costume/mm/lad/red_hawaii = 1,
59+
/obj/item/clothing/shoes/laceup/mm/brown = 1,
60+
//
5161
))
5262

5363
GLOBAL_LIST_INIT(autodrobe_supernatural_items, list(
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
//---SHOES---
2+
3+
/obj/item/clothing/shoes/mm
4+
icon = 'modular_meta/features/more_clothes/icons/items/shoes.dmi'
5+
worn_icon = 'modular_meta/features/more_clothes/icons/on_mob/feet.dmi'
6+
7+
/obj/item/clothing/shoes/mm/metalcomb
8+
name = "metal comb shoes"
9+
desc = "A stylish one, if you want dance."
10+
icon_state = "metalcomb_boots"
11+
12+
//---LACEUPS---
13+
14+
/obj/item/clothing/shoes/laceup/mm
15+
icon = 'modular_meta/features/more_clothes/icons/items/shoes.dmi'
16+
worn_icon = 'modular_meta/features/more_clothes/icons/on_mob/feet.dmi'
17+
18+
/obj/item/clothing/shoes/laceup/mm/lgray
19+
name = "light gray laceup shoes"
20+
desc = "Don't get your shoes dirty!"
21+
icon_state = "lgray_laceups"
22+
23+
/obj/item/clothing/shoes/laceup/mm/brown
24+
name = "brown laceup shoes"
25+
icon_state = "brown_laceups"
26+
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/obj/item/clothing/suit/costume/mm
2+
icon = 'modular_meta/features/more_clothes/icons/items/suits/costume.dmi'
3+
worn_icon = 'modular_meta/features/more_clothes/icons/on_mob/suits/costume.dmi'
4+
lefthand_file = 'modular_meta/features/more_clothes/icons/inhands/suits_lefthand.dmi'
5+
righthand_file = 'modular_meta/features/more_clothes/icons/inhands/suits_righthand.dmi'
6+
7+
/obj/item/clothing/suit/costume/mm/brawler_blazer
8+
name = "brawler blazer"
9+
desc = "You are a natural Dragon of the Space."
10+
icon_state = "brawler_blazer"
11+
inhand_icon_state = null
12+
body_parts_covered = CHEST|ARMS
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/obj/item/clothing/under/costume/mm
2+
icon = 'modular_meta/features/more_clothes/icons/items/under/costume.dmi'
3+
worn_icon = 'modular_meta/features/more_clothes/icons/on_mob/under/costume.dmi'
4+
lefthand_file = 'modular_meta/features/more_clothes/icons/inhands/suits_lefthand.dmi'
5+
righthand_file = 'modular_meta/features/more_clothes/icons/inhands/suits_righthand.dmi'
6+
7+
//---LAD SERIES COSTUMES---
8+
9+
/obj/item/clothing/under/costume/mm/lad
10+
armor_type = /datum/armor/clothing_under/brawler
11+
female_sprite_flags = NO_FEMALE_UNIFORM
12+
13+
/datum/armor/clothing_under/brawler
14+
melee = 5
15+
16+
/obj/item/clothing/under/costume/mm/lad/brawler
17+
name = "brawler's suit"
18+
desc = "Red shirt, <b>light gray</b> pants."
19+
icon_state = "brawler"
20+
inhand_icon_state = "brawler"
21+
alt_covers_chest = TRUE
22+
23+
/obj/item/clothing/under/costume/mm/lad/maddog
24+
name = "mad dog's suit"
25+
desc = "Made for flirt with a bomb."
26+
icon_state = "mad_dog"
27+
inhand_icon_state = "mad_dog"
28+
29+
/obj/item/clothing/under/costume/mm/lad/black_hawaii
30+
name = "black hawaii suit"
31+
desc = "Like a new!"
32+
icon_state = "black_hawaii"
33+
inhand_icon_state = "black_hawaii"
34+
can_adjust = FALSE
35+
36+
/obj/item/clothing/under/costume/mm/lad/red_hawaii
37+
name = "red hawaii suit"
38+
desc = "Like a new, or is it?!"
39+
icon_state = "red_hawaii"
40+
inhand_icon_state = "red_hawaii"
41+
can_adjust = FALSE
42+
Binary file not shown.
Binary file not shown.
921 Bytes
Binary file not shown.
478 Bytes
Binary file not shown.
1.56 KB
Binary file not shown.
934 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)