mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 08:01:06 +00:00
38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
/obj/machinery/acting/wardrobe
|
|
name = "wardrobe dispenser"
|
|
desc = "A machine that dispenses holo-clothing for those in need."
|
|
icon = 'icons/obj/vending.dmi'
|
|
icon_state = "cart"
|
|
anchored = 1
|
|
density = 1
|
|
var/active = 1
|
|
|
|
/obj/machinery/acting/wardrobe/attack_hand(var/mob/user as mob)
|
|
user.show_message("You push a button and watch patiently as the machine begins to hum.")
|
|
if(active)
|
|
active = 0
|
|
spawn(30)
|
|
new /obj/item/weapon/storage/box/syndie_kit/chameleon(src.loc)
|
|
src.visible_message("\The [src] beeps, dispensing a small box onto the floor.", "You hear a beeping sound followed by a thumping noise of some kind.")
|
|
active = 1
|
|
|
|
/obj/machinery/acting/changer
|
|
name = "Quickee's Plastic Surgeon"
|
|
desc = "For when you need to be someone else right now."
|
|
icon = 'icons/obj/surgery.dmi'
|
|
icon_state = "bioprinter"
|
|
anchored = 1
|
|
density = 1
|
|
|
|
/obj/machinery/acting/changer/attack_hand(var/mob/user as mob)
|
|
if(ishuman(user))
|
|
var/mob/living/carbon/human/H = user
|
|
H.change_appearance(APPEARANCE_ALL, H.loc, H, H.generate_valid_species(), state = z_state)
|
|
var/getName = sanitize(input(H, "Would you like to change your name to something else?", "Name change") as null|text, MAX_NAME_LEN)
|
|
if(getName)
|
|
H.real_name = getName
|
|
H.name = getName
|
|
H.dna.real_name = getName
|
|
if(H.mind)
|
|
H.mind.name = H.name
|