mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-21 19:57:07 +01:00
18 lines
584 B
Plaintext
18 lines
584 B
Plaintext
/obj/machinery/vending/barkbox/Initialize(mapload)
|
|
var/list/extra_products = list(
|
|
/obj/item/clothing/neck/petcollar/spike = 5,
|
|
/obj/item/clothing/neck/petcollar/holo = 5,
|
|
/obj/item/clothing/neck/petcollar/casino = 5,
|
|
/obj/item/clothing/neck/petcollar/handmade = 5,
|
|
/obj/item/leash = 4
|
|
)
|
|
var/list/extra_contraband = list(
|
|
/obj/item/clothing/neck/petcollar/locked/spike = 2,
|
|
/obj/item/clothing/neck/petcollar/locked/holo = 2,
|
|
/obj/item/clothing/neck/petcollar/locked/casino = 2
|
|
)
|
|
LAZYADD(products, extra_products)
|
|
LAZYADD(contraband, extra_contraband)
|
|
. = ..()
|
|
|