Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
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
8 changes: 8 additions & 0 deletions code/modules/clothing/under/accessories.dm
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,14 @@
armor = list("melee" = 5, "bullet" = 5, "laser" = 5, "energy" = 5, "bomb" = 20, "bio" = 20, "rad" = 5, "fire" = 0, "acid" = 25)
attachment_slot = GROIN

/////////////
//Poppy Pin//
/////////////
/obj/item/clothing/accessory/poppypin
name = "Poppy pins"
desc = "A poppy pin that is meant to commemorate the fallen soldiers in wars. It symbolizes the gunshot that killed the soldiers."
icon_state = "poppy"
item_color = "poppy"
//////////////
//Ooh shiny!//
//////////////
Expand Down
Binary file modified icons/mob/accessories.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/accessories.dmi
Binary file not shown.
19 changes: 19 additions & 0 deletions yogstation/code/modules/crafting/recipes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,22 @@
/obj/item/stack/sheet/mineral/mythril = 1,
/obj/item/clothing/gloves/bracer = 1)
category = CAT_PRIMAL

/datum/crafting_recipe/poppy
name = "poppy pin"
result = /obj/item/clothing/accessory/poppypin
time = 2 SECONDS
reqs = list (
/obj/item/reagent_containers/food/snacks/grown/poppy = 1,
/obj/item/reagent_containers/syringe = 1
)
category = CAT_MISC

/datum/crafting_recipe/poppy2
name = "poppy pin"
result = /obj/item/clothing/accessory/poppypin
time = 2 SECONDS
reqs = list (
/obj/item/reagent_containers/food/snacks/grown/poppy = 1,
/obj/item/stack/rods = 1
)