diff --git a/code/_globalvars/lists/maint_loot_tables.dm b/code/_globalvars/lists/maint_loot_tables.dm index 918287d43a6..8a0961a42be 100644 --- a/code/_globalvars/lists/maint_loot_tables.dm +++ b/code/_globalvars/lists/maint_loot_tables.dm @@ -114,20 +114,18 @@ GLOBAL_LIST_INIT(maintenance_loot_tier_1, list( list( // Small chance of tier 1 stock parts - /obj/item/stock_parts/capacitor, - /obj/item/stock_parts/manipulator, - /obj/item/stock_parts/matter_bin, - /obj/item/stock_parts/micro_laser, - /obj/item/stock_parts/scanning_module, + /obj/item/stock_parts/capacitor = 2, + /obj/item/stock_parts/manipulator = 2, + /obj/item/stock_parts/matter_bin = 2, + /obj/item/stock_parts/micro_laser = 2, + /obj/item/stock_parts/scanning_module = 2, // Coins - /obj/item/coin/silver, - /obj/item/coin/twoheaded, + /obj/item/coin/silver = 2, + /obj/item/coin/twoheaded = 2, + /obj/item/toy/round_tuit, ) = 2, - // A round tuit - /obj/item/toy/round_tuit = 1, - )) GLOBAL_LIST_INIT(maintenance_loot_tier_2, list( diff --git a/code/game/objects/items/storage/wallets.dm b/code/game/objects/items/storage/wallets.dm index ee8e5bb505e..05da9245a86 100644 --- a/code/game/objects/items/storage/wallets.dm +++ b/code/game/objects/items/storage/wallets.dm @@ -14,6 +14,7 @@ /obj/item/seeds, /obj/item/stack/medical, /obj/item/toy/crayon, + /obj/item/toy/round_tuit, /obj/item/coin, /obj/item/food/candy/chocolate_coin, /obj/item/food/candy/coin, @@ -112,6 +113,7 @@ /obj/item/stack/spacecash/c100) var/coin = pickweight(list(/obj/item/coin/iron = 3, /obj/item/coin/silver = 2, + /obj/item/toy/round_tuit = 1, /obj/item/coin/gold = 1)) new cash(src) diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index ffd78c02e4c..971627441a3 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -2062,6 +2062,7 @@ desc = "Tuits are hard to come by, especially the round ones. Guard it with your life." icon = 'icons/obj/toy.dmi' icon_state = "round_tuit_wooden" + w_class = WEIGHT_CLASS_TINY COOLDOWN_DECLARE(toy_message_cooldown) /obj/item/toy/round_tuit/activate_self(mob/user)