mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 08:37:43 +01:00
Fixes vending machine distribution (#891)
## About The Pull Request Fixes the vending machine spawn table so it isn't 90% imported vendors and zero drink machines. ## Why It's Good For The Game One more shift where I have to run across the station past 10 Moffic vending machines to only find out there isn't a single drink machine on the station, I'm going to punch through a reinforced wall. ## Changelog 🆑 LT3 fix: The missing cold drink vending machines have been found in storage /🆑 --------- Co-authored-by: projectkepler-RU <99981766+projectkepler-ru@users.noreply.github.com> Co-authored-by: Waterpig <49160555+Majkl-J@users.noreply.github.com>
This commit is contained in:
co-authored by
projectkepler-RU
Waterpig
parent
b5b8dc1535
commit
d64d76e488
@@ -1,32 +1,27 @@
|
||||
/obj/effect/spawner/random/vending/snackvend
|
||||
loot_type_path = null
|
||||
loot = list(
|
||||
/obj/machinery/vending/imported = 100,
|
||||
/obj/machinery/vending/imported/yangyu = 100,
|
||||
/obj/machinery/vending/imported/mothic = 100,
|
||||
/obj/machinery/vending/imported/tiziran = 100,
|
||||
/obj/machinery/vending/halloween_chocolate = 100,
|
||||
/obj/machinery/vending/snack = 20,
|
||||
/obj/machinery/vending/snack/blue = 20,
|
||||
/obj/machinery/vending/snack/green = 20,
|
||||
/obj/machinery/vending/snack/orange = 20,
|
||||
/obj/machinery/vending/snack/teal = 20
|
||||
/obj/machinery/vending/imported = 3,
|
||||
/obj/machinery/vending/imported/yangyu = 3,
|
||||
/obj/machinery/vending/imported/mothic = 3,
|
||||
/obj/machinery/vending/imported/tiziran = 3,
|
||||
/obj/machinery/vending/halloween_chocolate = 2,
|
||||
/obj/machinery/vending/snack/blue = 1,
|
||||
/obj/machinery/vending/snack/green = 1,
|
||||
/obj/machinery/vending/snack/orange = 1,
|
||||
/obj/machinery/vending/snack/teal = 1,
|
||||
)
|
||||
|
||||
/obj/effect/spawner/random/vending/colavend //These can serve both snacks AND drinks so its kinda both of them?
|
||||
/obj/effect/spawner/random/vending/colavend
|
||||
loot_type_path = null
|
||||
loot = list(
|
||||
/obj/machinery/vending/imported = 100,
|
||||
/obj/machinery/vending/imported/yangyu = 100,
|
||||
/obj/machinery/vending/imported/mothic = 100,
|
||||
/obj/machinery/vending/imported/tiziran = 100,
|
||||
/obj/machinery/vending/cola/black = 5,
|
||||
/obj/machinery/vending/cola/blue = 5,
|
||||
/obj/machinery/vending/cola/pwr_game = 5,
|
||||
/obj/machinery/vending/cola/red = 5,
|
||||
/obj/machinery/vending/cola/shamblers = 50,
|
||||
/obj/machinery/vending/cola/shamblers = 10,
|
||||
/obj/machinery/vending/cola/sodie = 5,
|
||||
/obj/machinery/vending/cola/space_up = 5,
|
||||
/obj/machinery/vending/cola/starkist = 5,
|
||||
/obj/machinery/vending/sovietsoda = 1
|
||||
/obj/machinery/vending/sovietsoda = 1,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user