Tajaran cuisine: the second revolution (#6066)

This commit is contained in:
Alberyk
2019-02-25 15:16:02 +01:00
committed by Werner
parent 7d37440f30
commit 9d32fc3395
14 changed files with 165 additions and 19 deletions
+11 -10
View File
@@ -65,12 +65,6 @@ STOCK_ITEM_COMMON(lamp, 2.4)
STOCK_ITEM_COMMON(mousetrap, 2)
new /obj/item/weapon/storage/box/mousetraps(L)
STOCK_ITEM_COMMON(donk, 2)
if (prob(10))
new /obj/item/weapon/storage/box/sinpockets(L)
else
new /obj/item/weapon/storage/box/donkpockets(L)
STOCK_ITEM_COMMON(sterile, 2)
new /obj/item/weapon/storage/box/gloves(L)
new /obj/item/weapon/storage/box/masks(L)
@@ -467,10 +461,17 @@ STOCK_ITEM_COMMON(snacks, 4)
if (!isturf(L))
L = get_turf(pick(CS.tables))
if(prob(50))
new /obj/item/weapon/storage/box/snack(L)
else
new /obj/item/weapon/storage/box/produce(L)
var/list/snacks = list(
/obj/item/weapon/storage/box/donkpockets = 10,
/obj/item/weapon/storage/box/sinpockets = 5,
/obj/item/weapon/storage/box/snack = 10,
/obj/item/weapon/storage/box/produce = 8,
/obj/item/weapon/storage/field_ration = 3,
/obj/item/weapon/storage/field_ration/nka = 1
)
var/type = pickweight(snacks)
new type(L)
STOCK_ITEM_COMMON(oxytank, 2.5)
new /obj/item/weapon/tank/oxygen(L)