forked from Simnation/Main
shisha
This commit is contained in:
parent
1f3154bce7
commit
873f9b15f7
10 changed files with 316 additions and 104 deletions
62
resources/[inventory]/nordi_hookah/config.lua
Normal file
62
resources/[inventory]/nordi_hookah/config.lua
Normal 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},
|
||||
}
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue