mirror of
https://github.com/KabKebab/GS13.git
synced 2026-08-26 06:26:17 +01:00
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:
@@ -1038,11 +1038,17 @@
|
|||||||
attack_verb = list("bleated", "wobbled", "Melony'd")
|
attack_verb = list("bleated", "wobbled", "Melony'd")
|
||||||
|
|
||||||
/obj/item/toy/plush/rose
|
/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"
|
icon_state = "rose"
|
||||||
item_state = "rose"
|
item_state = "rose"
|
||||||
attack_verb = list("hissed", "nibbled", "squished")
|
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
|
/obj/item/toy/plush/mammal/fox
|
||||||
icon_state = "fox"
|
icon_state = "fox"
|
||||||
item_state = "fox"
|
item_state = "fox"
|
||||||
|
|||||||
@@ -40,9 +40,10 @@
|
|||||||
var/obj/item/organ/genital/belly/Belly = user.getorganslot("belly")
|
var/obj/item/organ/genital/belly/Belly = user.getorganslot("belly")
|
||||||
if(Belly)
|
if(Belly)
|
||||||
if(Belly.inflatable)
|
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 += "(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)
|
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...
|
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
|
else
|
||||||
to_chat(usr, "<span class='warning'>Your belly is already at the minimum size! </span>")
|
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"])
|
if(href_list["removecondom"])
|
||||||
H.menuremovecondom()
|
H.menuremovecondom()
|
||||||
|
|
||||||
@@ -503,4 +514,4 @@ obj/screen/arousal/proc/kiss()
|
|||||||
cut_overlay(mutable_appearance('hyperstation/icons/effects/cumoverlay.dmi', "cum_large"))
|
cut_overlay(mutable_appearance('hyperstation/icons/effects/cumoverlay.dmi', "cum_large"))
|
||||||
if(cum_splatter_icon)
|
if(cum_splatter_icon)
|
||||||
cut_overlay(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 |
Reference in New Issue
Block a user