Customizable clown mask with 2 new options

Conflicts:
	code/modules/clothing/masks/gasmask.dm
	config/admins.txt
	icons/mob/mask.dmi
	icons/obj/clothing/masks.dmi
This commit is contained in:
Firecage
2014-04-19 18:13:27 -04:00
committed by ZomgPonies
parent e224a636b9
commit c948e01b85
3 changed files with 17 additions and 1 deletions
+17 -1
View File
@@ -68,6 +68,22 @@
item_state = "clown_hat"
flags = FPRINT | TABLEPASS | MASKCOVERSMOUTH | MASKCOVERSEYES | BLOCK_GAS_SMOKE_EFFECT | MASKINTERNALS | BLOCKHAIR
/obj/item/clothing/mask/gas/clown_hat/attack_self(mob/user)
var/mob/M = usr
var/list/options = list()
options["True Form"] = "clown"
options["The Feminist"] = "sexyclown"
options["The Madman"] = "joker"
options["The Rainbow Color"] ="rainbow"
var/choice = input(M,"To what form do you wish to Morph this mask?","Morph Mask") in options
if(src && choice && !M.stat && in_range(M,src))
icon_state = options[choice]
M << "Your Clown Mask has now morphed into [choice], all praise the Honk Mother!"
return 1
/obj/item/clothing/mask/gas/sexyclown
name = "sexy-clown wig and mask"
desc = "A feminine clown mask for the dabbling crossdressers or female entertainers."
@@ -236,4 +252,4 @@
// ********************************************************************
// ********************************************************************