diff --git a/code/defines/obj/clothing/head.dm b/code/defines/obj/clothing/head.dm index 206b44ec42b..ac64640a82e 100644 --- a/code/defines/obj/clothing/head.dm +++ b/code/defines/obj/clothing/head.dm @@ -289,6 +289,12 @@ icon_state = "chaplain_hood" flags = FPRINT|TABLEPASS|HEADSPACE|HEADCOVERSEYES +/obj/item/clothing/head/hasturhood + name = "Hastur's Hood" + desc = "This hood is unspeakably stylish" + icon_state = "hasturhood" + flags = FPRINT|TABLEPASS|HEADSPACE|HEADCOVERSEYES + /obj/item/clothing/head/nursehat name = "Nurse Hat" desc = "Smokin'" diff --git a/code/defines/obj/clothing/suit.dm b/code/defines/obj/clothing/suit.dm index 2048943ea46..9477d76901a 100644 --- a/code/defines/obj/clothing/suit.dm +++ b/code/defines/obj/clothing/suit.dm @@ -466,6 +466,13 @@ item_state = "chaplain_hoodie" body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS +/obj/item/clothing/suit/hastur + name = "Hastur's Robes" + desc = "Robes not meant to be worn by man" + icon_state = "hastur" + item_state = "hastur" + body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS + /obj/item/clothing/suit/imperium_monk name = "Imperium monk" desc = "Have YOU killed a xenos today?" diff --git a/code/game/gamemodes/wizard/spells.dm b/code/game/gamemodes/wizard/spells.dm index 551e5684ab2..4a624bb2abc 100644 --- a/code/game/gamemodes/wizard/spells.dm +++ b/code/game/gamemodes/wizard/spells.dm @@ -462,7 +462,7 @@ /client/proc/mutate() set category = "Spells" set name = "Mutate" - set desc = "This spell causes you to turn into a hulk and gain telekinesis for a short while." + set desc = "This spell causes you to turn into a hulk and gain laser vision for a short while." if(usr.stat) src << "Not when you are incapacitated." return @@ -474,13 +474,13 @@ usr.say("BIRUZ BENNAR") usr.spellvoice() - usr << text("\blue You feel strong! Your mind expands!") + usr << text("\blue You feel strong! You feel pressure building behind your eyes!") if (!(usr.mutations & HULK)) usr.mutations |= HULK - if (!(usr.mutations & PORTALS)) - usr.mutations |= PORTALS + if (!(usr.mutations & LASER)) + usr.mutations |= LASER spawn (300) - if (usr.mutations & PORTALS) usr.mutations &= ~PORTALS + if (usr.mutations & LASER) usr.mutations &= ~LASER if (usr.mutations & HULK) usr.mutations &= ~HULK return diff --git a/code/game/gamemodes/wizard/wizard.dm b/code/game/gamemodes/wizard/wizard.dm index 3e65250885d..12faf94b5dc 100644 --- a/code/game/gamemodes/wizard/wizard.dm +++ b/code/game/gamemodes/wizard/wizard.dm @@ -351,7 +351,7 @@ if ("11") usr.verbs += /client/proc/mutate usr.mind.special_verbs += /client/proc/mutate - src.temp = "This spell causes you to turn into a hulk and gain telekinesis for a short while." + src.temp = "This spell causes you to turn into a hulk and gain laser vision for a short while." if ("12") usr.verbs += /client/proc/jaunt usr.mind.special_verbs += /client/proc/jaunt diff --git a/code/game/objects/closets/wardrobe.dm b/code/game/objects/closets/wardrobe.dm index a58df8725ac..ad52fd917e4 100644 --- a/code/game/objects/closets/wardrobe.dm +++ b/code/game/objects/closets/wardrobe.dm @@ -69,6 +69,8 @@ new /obj/item/clothing/suit/chaplain_hoodie( src ) new /obj/item/clothing/head/chaplain_hood( src ) new /obj/item/clothing/suit/holidaypriest( src ) + new /obj/item/clothing/suit/hastur ( src ) + new /obj/item/clothing/head/hasturhood ( src ) new /obj/item/weapon/candlepack( src ) new /obj/item/weapon/candlepack( src ) return diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index c4c6a933d7c..dea93b1e900 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index ccf424cceb8..2b835d4e94b 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index f54ee2b63a6..159e577031f 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index 65da7fae185..032e7c0bda1 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ