66 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
| Config = {}
 | |
| 
 | |
| -- Debug-Modus
 | |
| Config.DebugPoly = false  -- Auf true setzen, um Box-Zonen zu sehen
 | |
| 
 | |
| -- Welche Props sollen als Shisha funktionieren?
 | |
| Config.ShishaProps = {
 | |
|     "sf_prop_sf_g_bong_01a", -- Funktionierendes Modell
 | |
|     "prop_bong_01",
 | |
| }
 | |
| 
 | |
| -- Progressbar Dauer in ms
 | |
| Config.PrepareTime = 5000
 | |
| Config.SmokeTime = 30000
 | |
| 
 | |
| -- 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},
 | |
|         }
 | |
|     },
 | |
| }
 | 
