mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-19 20:15:47 +01:00
Ports the Flower Garland from JollyStation (#67468)
* pick 12 flowers and regret your decisions * Update code/modules/clothing/head/garlands.dm Co-authored-by: ATH1909 <42606352+ATH1909@users.noreply.github.com> * Update code/modules/clothing/head/garlands.dm Co-authored-by: ATH1909 <42606352+ATH1909@users.noreply.github.com> * Update code/modules/clothing/head/garlands.dm Co-authored-by: ATH1909 <42606352+ATH1909@users.noreply.github.com> * Update code/modules/clothing/head/garlands.dm Co-authored-by: ATH1909 <42606352+ATH1909@users.noreply.github.com> * grammar * sanity mood event * willards review Co-authored-by: ATH1909 <42606352+ATH1909@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
/obj/item/clothing/head/garland
|
||||
name = "floral garland"
|
||||
desc = "Someone, somewhere, is starving while wearing this. And it's definitely not you."
|
||||
icon_state = "garland"
|
||||
worn_icon_state = "garland"
|
||||
|
||||
/obj/item/clothing/head/garland/equipped(mob/user, slot)
|
||||
. = ..()
|
||||
if(slot_flags & slot)
|
||||
SEND_SIGNAL(user, COMSIG_ADD_MOOD_EVENT, "garland", /datum/mood_event/garland)
|
||||
|
||||
/obj/item/clothing/head/garland/dropped(mob/user)
|
||||
. = ..()
|
||||
SEND_SIGNAL(user, COMSIG_CLEAR_MOOD_EVENT, "garland")
|
||||
Reference in New Issue
Block a user