1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-07-29 00:02:35 +02:00
parent 85eb54bcbc
commit f333947ed9
2 changed files with 101 additions and 24 deletions

View file

@ -3,10 +3,12 @@ Config = {}
-- Pfandautomat Props
Config.PfandautomatProps = {
'as_rv_machine_prop',
}
-- Konsumierbare Items die Pfand generieren
-- Delay in ms before adding the deposit item after consumption detection
Config.PfandDelay = 1500
-- Consumable items that generate deposits
Config.ConsumableItems = {
['beer'] = {
pfandItem = 'empty_glasbootle',
@ -26,10 +28,10 @@ Config.ConsumableItems = {
},
}
-- Pfand Items und ihre Werte (die leeren Behälter)
-- Deposit items and their values (the empty containers)
Config.PfandItems = {
['empty_bottle'] = {
pfandwert = 25, -- Pfandwert in Cent/Credits
pfandwert = 25, -- Deposit value in cents/credits
label = 'leere Flasche'
},
['empty_can'] = {
@ -40,15 +42,14 @@ Config.PfandItems = {
pfandwert = 25,
label = 'leere Glasflasche'
}
}
-- Allgemeine Einstellungen
Config.Currency = 'cash' -- 'cash' oder 'bank'
-- General settings
Config.Currency = 'cash' -- 'cash' or 'bank'
Config.Debug = true
Config.ShowPfandNotification = true -- Zeige Benachrichtigung wenn Pfand erhalten wird
Config.ShowPfandNotification = true -- Show notification when deposit is received
-- Sprache
-- Language
Config.Locale = {
['pfand_menu_title'] = 'Pfandautomat',
['pfand_menu_description'] = 'Pfandgut einlösen',
@ -58,5 +59,4 @@ Config.Locale = {
['processing'] = 'Verarbeite Pfand...',
['select_items'] = 'Wähle die Artikel aus, die du einlösen möchtest:',
['pfand_received'] = 'Du hast %s erhalten!',
}