Adds craftable and wearable flower crowns (#24248)

* deja vu! i've just been in this place before

* PLEASE PLEASE WORK. PLEASE PLEASE
This commit is contained in:
synthtee
2024-02-24 19:10:38 +00:00
committed by GitHub
parent df5c7f1f9a
commit 9892dd9fe4
7 changed files with 93 additions and 0 deletions
+38
View File
@@ -280,3 +280,41 @@
/obj/item/assembly/voice = 1,
/obj/item/stack/cable_coil = 5)
category = CAT_CLOTHING
/datum/crafting_recipe/flower_crown
name = "Flower Crown"
result = list(/obj/item/clothing/head/flower_crown)
reqs = list(/obj/item/food/snacks/grown/poppy = 3,
/obj/item/food/snacks/grown/poppy/lily = 3,
/obj/item/grown/sunflower = 3
)
time = 2 SECONDS
category = CAT_CLOTHING
/datum/crafting_recipe/sunflower_crown
name = "Sunflower Crown"
result = list(/obj/item/clothing/head/sunflower_crown)
reqs = list(/obj/item/grown/sunflower = 5)
time = 2 SECONDS
category = CAT_CLOTHING
/datum/crafting_recipe/poppy_crown
name = "Poppy Crown"
result = list(/obj/item/clothing/head/poppy_crown)
reqs = list(/obj/item/food/snacks/grown/poppy = 5)
time = 2 SECONDS
category = CAT_CLOTHING
/datum/crafting_recipe/lily_crown
name = "Lily Crown"
result = list(/obj/item/clothing/head/lily_crown)
reqs = list(/obj/item/food/snacks/grown/poppy/lily = 5)
time = 2 SECONDS
category = CAT_CLOTHING
/datum/crafting_recipe/geranium_crown
name = "Geranium Crown"
result = list(/obj/item/clothing/head/geranium_crown)
reqs = list(/obj/item/food/snacks/grown/poppy/geranium = 5)
time = 2 SECONDS
category = CAT_CLOTHING