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

Rename the paint crate, and add the artistic toolbox to it. #17745

Merged
merged 2 commits into from
Feb 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions code/modules/economy/supply_packs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,12 @@ ABSTRACT_TYPE(/datum/supply_packs)
syndicate = 1

/datum/supply_packs/paint
name = "Paint Cans"
desc = "A selection of random paints."
contains = list(/obj/item/paint_can/random = 4)
name = "Artistic Supplies Crate"
desc = "A selection of random paints, and an artistic toolbox. Get arty!"
contains = list(/obj/item/paint_can/random = 4, /obj/item/storage/toolbox/artistic)
cost = PAY_TRADESMAN*3
containertype = /obj/storage/crate
containername = "Paint Crate"
containertype = /obj/storage/crate/packing
containername = "Artistic Crate"

/datum/supply_packs/neon_lining
name = "Neon Lining Crate"
Expand Down