Files
Bubberstation/code/game/objects/items/storage/boxes/cargo_boxes.dm
SkyratBot 7502ddf9bb [MIRROR] Merges the Export Scanner, Sales Tagger, and Price Tagger into one item. [MDB IGNORE] (#17212)
* Merges the Export Scanner, Sales Tagger, and Price Tagger into one item.

* Update code/game/objects/structures/crates_lockers/closets/secure/cargo.dm

Co-authored-by: coldud13 <coldud13@users.noreply.github.com>

* maps and crates

Co-authored-by: ArcaneMusic <41715314+ArcaneMusic@users.noreply.github.com>
Co-authored-by: Tastyfish <crazychris32@gmail.com>
Co-authored-by: coldud13 <coldud13@users.noreply.github.com>
2022-10-28 22:11:01 -04:00

16 lines
557 B
Plaintext

// This file contains all boxes used by the Cargo department and its purpose on the station.
/obj/item/storage/box/shipping
name = "box of shipping supplies"
desc = "Contains several scanners and labelers for shipping things. Wrapping Paper not included."
illustration = "shipping"
/obj/item/storage/box/shipping/PopulateContents()
var/static/items_inside = list(
/obj/item/dest_tagger=1,
/obj/item/universal_scanner=1,
/obj/item/stack/package_wrap/small=2,
/obj/item/stack/wrapping_paper/small=1,
)
generate_items_inside(items_inside,src)