mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-11 10:22:13 +00:00
keyword argument funnies, whoops comma
This commit is contained in:
@@ -1549,7 +1549,7 @@ GLOBAL_LIST_EMPTY(roundstart_race_names)
|
||||
user.do_attack_animation(target, ATTACK_EFFECT_ASS_SLAP)
|
||||
target.adjust_arousal(20,"masochism", maso = TRUE)
|
||||
if (ishuman(target) && HAS_TRAIT(target, TRAIT_MASO) && target.has_dna() && prob(10))
|
||||
target.mob_climax(forced_climax=TRUE, "masochism")
|
||||
target.mob_climax(forced_climax=TRUE, cause = "masochism")
|
||||
if (!HAS_TRAIT(target, TRAIT_PERMABONER))
|
||||
stop_wagging_tail(target)
|
||||
playsound(target.loc, 'sound/weapons/slap.ogg', 50, 1, -1)
|
||||
@@ -1931,7 +1931,7 @@ GLOBAL_LIST_EMPTY(roundstart_race_names)
|
||||
if(BP.receive_damage(damage_amount, 0, wound_bonus = wound_bonus, bare_wound_bonus = bare_wound_bonus, sharpness = sharpness))
|
||||
H.update_damage_overlays()
|
||||
if(HAS_TRAIT(H, TRAIT_MASO) && prob(damage_amount))
|
||||
H.mob_climax(forced_climax=TRUE, "masochism")
|
||||
H.mob_climax(forced_climax=TRUE, cause = "masochism")
|
||||
|
||||
else//no bodypart, we deal damage with a more general method.
|
||||
H.adjustBruteLoss(damage_amount)
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
/obj/item/storage/pill_bottle/penis_enlargement = 5,
|
||||
/obj/item/storage/pill_bottle/breast_enlargement = 5,
|
||||
/obj/item/reagent_containers/glass/bottle/crocin = 5,
|
||||
/obj/item/reagent_containers/glass/bottle/camphor = 5
|
||||
/obj/item/reagent_containers/glass/bottle/camphor = 5,
|
||||
/obj/item/storage/daki = 4
|
||||
)
|
||||
contraband = list(
|
||||
|
||||
@@ -510,7 +510,7 @@
|
||||
else if (lewd && lowertext(customTriggers[trigger]) == "cum")//aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
|
||||
if(ishuman(C))
|
||||
var/mob/living/carbon/human/H = C
|
||||
H.mob_climax(forced_climax=TRUE, "MKUltra")
|
||||
H.mob_climax(forced_climax=TRUE, cause = "MKUltra")
|
||||
C.SetStun(10)//We got your stun effects in somewhere, Kev.
|
||||
|
||||
//kneel (knockdown)
|
||||
|
||||
Reference in New Issue
Block a user