1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-06-25 02:26:26 +02:00
parent 1f3154bce7
commit 873f9b15f7
10 changed files with 316 additions and 104 deletions

View file

@ -0,0 +1,62 @@
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},
}
},
}