Skip to content

Commit

Permalink
lick (mmm feet)
Browse files Browse the repository at this point in the history
  • Loading branch information
MosleyTheMalO committed Dec 27, 2024
1 parent 26b8762 commit 8a47f4b
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/datum/interaction/lewd/rimjob
name = "Rim"
description = "Lick their ass."
interaction_requires = list(INTERACTION_REQUIRE_SELF_MOUTH)
target_required_parts = list(ORGAN_SLOT_ANUS = REQUIRE_GENITAL_EXPOSED)
cum_genital = list(CLIMAX_POSITION_TARGET = CLIMAX_BOTH)
message = list(
"licks %TARGET%'s asshole.",
"rims %TARGET% deeply.",
"buries their tongue in %TARGET%'s ass.",
"presses their tongue against %TARGET%'s pucker.",
"gives %TARGET%'s ass a passionate licking."
)
sound_possible = list(
'modular_zzplurt/sound/interactions/champ_fingering.ogg'
)
sound_range = 1
sound_use = TRUE
user_pleasure = 0
target_pleasure = 10

/datum/interaction/lewd/lickfeet
name = "Lick Feet"
description = "Lick their feet."
interaction_requires = list(INTERACTION_REQUIRE_SELF_MOUTH, INTERACTION_REQUIRE_TARGET_FEET)
message = list(
"licks %TARGET%'s bare feet.",
"runs their tongue along %TARGET%'s soles.",
"laps at %TARGET%'s toes.",
"tastes %TARGET%'s bare feet."
)
sound_possible = list(
'modular_zzplurt/sound/interactions/champ_fingering.ogg'
)
sound_range = 1
sound_use = TRUE
user_pleasure = 0
target_pleasure = 3

/datum/interaction/lewd/lickfeet/act(mob/living/carbon/human/user, mob/living/carbon/human/target)
var/list/original_messages = message.Copy()
var/obj/item/clothing/shoes/shoes = target.get_item_by_slot(ITEM_SLOT_FEET)

if(shoes)
message = list(
"licks %TARGET%'s [shoes.name].",
"runs their tongue over %TARGET%'s [shoes.name].",
"drags their tongue across %TARGET%'s [shoes.name].",
"tastes %TARGET%'s [shoes.name]."
)
. = ..()
message = original_messages
1 change: 1 addition & 0 deletions tgstation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -9590,6 +9590,7 @@
#include "modular_zzplurt\code\modules\lewd\interaction_menu\interactions\lewd\fuck.dm"
#include "modular_zzplurt\code\modules\lewd\interaction_menu\interactions\lewd\kiss.dm"
#include "modular_zzplurt\code\modules\lewd\interaction_menu\interactions\lewd\handjob.dm"
#include "modular_zzplurt\code\modules\lewd\interaction_menu\interactions\lewd\lick.dm"
#include "modular_zzplurt\code\modules\lewd\interaction_menu\interactions\lewd\nipsuck.dm"
#include "modular_zzplurt\code\modules\lewd\interaction_menu\interactions\lewd\oral.dm"
#include "modular_zzplurt\code\modules\lewd\interaction_menu\lewd_helpers\human.dm"
Expand Down

0 comments on commit 8a47f4b

Please sign in to comment.