79 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
Config = {}
 | 
						|
 | 
						|
-- Welche Props sollen Kaffee geben?
 | 
						|
Config.CoffeeProps = {
 | 
						|
    `prop_coffee_mac_01`,
 | 
						|
    `prop_coffee_mac_02`,
 | 
						|
    `mp_b_kit_coffeemachine_01`,
 | 
						|
    `apa_mp_h_acc_coffeemachine_01`,
 | 
						|
    `ex_mp_h_acc_coffeemachine_01`,
 | 
						|
    `hei_heist_kit_coffeemachine_01`,
 | 
						|
}
 | 
						|
 | 
						|
-- Progressbar Dauer in ms
 | 
						|
Config.ProgressTime = 3000
 | 
						|
 | 
						|
-- Verfügbare Kaffee-Optionen
 | 
						|
Config.CoffeeOptions = {
 | 
						|
    {
 | 
						|
        label = "Espresso",
 | 
						|
        description = "Ein starker Espresso",
 | 
						|
        item = "espresso",
 | 
						|
        icon = "fa-solid fa-mug-hot",
 | 
						|
        requires = {
 | 
						|
            {item = "coffee_beans", amount = 1},
 | 
						|
        }
 | 
						|
    },
 | 
						|
    {
 | 
						|
        label = "Cappuccino",
 | 
						|
        description = "Cremiger Cappuccino mit Milchschaum",
 | 
						|
        item = "cappuccino",
 | 
						|
        icon = "fa-solid fa-mug-saucer",
 | 
						|
        requires = {
 | 
						|
            {item = "coffee_beans", amount = 1},
 | 
						|
            {item = "milk", amount = 1}
 | 
						|
        }
 | 
						|
    },
 | 
						|
    {
 | 
						|
        label = "Latte Macchiato",
 | 
						|
        description = "Latte Macchiato mit extra Milch",
 | 
						|
        item = "latte",
 | 
						|
        icon = "fas fa-mug-hot",
 | 
						|
        requires = {
 | 
						|
            {item = "coffee_beans", amount = 1},
 | 
						|
            {item = "milk", amount = 2}
 | 
						|
        }
 | 
						|
    },
 | 
						|
    {
 | 
						|
        label = "Schwarzer Kaffee",
 | 
						|
        description = "Klassischer schwarzer Kaffee",
 | 
						|
        item = "coffee",
 | 
						|
        icon = "fa-solid fa-mug-hot",
 | 
						|
        requires = {
 | 
						|
            {item = "coffee_beans", amount = 1},
 | 
						|
        }
 | 
						|
    },
 | 
						|
    {
 | 
						|
        label = "Heiße Schocklade",
 | 
						|
        description = "Kakao",
 | 
						|
        item = "kakao2",
 | 
						|
        icon = "fa-solid fa-mug-hot",
 | 
						|
        requires = {
 | 
						|
            {item = "cocoa", amount = 1},
 | 
						|
            {item = "milk", amount = 1}
 | 
						|
        }
 | 
						|
    },
 | 
						|
    {
 | 
						|
        label = "Heiße Schocklade Deluxe",
 | 
						|
        description = " Kakao mit Marshmallows",
 | 
						|
        item = "kakao3",
 | 
						|
        icon = "fa-solid fa-mug-hot",
 | 
						|
        requires = {
 | 
						|
            {item = "cocoa", amount = 1},
 | 
						|
            {item = "milk", amount = 1},
 | 
						|
            {item = "marshmallows", amount = 1}
 | 
						|
        }
 | 
						|
    },
 | 
						|
 | 
						|
}
 | 
						|
 |