forked from Bubberstation/Bubberstation
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
26b8762
commit 8a47f4b
Showing
2 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
52 changes: 52 additions & 0 deletions
52
modular_zzplurt/code/modules/lewd/interaction_menu/interactions/lewd/lick.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters