Skip to content

Commit

Permalink
Adds plastic flowers. (#3168)
Browse files Browse the repository at this point in the history
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request
Adds a new item, a plastic flower. It can be reskinned into all of
flowers with an alt+click.
Adds that item into loadout, so chars can go and have flowers as part of
their drip.


![obraz](https://github.com/shiptest-ss13/Shiptest/assets/108196626/247a8051-3316-446d-9771-79c4d6bece6a)
<!-- Describe The Pull Request. Please be sure every change is
documented or this can delay review and even discourage maintainers from
merging your PR! -->

## Why It's Good For The Game
More options for character creation.
<!-- Please add a short description of why you think these changes would
benefit the game. If you can't justify it in words, it might not be
worth adding. -->

## Changelog

:cl:
add: Added a plastic flower - a selection of flowers to wear. Added it
to the loadout too.
/:cl:

<!-- Both :cl:'s are required for the changelog to work! You can put
your name to the right of the first :cl: if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->
  • Loading branch information
Sadhorizon authored Jul 8, 2024
1 parent 4416e37 commit 402457c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
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))

0 comments on commit 402457c

Please sign in to comment.