1
0
Fork 0
forked from Simnation/Main
Main/resources/[inventory]/nordi_hookah/config.lua
2025-06-25 02:51:13 +02:00

76 lines
2.1 KiB
Lua

Config = {}
-- Debug mode
Config.DebugPoly = false -- Set to true to see box zones
-- Prop spawning options
Config.SpawnProps = true -- Set to true to spawn props at locations
Config.UseBoxZones = true -- Set to true to use box zones as fallback
-- Welche Props sollen als Shisha funktionieren?
Config.ShishaProps = {
"prop_bong_01", -- String format
}
-- Locations for shishas (used for box zones and prop spawning)
Config.ShishaLocations = {
{coords = vector3(-1390.84, -605.84, 30.32), heading = 125.0}, -- Example location
{coords = vector3(1543.35, 6332.02, 24.08), heading = 42.0}, -- Example location
-- Add more locations as needed
}
-- 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},
}
},
}