move forced_climax to its own proc

This commit is contained in:
sarcoph
2022-05-05 01:48:08 -08:00
parent e1a6c16dd0
commit 6bfd8b666a
9 changed files with 49 additions and 52 deletions
+1 -1
View File
@@ -64,7 +64,7 @@
C.do_jitter_animation()
C.adjustArousalLoss(20) //make the target more aroused.
if (C.can_orgasm())
C.mob_climax(forced_climax=TRUE) //make them cum if they are over the edge.
C.mob_climax_forced() //make them cum if they are over the edge.
return
+2 -2
View File
@@ -133,13 +133,13 @@ Code:
to_chat(U, "<span class='love'>You feel intense pleasure surge through your [G.name]</span>")
U.do_jitter_animation()
if (U.can_orgasm())
U.mob_climax(forced_climax=TRUE)
U.mob_climax_forced()
if(3) //high, makes you stun
to_chat(U, "<span class='userdanger'>You feel overpowering pleasure surge through your [G.name]</span>")
U.Jitter(3)
U.Stun(30)
if (U.can_orgasm())
U.mob_climax(forced_climax=TRUE)
U.mob_climax_forced()
if(prob(50))
U.emote("moan")