Skip to content

Commit

Permalink
Make body bag printable in the autolathe (#2285)
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

Body bags are printable for a price of 2 plastic sheet in every
autolathe/protolathe.

## Why It's Good For The Game

Honestly they are just handy and the design feel basic enough to be
available everywere.

## Changelog

:cl:
add: Body bags in the autolathe.
/: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. -->

Co-authored-by: ritorizo <ritorizo@localhost>
  • Loading branch information
ritorizo and ritorizo authored Sep 13, 2023
1 parent e9a2a5d commit 87ff548
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions code/game/objects/items/bodybag.dm
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
icon = 'icons/obj/bodybag.dmi'
icon_state = "bodybag_folded"
w_class = WEIGHT_CLASS_SMALL
custom_materials = list(/datum/material/plastic = 4000)
var/unfoldedbag_path = /obj/structure/closet/body_bag

/obj/item/bodybag/attack_self(mob/user)
Expand Down
8 changes: 8 additions & 0 deletions code/modules/research/designs/autolathe_designs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1175,6 +1175,14 @@
build_path = /obj/item/storage/bag/trash
category = list("initial","Tools","Tool Designs","Misc")

/datum/design/bodybag
name="Body Bag"
id="bodybag"
build_type = AUTOLATHE | PROTOLATHE
materials = list(/datum/material/plastic = 4000)
build_path = /obj/item/bodybag
category = list("initial","Medical","Misc")

/datum/design/fishing_rod_basic
name = "Fishing Rod"
id = "fishing rod"
Expand Down

0 comments on commit 87ff548

Please sign in to comment.