Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds plastic flowers. #3168

Merged
merged 2 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions code/modules/client/loadout/loadout_hat.dm
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,7 @@
/datum/gear/hat/trapper
display_name = "trapper hat"
path = /obj/item/clothing/head/trapper

/datum/gear/hat/flowers
display_name = "plastic flower, pickable"
path = /obj/item/clothing/head/plastic_flower
17 changes: 17 additions & 0 deletions code/modules/clothing/head/misc_special.dm
Original file line number Diff line number Diff line change
Expand Up @@ -367,3 +367,20 @@
if(!warped)
warp_up()

/obj/item/clothing/head/plastic_flower
name = "plastic flower"
desc = "A realistic imitation of a flower. Not edible though."
icon = 'icons/obj/hydroponics/harvest.dmi'
icon_state = "poppy"
body_parts_covered = null
unique_reskin = list(
"Poppy" = "poppy",
"Sunflower" = "sunflower",
"Moonflower" = "moonflower",
"Novaflower" = "novaflower",
"Harebell" = "harebell",
"Geranium" = "geranium",
"Lily" = "lily"
)
custom_materials = (list(/datum/material/plastic = 1000))

Loading