1
0
Fork 0
forked from Simnation/Main
Main/resources/[inventory]/nordi_hookah/config.lua

67 lines
1.7 KiB
Lua
Raw Normal View History

2025-06-25 02:26:26 +02:00
Config = {}
2025-06-25 03:04:57 +02:00
-- Debug-Modus
Config.DebugPoly = false -- Auf true setzen, um Box-Zonen zu sehen
2025-06-25 02:51:13 +02:00
2025-06-25 02:26:26 +02:00
-- Welche Props sollen als Shisha funktionieren?
Config.ShishaProps = {
2025-06-25 03:20:09 +02:00
"sf_prop_sf_g_bong_01a", -- Funktionierendes Modell
2025-06-25 03:04:57 +02:00
"prop_bong_01",
2025-06-25 02:26:26 +02:00
}
-- 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},
}
},
}