forked from Simnation/Main
ed
This commit is contained in:
parent
c82cfea316
commit
07f27b0557
7 changed files with 150 additions and 322 deletions
|
@ -1,62 +0,0 @@
|
|||
Config = {}
|
||||
|
||||
-- Pfandautomat Props
|
||||
Config.PfandautomatProps = {
|
||||
'as_rv_machine_prop',
|
||||
|
||||
}
|
||||
|
||||
-- Konsumierbare Items die Pfand generieren
|
||||
Config.ConsumableItems = {
|
||||
['beer'] = {
|
||||
pfandItem = 'empty_glasbootle',
|
||||
label = 'Bier'
|
||||
},
|
||||
['water_bottle'] = {
|
||||
pfandItem = 'empty_bottle',
|
||||
label = 'Wasserflasche'
|
||||
},
|
||||
['ecola_dose'] = {
|
||||
pfandItem = 'soda_can',
|
||||
label = 'Cola'
|
||||
},
|
||||
['sprunk_dose'] = {
|
||||
pfandItem = 'soda_can',
|
||||
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 = true
|
||||
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!',
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue