mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 21:18:37 +01:00
## About The Pull Request raises ticket slots to 8 adds blood tea, blood, glucose pens, soda and chewing gum to the pack options ## Why It's Good For The Game makes the ration tickets harder to lose due to overfilling on them during a long scene or something, less incentives to bypass the cap by putting them all in a folder (honestly could buff the slots even more to something like 16, but not sure, maybe at that point it would make people more prone to forget about the tickets...) makes ration tickets a better option for hemofages, and vegetarians/people with allergies adds some more variety ## Proof Of Testing i compiled and tested it on localhost so it should work ## Changelog 🆑 balance: ration tickets capacity doubled add: added blood bag and glucose as options to the regular ration ticket add: added blood tea and soda + lemonade as drink option for luxury ration ticket add: added chewing gum as option for the luxury ration ticket /🆑
15 lines
543 B
Plaintext
15 lines
543 B
Plaintext
/obj/item/storage/ration_ticket_book
|
|
name = "ration ticket book"
|
|
desc = "A small booklet able to hold all your ration tickets. More will be available here as your paychecks come in."
|
|
icon = 'modular_skyrat/modules/paycheck_rations/icons/tickets.dmi'
|
|
icon_state = "ticket_book"
|
|
w_class = WEIGHT_CLASS_SMALL
|
|
|
|
/obj/item/storage/ration_ticket_book/Initialize(mapload)
|
|
. = ..()
|
|
atom_storage.max_specific_storage = WEIGHT_CLASS_SMALL
|
|
atom_storage.max_slots = 8
|
|
atom_storage.set_holdable(list(
|
|
/obj/item/paper/paperslip/ration_ticket,
|
|
))
|