forked from Simnation/Main
67 lines
1.8 KiB
Lua
67 lines
1.8 KiB
Lua
Config = {}
|
|
|
|
-- Pfandautomat Props
|
|
Config.PfandautomatProps = {
|
|
'prop_vend_soda_01',
|
|
'prop_vend_soda_02',
|
|
'prop_vend_water_01'
|
|
}
|
|
|
|
-- Konsumierbare Items die Pfand generieren
|
|
Config.ConsumableItems = {
|
|
['beer'] = {
|
|
pfandItem = 'empty_glasbootle',
|
|
chance = 100, -- 100% Chance Pfand zu bekommen
|
|
label = 'Bier'
|
|
},
|
|
['water_bottle'] = {
|
|
pfandItem = 'empty_bottle',
|
|
chance = 100,
|
|
label = 'Wasserflasche'
|
|
},
|
|
['ecola_dose'] = {
|
|
pfandItem = 'soda_can',
|
|
chance = 100,
|
|
label = 'Cola'
|
|
},
|
|
['sprunk_dose'] = {
|
|
pfandItem = 'soda_can',
|
|
chance = 100,
|
|
label = 'Sprite'
|
|
},
|
|
}
|
|
|
|
-- Pfand Items und ihre Werte (die leeren Behälter)
|
|
Config.PfandItems = {
|
|
['empty_bottle'] = {
|
|
pfandwert = 25, -- Pfandwert in Cent/Credits
|
|
label = 'leere Flasche'
|
|
},
|
|
['empty_can'] = {
|
|
pfandwert = 25,
|
|
label = 'leere Dose'
|
|
},
|
|
['empty_glasbootle'] = {
|
|
pfandwert = 25,
|
|
label = 'leere Glasflasche'
|
|
}
|
|
|
|
}
|
|
|
|
-- Allgemeine Einstellungen
|
|
Config.Currency = 'cash' -- 'cash' oder 'bank'
|
|
Config.Debug = false
|
|
Config.ShowPfandNotification = true -- Zeige Benachrichtigung wenn Pfand erhalten wird
|
|
|
|
-- Sprache
|
|
Config.Locale = {
|
|
['pfand_menu_title'] = 'Pfandautomat',
|
|
['pfand_menu_description'] = 'Pfandgut einlösen',
|
|
['no_pfand_items'] = 'Du hast keine Pfandartikel bei dir!',
|
|
['pfand_success'] = 'Du hast %s für %d Pfandartikel erhalten!',
|
|
['pfand_error'] = 'Fehler beim Einlösen des Pfands!',
|
|
['processing'] = 'Verarbeite Pfand...',
|
|
['select_items'] = 'Wähle die Artikel aus, die du einlösen möchtest:',
|
|
['pfand_received'] = 'Du hast %s erhalten!',
|
|
['pfand_bottle_broken'] = 'Die Flasche ist beim Trinken zerbrochen!'
|
|
}
|