forked from Simnation/Main
63 lines
1.5 KiB
Lua
63 lines
1.5 KiB
Lua
![]() |
Config = {}
|
||
|
|
||
|
-- Welche Props sollen als Shisha funktionieren?
|
||
|
Config.ShishaProps = {
|
||
|
`prop_bong_01`,
|
||
|
}
|
||
|
|
||
|
-- Progressbar Dauer in ms
|
||
|
Config.PrepareTime = 5000
|
||
|
Config.SmokeTime = 15000
|
||
|
|
||
|
-- Verfügbare Shisha-Optionen
|
||
|
Config.ShishaOptions = {
|
||
|
{
|
||
|
label = "Apfel Shisha",
|
||
|
description = "Fruchtige Apfel-Shisha",
|
||
|
icon = "fa-solid fa-smoking",
|
||
|
requires = {
|
||
|
{item = "shisha_tobacco", amount = 1},
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label = "Minze Shisha",
|
||
|
description = "Erfrischende Minz-Shisha",
|
||
|
icon = "fa-solid fa-smoking",
|
||
|
requires = {
|
||
|
{item = "shisha_tobacco", amount = 1},
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label = "Wassermelone Shisha",
|
||
|
description = "Süße Wassermelonen-Shisha",
|
||
|
icon = "fa-solid fa-smoking",
|
||
|
requires = {
|
||
|
{item = "shisha_tobacco", amount = 1},
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label = "Traube Shisha",
|
||
|
description = "Aromatische Trauben-Shisha",
|
||
|
icon = "fa-solid fa-smoking",
|
||
|
requires = {
|
||
|
{item = "shisha_tobacco", amount = 1},
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label = "Blaubeere Shisha",
|
||
|
description = "Süße Blaubeeren-Shisha",
|
||
|
icon = "fa-solid fa-smoking",
|
||
|
requires = {
|
||
|
{item = "shisha_tobacco", amount = 1},
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label = "Doppel-Apfel Shisha",
|
||
|
description = "Intensive Doppel-Apfel-Shisha",
|
||
|
icon = "fa-solid fa-smoking",
|
||
|
requires = {
|
||
|
{item = "shisha_tobacco", amount = 2},
|
||
|
}
|
||
|
},
|
||
|
}
|