Skip to content

Commit

Permalink
adds 2 performer's outfits
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadowlight213 committed Dec 19, 2016
1 parent 2646f68 commit 3f70fcd
Show file tree
Hide file tree
Showing 8 changed files with 37 additions and 3 deletions.
2 changes: 2 additions & 0 deletions code/game/machinery/vending.dm
Original file line number Diff line number Diff line change
Expand Up @@ -909,6 +909,8 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C
/obj/item/clothing/suit/whitedress = 1,
/obj/item/clothing/under/jester = 1, /obj/item/clothing/head/jester = 1,
/obj/item/clothing/under/villain = 1,
/obj/item/clothing/shoes/ysing = 1,/obj/item/clothing/under/singery = 1,
/obj/item/clothing/shoes/bsing = 1,/obj/item/clothing/under/singerb = 1,
/obj/item/clothing/suit/hooded/carp_costume = 1,
/obj/item/clothing/suit/hooded/ian_costume = 1,
/obj/item/clothing/suit/hooded/bee_costume = 1,
Expand Down
2 changes: 1 addition & 1 deletion code/game/objects/items/weapons/vending_items.dm
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
/obj/item/weapon/vending_refill/autodrobe
machine_name = "AutoDrobe"
icon_state = "refill_costume"
charges = list(30, 2, 3)// of 90 standard, 6 contraband, 9 premium
charges = list(31, 2, 3)// of 94 standard, 6 contraband, 9 premium
init_charges = list(27, 2, 3)

/obj/item/weapon/vending_refill/clothing
Expand Down
16 changes: 14 additions & 2 deletions code/modules/clothing/shoes/miscellaneous.dm
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@
name = "magic shoes"
icon_state = "black"
resistance_flags = FIRE_PROOF | ACID_PROOF

/obj/item/clothing/shoes/sandal/magic
name = "magical sandals"
desc = "A pair of sandals imbued with magic"
resistance_flags = FIRE_PROOF | ACID_PROOF

/obj/item/clothing/shoes/galoshes
desc = "A pair of yellow rubber boots, designed to prevent slipping on wet surfaces."
name = "galoshes"
Expand Down Expand Up @@ -201,3 +201,15 @@
usr.throw_at(target,jumpdistance,1, spin=0, diagonals_first = 1)
jumping = FALSE
recharging_time = world.time + recharging_rate

/obj/item/clothing/shoes/ysing
name = "yellow performer's boots"
desc = "These boots were made for dancing."
icon_state = "ysing"
put_on_delay = 50

/obj/item/clothing/shoes/bsing
name = "blue performer's boots"
desc = "These boots were made for dancing."
icon_state = "bsing"
put_on_delay = 50
20 changes: 20 additions & 0 deletions code/modules/clothing/under/miscellaneous.dm
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,26 @@
can_adjust = 1
alt_covers_chest = 1

/obj/item/clothing/under/singery
name = "yellow performer's outfit"
desc = "Just looking at this makes you want to sing."
icon_state = "ysing"
item_state = "ysing"
item_color = "ysing"
fitted = NO_FEMALE_UNIFORM
alternate_worn_layer = ABOVE_SHOES_LAYER
can_adjust = 0

/obj/item/clothing/under/singerb
name = "blue performer's outfit"
desc = "Just looking at this makes you want to sing."
icon_state = "bsing"
item_state = "bsing"
item_color = "bsing"
alternate_worn_layer = ABOVE_SHOES_LAYER
fitted = NO_FEMALE_UNIFORM
can_adjust = 0

/obj/item/clothing/under/plaid_skirt/green
name = "green plaid skirt"
desc = "A preppy green skirt with a white blouse."
Expand Down
Binary file modified icons/mob/feet.dmi
Binary file not shown.
Binary file modified icons/mob/uniform.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/shoes.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/uniforms.dmi
Binary file not shown.

0 comments on commit 3f70fcd

Please sign in to comment.