mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-27 22:17:32 +01:00
Merge pull request #8162 from Aurorablade/TheCultOfMimes
The cult of mimes
This commit is contained in:
@@ -171,10 +171,13 @@ var/list/spells = typesof(/obj/effect/proc_holder/spell) //needed for the badmin
|
||||
/obj/effect/proc_holder/spell/proc/invocation(mob/user = usr) //spelling the spell out and setting it on recharge/reducing charges amount
|
||||
switch(invocation_type)
|
||||
if("shout")
|
||||
if(prob(50))//Auto-mute? Fuck that noise
|
||||
user.say(invocation)
|
||||
if(!user.IsVocal())
|
||||
user.emote("makes frantic gestures!")
|
||||
else
|
||||
user.say(replacetext(invocation," ","`"))
|
||||
if(prob(50))//Auto-mute? Fuck that noise
|
||||
user.say(invocation)
|
||||
else
|
||||
user.say(replacetext(invocation," ","`"))
|
||||
if("whisper")
|
||||
if(prob(50))
|
||||
user.whisper(invocation)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/var/list/sacrificed = list()
|
||||
var/list/sacrificed = list()
|
||||
var/list/non_revealed_runes = (subtypesof(/obj/effect/rune) - /obj/effect/rune/malformed)
|
||||
|
||||
/*
|
||||
@@ -153,7 +153,10 @@ structure_check() searches for nearby cultist structures required for the invoca
|
||||
for(var/M in invokers)
|
||||
var/mob/living/L = M
|
||||
if(invocation)
|
||||
L.say(invocation)
|
||||
if(!L.IsVocal())
|
||||
L.emote("gestures ominously.")
|
||||
else
|
||||
L.say(invocation)
|
||||
L.changeNext_move(CLICK_CD_MELEE)//THIS IS WHY WE CAN'T HAVE NICE THINGS
|
||||
if(invoke_damage)
|
||||
L.apply_damage(invoke_damage, BRUTE)
|
||||
@@ -473,7 +476,6 @@ var/list/teleport_runes = list()
|
||||
rune_in_use = 0
|
||||
|
||||
|
||||
|
||||
//Ritual of Dimensional Rending: Calls forth the avatar of Nar-Sie upon the station.
|
||||
/obj/effect/rune/narsie
|
||||
cultist_name = "Tear Reality (God)"
|
||||
|
||||
Reference in New Issue
Block a user