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:
Jolly
2022-06-05 23:40:24 -04:00
committed by GitHub
co-authored by ATH1909
parent c39b39e89e
commit 2da4f98da5
6 changed files with 28 additions and 0 deletions
@@ -1074,6 +1074,15 @@
reqs = list(/obj/item/stack/sheet/cloth = 4)
category = CAT_CLOTHING
/datum/crafting_recipe/flower_garland
name = "Flower Garland"
result = /obj/item/clothing/head/garland
time = 10
reqs = list(/obj/item/food/grown/poppy = 4,
/obj/item/food/grown/harebell = 4,
/obj/item/food/grown/rose = 4)
category = CAT_CLOTHING
/datum/crafting_recipe/guillotine
name = "Guillotine"
result = /obj/structure/guillotine
@@ -282,6 +282,10 @@
mood_change = 2
timeout = 3 MINUTES
/datum/mood_event/garland
description = "These flowers are rather soothing."
mood_change = 1
/datum/mood_event/playing_cards/add_effects(param)
var/card_players = 1
for(var/mob/living/carbon/player in viewers(COMBAT_MESSAGE_RANGE, owner))
+14
View File
@@ -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")
Binary file not shown.

Before

Width:  |  Height:  |  Size: 151 KiB

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 82 KiB

After

Width:  |  Height:  |  Size: 79 KiB

+1
View File
@@ -2628,6 +2628,7 @@
#include "code\modules\clothing\head\crown.dm"
#include "code\modules\clothing\head\fedora.dm"
#include "code\modules\clothing\head\frenchberet.dm"
#include "code\modules\clothing\head\garlands.dm"
#include "code\modules\clothing\head\hardhat.dm"
#include "code\modules\clothing\head\hat.dm"
#include "code\modules\clothing\head\helmet.dm"