Cum inflation options and belly sizes.

fun
This commit is contained in:
QuoteFox
2021-05-10 18:28:22 +01:00
parent 75194c9b0c
commit 12ee6c6f43
10 changed files with 60 additions and 3 deletions
@@ -36,6 +36,13 @@
dat += "<span class='linkOff'>Kiss</span></A>"
dat += "(Requires a partner)<BR>"
var/obj/item/organ/genital/belly/Belly = user.getorganslot("belly")
if(Belly)
if(Belly.inflatable)
dat += "<a href='byond://?src=[REF(src)];shrink_belly=1'>Deflate belly</A>"
dat += "(Shrink your belly down a size)<BR>"
if(user.pulling)
dat += "<a href='byond://?src=[REF(src)];climaxover=1'>Climax over [user.pulling]</A>" //you can cum on objects if you really want...
@@ -187,6 +194,15 @@
to_chat(usr, "<span class='warning'>You cannot do this alone!</span>")
return
if(href_list["shrink_belly"])
var/obj/item/organ/genital/belly/E = usr.getorganslot("belly")
if(E.size > 0)
to_chat(usr, "<span class='userlove'>You feel your belly diminish.</span>")
E.size -= 1
H.update_genitals()
else
to_chat(usr, "<span class='warning'>Your belly is already at the minimum size! </span>")
if(href_list["removecondom"])
H.menuremovecondom()