Skip to content

Commit

Permalink
better implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
MosleyTheMalO committed Dec 28, 2024
1 parent 4896831 commit b413d41
Showing 1 changed file with 7 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,24 +33,14 @@
user_arousal = 2
target_arousal = 2

/datum/interaction/lewd/kiss/act(mob/living/carbon/human/user, mob/living/carbon/human/target)
var/original_user_lust = user_lust
var/original_target_lust = target_lust
var/original_user_arousal = user_arousal
var/original_target_arousal = target_arousal

/datum/interaction/lewd/kiss/post_interaction(mob/living/carbon/human/user, mob/living/carbon/human/target)
. = ..()

// Check if user has TRAIT_KISS_SLUT and increase their lust
if(HAS_TRAIT(user, TRAIT_KISS_SLUT))
user_lust += 10
user_arousal += 10
user.adjust_pleasure(10, target, interaction = src, position = CLIMAX_POSITION_USER)
user.adjust_arousal(10)
// Check if target has TRAIT_KISS_SLUT and increase their lust
if(HAS_TRAIT(target, TRAIT_KISS_SLUT))
target_lust += 10
target_arousal += 10

. = ..()

user_lust = original_user_lust
target_lust = original_target_lust
user_arousal = original_user_arousal
target_arousal = original_target_arousal
target.adjust_pleasure(10, user, interaction = src, position = CLIMAX_POSITION_TARGET)
target.adjust_arousal(10)

0 comments on commit b413d41

Please sign in to comment.