diff --git a/code/game/objects/items/plushes.dm b/code/game/objects/items/plushes.dm index cc25d1d3..fa612c32 100644 --- a/code/game/objects/items/plushes.dm +++ b/code/game/objects/items/plushes.dm @@ -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" diff --git a/hyperstation/code/modules/arousal/arousalhud.dm b/hyperstation/code/modules/arousal/arousalhud.dm index 55d58183..1b18f21e 100644 --- a/hyperstation/code/modules/arousal/arousalhud.dm +++ b/hyperstation/code/modules/arousal/arousalhud.dm @@ -40,9 +40,10 @@ var/obj/item/organ/genital/belly/Belly = user.getorganslot("belly") if(Belly) if(Belly.inflatable) - dat += "Deflate belly" + dat += "Decrease belly" dat += "(Shrink your belly down a size)
" - + dat += "Increase belly size" + dat += "(Bloat your belly up a size)
" if(user.pulling) dat += "Climax over [user.pulling]" //you can cum on objects if you really want... @@ -208,6 +209,16 @@ else to_chat(usr, "Your belly is already at the minimum size! ") + if(href_list["inflate_belly"]) + var/obj/item/organ/genital/belly/E = usr.getorganslot("belly") + if(E.size < 11) + to_chat(usr, "You feel your belly bloat out..") + E.size += 1 + H.update_genitals() + else + to_chat(usr, "Your belly is already at the maximum size! ") + + 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 \ No newline at end of file + return TRUE diff --git a/icons/obj/plushes.dmi b/icons/obj/plushes.dmi index 6fb35b1c..95518935 100644 Binary files a/icons/obj/plushes.dmi and b/icons/obj/plushes.dmi differ