Skip to content

Commit

Permalink
fixes things again
Browse files Browse the repository at this point in the history
ugh
  • Loading branch information
MosleyTheMalO committed Dec 29, 2024
1 parent 0a0671a commit e62ba19
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,18 @@
"You're forced to smell %USER%'s fart",
"%USER%'s flatulence fills your nostrils"
)
sound_possible = GLOB.brap_noises
sound_possible = list()
sound_range = 1
sound_use = TRUE
user_pleasure = 0
target_pleasure = 0
user_arousal = 2
target_arousal = 2

/datum/interaction/lewd/unholy/facefart/New()
sound_possible = GLOB.brap_noises // GLOB.brap_noises: expected a constant expression
. = ..()

/datum/interaction/lewd/unholy/crotchfart
name = "Crotch Fart"
description = "Fart on their crotch."
Expand All @@ -47,14 +51,18 @@
"You feel %USER%'s fart on your groin",
"%USER%'s flatulence washes over your genitals"
)
sound_possible = GLOB.brap_noises
sound_possible = list()
sound_range = 1
sound_use = TRUE
user_pleasure = 0
target_pleasure = 2
user_arousal = 3
target_arousal = 4

/datum/interaction/lewd/unholy/crotchfart/New()
sound_possible = GLOB.brap_noises // GLOB.brap_noises: expected a constant expression
. = ..()

/datum/interaction/lewd/unholy/fartfuck
name = "Fart Fuck"
description = "Fuck their ass + fart."
Expand Down Expand Up @@ -88,13 +96,18 @@
'modular_zzplurt/sound/interactions/bang2.ogg',
'modular_zzplurt/sound/interactions/bang3.ogg'
)
sound_possible = list()
sound_range = 1
sound_use = TRUE
user_pleasure = 6
target_pleasure = 4
user_arousal = 8
target_arousal = 6

/datum/interaction/lewd/unholy/fartfuck/New()
sound_possible = GLOB.brap_noises // GLOB.brap_noises: expected a constant expression
. = ..()

/datum/interaction/lewd/unholy/fartfuck/post_interaction(mob/living/carbon/human/user, mob/living/carbon/human/target)
. = ..()
conditional_pref_sound(user, pick('modular_zzplurt/sound/interactions/bang1.ogg',
Expand Down Expand Up @@ -125,10 +138,14 @@
"You feel %USER%'s mouth pulling gas from your hole",
"%USER% inhales your flatulence eagerly"
)
sound_possible = GLOB.brap_noises
sound_possible = list()
sound_range = 1
sound_use = TRUE
user_pleasure = 0
target_pleasure = 3
user_arousal = 4
target_arousal = 5

/datum/interaction/lewd/unholy/suck_fart/New()
sound_possible = GLOB.brap_noises // GLOB.brap_noises: expected a constant expression
. = ..()
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,18 @@
"You're forced to experience %USER%'s mess",
"%USER%'s waste covers your face"
)
sound_possible = GLOB.brap_noises
sound_possible = list()
sound_range = 1
sound_use = TRUE
user_pleasure = 0
target_pleasure = 0
user_arousal = 2
target_arousal = 2

/datum/interaction/lewd/unholy/faceshit/New()
sound_possible = GLOB.brap_noises // GLOB.brap_noises: expected a constant expression
. = ..()

/datum/interaction/lewd/unholy/crotchshit
name = "Crotch Shit"
description = "Shit on their crotch."
Expand All @@ -47,7 +51,7 @@
"You feel %USER%'s mess on your groin",
"%USER%'s waste covers your genitals"
)
sound_possible = GLOB.brap_noises
sound_possible = list()
sound_range = 1
sound_use = TRUE
user_pleasure = 0
Expand Down Expand Up @@ -95,6 +99,10 @@
user_arousal = 8
target_arousal = 6

/datum/interaction/lewd/unholy/shitfuck/New()
sound_possible = GLOB.brap_noises // GLOB.brap_noises: expected a constant expression
. = ..()

/datum/interaction/lewd/unholy/shitfuck/post_interaction(mob/living/carbon/human/user, mob/living/carbon/human/target)
. = ..()
conditional_pref_sound(user, pick('modular_zzplurt/sound/interactions/bang1.ogg',
Expand Down Expand Up @@ -125,10 +133,14 @@
"You feel %USER%'s mouth pulling your mess from your hole",
"%USER% eagerly consumes your waste"
)
sound_possible = GLOB.brap_noises
sound_possible = list()
sound_range = 1
sound_use = TRUE
user_pleasure = 0
target_pleasure = 3
user_arousal = 4
target_arousal = 5

/datum/interaction/lewd/unholy/suck_shit/New()
sound_possible = GLOB.brap_noises // GLOB.brap_noises: expected a constant expression
. = ..()

0 comments on commit e62ba19

Please sign in to comment.