mirror of
https://github.com/Yawn-Wider/YWPolarisVore.git
synced 2026-08-26 22:46:47 +01:00
Merge branch 'release' of https://github.com/VOREStation/VOREStation into izac
This commit is contained in:
@@ -2539,6 +2539,7 @@ Departamental Swimsuits, for general use
|
||||
body_parts_covered = FACE
|
||||
flags_inv = HIDEFACE
|
||||
item_flags = FLEXIBLEMATERIAL
|
||||
protean_drop_whitelist = TRUE
|
||||
|
||||
//codeme: Perrin Kade
|
||||
/obj/item/clothing/shoes/fluff/gildedshoes_perrin
|
||||
|
||||
@@ -1513,3 +1513,42 @@
|
||||
icon = 'icons/vore/custom_items_vr.dmi'
|
||||
item_icons = list(slot_l_hand_str = 'icons/vore/custom_items_left_hand_vr.dmi', slot_r_hand_str = 'icons/vore/custom_items_right_hand_vr.dmi')
|
||||
icon_state = "kyuholotar"
|
||||
|
||||
//Pandora029 - Seona Young
|
||||
/obj/item/toy/plushie/fluff/seona_mofuorb
|
||||
name = "comically oversized fox-orb plushie"
|
||||
desc = "A humongous & adorable Largo© brand stuffed-toy that resembles a mix of slime and absurdly fluffy fox. It's colored white largely, with the tips of it's fox-like ears and tail transitioning to a nice pink-ish color. Comes complete with reactive expressions, according to the label."
|
||||
icon = 'icons/vore/custom_items_vr.dmi'
|
||||
icon_state = "pandorba"
|
||||
pokephrase = "Gecker!"
|
||||
attack_verb = list("fluffed", "fwomped", "fuwa'd", "squirmshed")
|
||||
|
||||
/obj/item/toy/plushie/fluff/seona_mofuorb/attack_self(mob/user as mob)
|
||||
if(stored_item && opened && !searching)
|
||||
searching = TRUE
|
||||
if(do_after(user, 10))
|
||||
to_chat(user, "You find \icon[stored_item] [stored_item] in [src]!")
|
||||
stored_item.forceMove(get_turf(src))
|
||||
stored_item = null
|
||||
searching = FALSE
|
||||
return
|
||||
else
|
||||
searching = FALSE
|
||||
|
||||
if(world.time - last_message <= 5 SECONDS)
|
||||
return
|
||||
if(user.a_intent == I_HELP)
|
||||
user.visible_message("<span class='notice'><b>\The [user]</b> hugs [src]!</span>","<span class='notice'>You hug [src]!</span>")
|
||||
icon_state = "pandorba"
|
||||
else if (user.a_intent == I_HURT)
|
||||
user.visible_message("<span class='warning'><b>\The [user]</b> punches [src]!</span>","<span class='warning'>You punch [src]!</span>")
|
||||
icon_state = "pandorba_h"
|
||||
else if (user.a_intent == I_GRAB)
|
||||
user.visible_message("<span class='warning'><b>\The [user]</b> attempts to strangle [src]!</span>","<span class='warning'>You attempt to strangle [src]!</span>")
|
||||
icon_state = "pandorba_g"
|
||||
else
|
||||
user.visible_message("<span class='notice'><b>\The [user]</b> pokes [src].</span>","<span class='notice'>You poke [src].</span>")
|
||||
icon_state = "pandorba_d"
|
||||
playsound(src, 'sound/items/drop/plushie.ogg', 25, 0)
|
||||
visible_message("[src] says, \"[pokephrase]\"")
|
||||
last_message = world.time
|
||||
|
||||
Reference in New Issue
Block a user