Mimery Kit Adjustments (#24575)

* Mimery Kit Adjustments

This commit lowers the cost to 12 TCs

* Grammar changes

Makes some messages more grammatically correct and better sounding yeah

* Fixes shooting mime bullets while restrained/incapacitated
This commit is contained in:
PKPenguin321
2017-03-01 23:10:46 -08:00
committed by oranges
parent 312f0e2d3a
commit 463b9cd147
2 changed files with 9 additions and 5 deletions
+8 -4
View File
@@ -65,7 +65,7 @@
/obj/effect/proc_holder/spell/targeted/forcewall/mime
name = "Invisible Blockade"
desc = "With more polished skills, a powerful mime can create a invisble blockade, blocking off a 3x1 area."
desc = "Form an invisible three tile wide blockade."
wall_type = /obj/effect/forcefield/mime/advanced
invocation_type = "emote"
invocation_emote_self = "<span class='notice'>You form a blockade in front of yourself.</span>"
@@ -90,7 +90,7 @@
/obj/effect/proc_holder/spell/aimed/finger_guns
name = "Finger Guns"
desc = "An ancient technqiue, passed down from mentor to student. Allows you to shoot bullets out of your fingers."
desc = "Shoot a mimed bullet from your fingers that does a stun and some damage."
school = "mime"
panel = "Mime"
charge_max = 300
@@ -110,6 +110,10 @@
/obj/effect/proc_holder/spell/aimed/finger_guns/Click()
var/mob/living/carbon/human/owner = usr
if(owner.incapacitated())
owner << "<span class='warning'>You can't properly point your fingers while incapacitated.</span>"
return
if(usr && usr.mind)
if(!usr.mind.miming)
usr << "<span class='notice'>You must dedicate yourself to silence first.</span>"
@@ -124,7 +128,7 @@
spell = /obj/effect/proc_holder/spell/targeted/forcewall/mime
spellname = ""
name = "Guide to Advanced Mimery Vol 1"
desc = "When you turn the pages, it won't make a sound!"
desc = "The pages don't make any sound when turned."
icon_state ="bookmime"
/obj/item/weapon/spellbook/oneuse/mimery_guns
@@ -132,4 +136,4 @@
spellname = ""
name = "Guide to Advanced Mimery Vol 2"
desc = "There aren't any words written..."
icon_state ="bookmime"
icon_state ="bookmime"
+1 -1
View File
@@ -1194,7 +1194,7 @@ var/list/uplink_items = list() // Global list so we only initialize this once.
/datum/uplink_item/role_restricted/mimery
name = "Guide to Advanced Mimery Series"
desc = "The classical two part series on how to further hone your mime skills. Upon studying the series, the user should be able to make 3x1 invisble walls, and shoot bullets out of their fingers. Obviously only works for Mimes."
cost = 15
cost = 12
item = /obj/item/weapon/storage/box/syndie_kit/mimery
restricted_roles = list("Mime")