ed
This commit is contained in:
parent
23e3e52966
commit
68151e44fe
11 changed files with 594 additions and 0 deletions
37
resources/[inventory]/nordi_alctester/config.lua
Normal file
37
resources/[inventory]/nordi_alctester/config.lua
Normal file
|
@ -0,0 +1,37 @@
|
|||
Config = {}
|
||||
|
||||
-- Debug-Modus (zeigt zusätzliche Informationen)
|
||||
Config.Debug = false
|
||||
|
||||
-- Wie schnell der Alkohol im Blut abgebaut wird (pro Minute)
|
||||
Config.BACDecayRate = 0.01
|
||||
|
||||
-- Ab welchem BAC-Wert die Anzeige rot wird (gesetzliches Limit)
|
||||
Config.LegalLimit = 0.08
|
||||
|
||||
-- Alkoholgehalt verschiedener Getränke (BAC-Erhöhung pro Drink)
|
||||
Config.AlcoholItems = {
|
||||
['beer'] = 0.02,
|
||||
['whiskey'] = 0.04,
|
||||
['vodka'] = 0.04,
|
||||
['wine'] = 0.03,
|
||||
['raki'] = 0.05,
|
||||
['cerveza_barracho'] = 0.02,
|
||||
['kayas_rotwein'] = 0.03,
|
||||
['kadis_rostbite'] = 0.04,
|
||||
['ifs_olden_ectar'] = 0.03,
|
||||
['ggdrasils_ssence'] = 0.03,
|
||||
['baldurslightelixir'] = 0.03,
|
||||
['eimdalls_lear_ight'] = 0.03,
|
||||
['lokis_trickster_punch'] = 0.04,
|
||||
['odins_wisdom_brew'] = 0.03,
|
||||
['skadis_hunt'] = 0.03,
|
||||
['njords_tide'] = 0.03,
|
||||
['sifs_golden-ale'] = 0.02,
|
||||
['yggdrasils_root'] = 0.03,
|
||||
['baldurs_light'] = 0.03,
|
||||
['heimdalls_watch'] = 0.03,
|
||||
['freyas_kiss'] = 0.03,
|
||||
['thors_hammer'] = 0.04,
|
||||
['odins_mead'] = 0.03,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue