added belly size increase button, added kinichi plush

Just as the title says. The belly size increase button allows you to move up a size, similar to "deflate belly" button
This commit is contained in:
Sonoida
2022-12-15 20:41:05 +01:00
parent 9880b65240
commit 91cab0bdca
3 changed files with 21 additions and 4 deletions
@@ -40,9 +40,10 @@
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 += "<a href='byond://?src=[REF(src)];shrink_belly=1'>Decrease belly</A>"
dat += "(Shrink your belly down a size)<BR>"
dat += "<a href='byond://?src=[REF(src)];inflate_belly=1'>Increase belly size</A>"
dat += "(Bloat your belly up 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...
@@ -208,6 +209,16 @@
else
to_chat(usr, "<span class='warning'>Your belly is already at the minimum size! </span>")
if(href_list["inflate_belly"])
var/obj/item/organ/genital/belly/E = usr.getorganslot("belly")
if(E.size < 11)
to_chat(usr, "<span class='userlove'>You feel your belly bloat out..</span>")
E.size += 1
H.update_genitals()
else
to_chat(usr, "<span class='warning'>Your belly is already at the maximum size! </span>")
if(href_list["removecondom"])
H.menuremovecondom()
@@ -503,4 +514,4 @@ obj/screen/arousal/proc/kiss()
cut_overlay(mutable_appearance('hyperstation/icons/effects/cumoverlay.dmi', "cum_large"))
if(cum_splatter_icon)
cut_overlay(cum_splatter_icon)
return TRUE
return TRUE