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

View File

@@ -1038,11 +1038,17 @@
attack_verb = list("bleated", "wobbled", "Melony'd")
/obj/item/toy/plush/rose
desc = "An energetic looking snake toy with a silly little rose hanging from the side of his head.."
desc = "An energetic looking snake toy with a silly little rose hanging from the side of his head."
icon_state = "rose"
item_state = "rose"
attack_verb = list("hissed", "nibbled", "squished")
/obj/item/toy/plush/kinichi
desc = "A silly looking plushie of an adorable lizard janitor. His smile is heartwarming to look at."
icon_state = "kinichi"
item_state = "kinichi"
attack_verb = list("hissed","squished", "hugged")
/obj/item/toy/plush/mammal/fox
icon_state = "fox"
item_state = "fox"

View File

@@ -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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 50 KiB