1
0
Fork 0
forked from Simnation/Main
Main/resources/[inventory]/tgiann-inventory/configs/configVendingMachine.lua

26 lines
681 B
Lua
Raw Normal View History

2025-07-09 14:25:50 +02:00
config.vendingMachine = {
2025-07-10 12:07:36 +02:00
active = false,
2025-07-09 14:25:50 +02:00
machines = {
{
objects = {
'prop_vend_soda_01',
'prop_vend_soda_02',
},
items = {
{ name = 'kurkakola', price = 4, amount = 50 },
{ name = 'water_bottle', price = 4, amount = 50 },
}
},
{
objects = {
'prop_vend_water_01',
'prop_vend_coffe_01',
},
items = {
{ name = 'kurkakola', price = 7, amount = 50 },
{ name = 'water_bottle', price = 2, amount = 50 },
}
},
}
}