Wizard
-Mutate spell now gives Hulk and Laser Eyes instead of Hulk and Telekinesis. This is to to prevent the AI from getting one-humaned with no risk and the inevitable TK/thermal/axe spree that follows. Chaplain -King in Yellow Robes added to Chaplains wardrobe (sprited by Curwen) git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2124 316c924e-a436-60f5-8080-3fe189b3f50e
@@ -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'"
|
||||
|
||||
@@ -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?"
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 67 KiB After Width: | Height: | Size: 68 KiB |
|
Before Width: | Height: | Size: 175 KiB After Width: | Height: | Size: 177 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 42 KiB |