Forgot to comment out hypnoquirk.
This commit is contained in:
@@ -919,7 +919,7 @@
|
||||
GET_COMPONENT_FROM(mood, /datum/component/mood, H)
|
||||
switch(mood.sanity)
|
||||
if(SANITY_GREAT to INFINITY)
|
||||
speaktrigger += "I'm beyond elated!! "
|
||||
speaktrigger += "I'm beyond elated!! " //did you mean byond elated? hohoho
|
||||
if(SANITY_NEUTRAL to SANITY_GREAT)
|
||||
speaktrigger += "I'm really happy! "
|
||||
if(SANITY_DISTURBED to SANITY_NEUTRAL)
|
||||
@@ -933,15 +933,15 @@
|
||||
|
||||
//Withdrawal
|
||||
switch(E.withdrawalTick)
|
||||
if(10 to 36)
|
||||
if(10 to 36) //denial
|
||||
speaktrigger += "I missed you, "
|
||||
if(36 to 66)
|
||||
if(36 to 66) //barganing
|
||||
speaktrigger += "I missed you, but I knew you'd come back for me! "
|
||||
if(66 to 90)
|
||||
if(66 to 90) //anger
|
||||
speaktrigger += "I couldn't take being away from you like that, "
|
||||
if(90 to 140)
|
||||
if(90 to 140) //depression
|
||||
speaktrigger += "I was so scared you'd never come back, "
|
||||
if(140 to INFINITY)
|
||||
if(140 to INFINITY) //acceptance
|
||||
speaktrigger += "I'm hurt that you left me like that... I felt so alone... "
|
||||
|
||||
//hunger
|
||||
@@ -997,7 +997,7 @@
|
||||
if(80 to 120)
|
||||
speaktrigger += "My head feels like it's about to explode, "
|
||||
if(120 to 160)
|
||||
speaktrigger += "You are the only thing keeping my brain sane, "
|
||||
speaktrigger += "You are the only thing keeping my mind sane, "
|
||||
if(160 to INFINITY)
|
||||
speaktrigger += "I feel like I'm on the brink of losing my mind, "
|
||||
|
||||
@@ -1013,7 +1013,7 @@
|
||||
|
||||
//collar
|
||||
if(istype(H.wear_neck, /obj/item/clothing/neck/petcollar))
|
||||
speaktrigger += "and thank you for the collar, "
|
||||
speaktrigger += "I love the collar you gave me, "
|
||||
//End
|
||||
if(H.lewd)
|
||||
speaktrigger += "[E.enthrallGender]!"
|
||||
|
||||
@@ -364,7 +364,7 @@
|
||||
M.hallucination = max(0, M.hallucination - 5)
|
||||
M.stuttering = max(0, M.stuttering - 5)
|
||||
M.jitteriness = max(0, M.jitteriness - 5)
|
||||
if(owner.getBrainLoss() >=60)
|
||||
if(owner.getBrainLoss() >=50)
|
||||
owner.adjustBrainLoss(-0.1)
|
||||
if(withdrawal == TRUE)
|
||||
SEND_SIGNAL(M, COMSIG_CLEAR_MOOD_EVENT, "EnthMissing1")
|
||||
@@ -396,7 +396,7 @@
|
||||
if(prob(10))
|
||||
if(owner.lewd)
|
||||
to_chat(owner, "<i>I just need to be a good pet for [enthrallGender], they'll surely return if I'm a good pet.</i>")
|
||||
owner.adjustBrainLoss(-1)
|
||||
owner.adjustBrainLoss(-1.5)
|
||||
if(66)
|
||||
SEND_SIGNAL(M, COMSIG_CLEAR_MOOD_EVENT, "EnthMissing1")
|
||||
var/message = "[(owner.lewd?"I feel so lost in this complicated world without [enthrallGender]..":"I have to return to [master]!")]"
|
||||
|
||||
Reference in New Issue
Block a user