SouF Store
DiscordYoutube
  • ๐Ÿ“‚Fivem Scripts
    • โณPriority Cooldown
      • Installation
      • Server Exports
    • ๐Ÿ”Storage Units
      • Installation
    • Voting System
      • Installation
  • ๐Ÿ”BurgerShot Job
    • Installation
    • Config Preview
    • Exports
    • Maps Support
  • โ˜•BeanMachine Job
    • Installation
    • Script Showcase
      • ๐Ÿ’ปLaptop System
      • ๐Ÿ–ฅ๏ธBoss Menu System
      • ๐Ÿ›’Customer Shop
      • ๐Ÿ›’Ingredient Shop
      • ๐Ÿ‘จโ€๐ŸณPreparation System
      • โ„๏ธIce Machine System
      • ๐ŸšDelivery System
      • ๐Ÿ’ตBilling System
      • ๐Ÿ“ปDJ Booth
      • ๐Ÿš™Garage
      • ๐Ÿงพ3D Text Scenes
      • ๐Ÿ†˜Emergency Assistance System
      • ๐Ÿ‘”Outfit System
      • ๐Ÿ–‹๏ธDuty System
      • ๐ŸšชDoorlock System
      • ๐Ÿ‘๏ธInteracts
    • Config Preview
    • Exports
      • Client Exports
      • Server Export
    • Maps Support
    • Integrations
  • ๐Ÿ•Pizza This Job
    • Installation
    • Config Preview
    • Exports
      • Client Exports
      • Server Export
    • Maps Support
    • Integrations
  • ๐Ÿ˜ปUwU Cate Cafe Job
    • Installation
    • Config Preview
    • Exports
      • Client Exports
      • Server Export
    • Maps Support
    • Integrations
Powered by GitBook
On this page

Was this helpful?

  1. UwU Cate Cafe Job

Config Preview

--    RECOMENDED TO JOIN DISCORD FOR SUPPORT
-- |||||||||||||||||||||||||||||||||||||||||||||
-- ||||||| https://discord.gg/dcm4TNtbGQ |||||||
-- |||||||||||||||||||||||||||||||||||||||||||||

--[[ 
    Framework Configuration:
    - No need to manually select a framework! The system automatically detects the framework using [sf_lib].
    - If your core script folder name is non-standard, update it in [sf_lib/Config.lua].
    - You can also manually select the framework in [sf_lib/Config.lua] if needed, or set up a custom framework in [sf_lib/Bridge/Custom/*.lua].

    Performance Tips:
    - Avoid using drawtext, as it can impact performance negatively.
    - If you cannot use a target-eye system, TextUI is a great alternative for better performance.
    - The best option is a target system as it is optimized and provides a more realistic experience.

    Job System:
    - This script includes a custom job system and a custom boss menu system that do not rely on the framework's job features.
]]


-- select any lang you want to use
-- ar / de / en / es / fr / pt / zh
lang = locale['en']

Config = {}
Config.Debug = false

-- this is the map you want to use, you can only choose one
-- 'custom'         --[[ important to read this file and start creating you custom map coords (sf_uwucafe/maps/custom.lua) ]]
-- 'gabz'           --[[ Link Purchase: https://fivem.gabzv.com/package/4724734          | Coords: vector3(788.96, -744.17, 27.31)    | Showcase: https://youtu.be/M6SbOU_cDzU ]]
Config.PreConfigMap = 'gabz'

-- for {custom} To implement custom settings, add your custom code in: [sf_uwucafe/server/sv_utils.lua] or [sf_uwucafe/client/cl_utils.lua].
Config.Setting = {
    Logs = false,                                -- dont enable before setup your logs in [sf_uwucafe/server/sv_logs.lua]
    MaxTimeStreamLoad = 15000, -- millisecond    -- max time stream assets load
    VersionCheck = true,                         -- that help you to receive new updates in console when script start
    EmergencyJobs = {['police'] = 0, ['ambulance'] = 0},  -- receive alert when pressed emergency button (Only in my custom alert required config job here)

    --[[ auto-detect ]]
    -- Is automaticly detect started resource are you using, but if not detect any resource will set to custom and that need to add your custom code in 
    -- [sf_uwucafe/server/sv_utils.lua] or [sf_uwucafe/client/cl_utils.lua], 
    -- and if you have a resource name changed important to change him in [Config.NameResource] bellow
    TargetEye = 'auto-detect',                  -- auto-detect / ox_target / qb-target  (if not using target let him default dont worry)
    VehicleKey = 'auto-detect',                 -- auto-detect / qb-vehiclekeys / custom
    Fuel = 'auto-detect',                       -- auto-detect / LegacyFuel / cdn-fuel / ps-fuel / ox_fuel / custom
    Dispatch = 'auto-detect',                   -- auto-detect / ps-disptach / uwucafe-alert / custom
    Notification = 'auto-detect',               -- auto-detect / lib / qb / esx / custom
    ProgressBar = 'auto-detect',                -- auto-detect / lib / qb / esx / custom (make sure you progressbar not cancel animation in finish)
    Clothing = {
        -- script are you using, if your script not supported and have command reload skin you can enable (EnableCommand = true) and put your command in (Command = 'yourcommand')
        Script = 'auto-detect',  -- auto-detect / fivem-appearance / illenium-appearance / qb-clothing / esx_skin / custom

        -- you can use command if you have it its more better
        EnableCommand = true,
        Command = 'refreshskin', -- this most popular command in servers to reload skin (reloadskin / refreshskin)
    },

    -- Spported Inventorys:
    -- auto-detect: automaticly detect started resource are you using, but if not detect any resource will set to custom and that need to add your custom code in [sf_uwucafe/server/sv_utils.lua]
    -- custom: you need to add your custom code in [sf_uwucafe/server/sv_utils.lua]
    -- ox_inventory
    -- qb-inventory (version 2)
    -- qb-inventory-old (old version of qb-inventory) Note: the old version qb-inventory not detect in auto-detect, so you need to set him manually like that [Inventory = 'qb-inventory-old']
    -- codem-inventory
    -- qs-inventory
    -- tgiann-inventory
    -- core_inventory
    -- origen_inventory
    Inventory = 'auto-detect',
}

-- i make that because qb-inventory have a issue not save items in stash with some prefix
Config.InventoryStashPrefix = 'uwu_'  -- this prefix for stash inventory id, dont change it if you dont know what you do

-- this if you have some dependencies resources name folder changed, try change it to new name folder
Config.NameResource = {
    -- Eye targets
    qb_target = 'qb-target',
    ox_target = 'ox_target',

    -- Inventorys
    qb_inventory = 'qb-inventory',
    codem_inventory = 'codem-inventory',
    qs_inventory = 'qs-inventory',
    ox_inventory = 'ox_inventory',
    tgiann_inventory = 'tgiann-inventory',
    core_inventory = 'core_inventory',
    origen_inventory = 'origen_inventory',

    -- Vehicle Key
    qb_vehiclekeys = 'qb-vehiclekeys',

    -- Fuel
    LegacyFuel = 'LegacyFuel',
    cdn_fuel = 'cdn-fuel',
    ps_fuel = 'ps-fuel',
    ox_fuel = 'ox_fuel',

    -- Clothing
    fivem_appearance = 'fivem-appearance',
    illenium_appearance = 'illenium-appearance',
    qb_clothing = 'qb-clothing',
    esx_skin = 'esx_skin',

    -- Dispatch
    ps_disptach = 'ps-disptach',
} 

Config.UwUCafeZone = MapLocations[Config.PreConfigMap].PolyZone  -- check in maps selected file [sf_uwucafe/maps/*.lua]

Config.Blips = { -- You can get blips from this link (https://docs.fivem.net/docs/game-references/blips/)
    Coords = MapLocations[Config.PreConfigMap].Blip,
    Sprite = 489,
    Colour = 8,
    Scale = 1.0
}

Config.ObjectSpawn = MapLocations[Config.PreConfigMap].ObjectSpawn  -- check in maps selected file [sf_uwucafe/maps/*.lua]

Config.ObjectFrezzer = MapLocations[Config.PreConfigMap].ObjectFrezzer  -- check in maps selected file [sf_uwucafe/maps/*.lua]

Config.Doorlock = {
    Enable = true,
    Notify = false,  -- show you notification when locked and unlocked door
    TypeUse = 'dui',  -- 'dui' / 'drawtext'
    Animation = {
        Enable = true,
        Dict = 'anim@heists@keycard@',
        Name = 'exit',
    },
    Doorlocks = MapLocations[Config.PreConfigMap].Doorlock  -- check in maps selected file [sf_uwucafe/maps/*.lua]
}

Config.Duty = {
    Enable = true,   -- if false, before any action in uwucafe, while not check if player on duty
    Scenario = 'WORLD_HUMAN_CLIPBOARD_FACILITY',  -- animation sign duty
    ProgressBarDuration = 2000, -- milisecond 
    TypeUse = 'target',     -- target, drawtext, textui
    Key = 'E',    -- key to sign off or in
    Coords = MapLocations[Config.PreConfigMap].Duty  -- check in maps selected file [sf_uwucafe/maps/*.lua]
}

Config.BossMenu = {
    TypeUse = 'target',       -- target, drawtext, textui
    Key = 'E',                -- for drawtext and textui

    -- before enable need to add discord bot token or steam web api key in [server/sv_utils.lua] in line 4 and 7
    -- Note: to update user image profile later, its simple just remove job from him and give again following the bottom commands
    UserImageProfile = false,  -- 'discord' or 'steam' or false (use default image for all members)

    -- This setting allows individuals with the "Manager" job to assign the Manager grade to others.
    -- Note: Only admins can remove the Manager grade.
    BossToBoss = false,

    AnimationTablet = {
        Anim = {
            Enable = true,
            Dict = "amb@code_human_in_bus_passenger_idles@female@tablet@base",
            Anim = "base",
        },
        Prop = {
            Enable = true,
            Object = 'uwucafe_tablet',
            Bone = 60309,
            Offset = vec3(0.03, 0.002, -0.0),
            Rotation = vec3(10.0, 160.0, 0.0),
        },  
    },
    Commands = {  -- this commands for admins to give job and remove (because this script use custom job system not framework job system)
        GiveJob = 'uwu_givejob',        
        RemoveJob = 'uwu_removejob',
    },
    Storage = {
        Weight = 5000, -- KG
        Slots = 250    -- inventory slots
    },
    Salaries = {
        Enable = true,

        -- [true]: pay employees from bossmenu money
        -- [false]: just pay, without remove money from bossmenu
        SocietyPay = false,

        -- [true]: Salaries are distributed only to on-duty players.
        -- [false]: Salaries are distributed to any online player with the job.
        -- NOTE: If set to true, ensure the duty system is also enabled (see line 78 in this file).
        OnlyOnDuty = true,  
    
        Time = 10, -- Time interval in minutes. Salaries are distributed every 10 minutes.
    },    
    Grades = {
        ['0'] = {
            Label = 'Trainee',
            Salary = 150,
        },
        ['1'] = {
            Label = 'Cooker',
            Salary = 175,
        },
        ['2'] = {
            Label = 'Cashier',
            Salary = 200,
        },
        ['3'] = {
            Label = 'Shift Supervisor',
            Salary = 250,
        },
        ['4'] = {
            Label = 'Manager',
            IsBoss = true,    -- add this in grades can open bossmenu, and this grade can only given by admin (example the boss of uwucafe cant give to another employee Manager grade)
            Salary = 300,
        },
    },
    Locations = MapLocations[Config.PreConfigMap].Bossmenu  -- check in maps selected file [sf_uwucafe/maps/*.lua]
}

Config.DJBooth = {
    Enable = true,
    TypeUse = 'target',       -- target, drawtext, textui
    Key = 'G',                -- for drawtext and textui
    GradesPermission = {0, 1, 2, 3, 4},  -- grades can use dj booth

    -- every 10 min update current history data dj booth in sql data base (i hope to not donw time for good performance, also the txadmin in shutdown and on resource stop update it auto)
    EnableSQLSave = false,   -- if you want history plays save after restarts 
    UpdateTimeIntervale = 10,  -- min
    
    Locations = MapLocations[Config.PreConfigMap].DJBooth  -- check in maps selected file [sf_uwucafe/maps/*.lua]
}

-- no emotes in uwu cafe
Config.Emotes = {
    Enable = false,
    KeyBinds = {
        OpenMenu = 'U',  -- to open emote list
        CancelEmote = 'X'  -- to cancel emotes outside emote list
    },
    OnlyInZone = true,  -- use emote menu only in zone (important to let him true if you are using any other restaurant script from [SouF Store])
    EmoteList = {
        -- Example how you can add more emotes
        --[[ [1] = {
            Label = 'Carry Food Bag',
            Animation = {
                Enable = true,
                Dict = 'move_weapon@jerrycan@generic',
                Name = 'idle',
                PropAttachment = {
                    Enable = true,
                    Props = {
                        {
                            Prop = 'prop_food_bs_bag_01',
                            PropBone = 57005,
                            PropCoords = {
                                PosX = 0.3300,
                                PosY = 0.0,
                                PosZ = -0.0300,
                                RotX = 0.0017365,
                                RotY = -79.9999997,
                                RotZ = 110.0651988
                            }
                        },
                        {
                            Prop = 'prop_food_bs_bag_01',
                            PropBone = 57005,
                            PropCoords = {
                                PosX = 0.3300,
                                PosY = 0.0,
                                PosZ = -0.0300,
                                RotX = 0.0017365,
                                RotY = -79.9999997,
                                RotZ = 110.0651988
                            }
                        },
                    }
                }
            },
        }, ]]
    }  
}

Config.Scenes = { 
    Enable = true,
    OnlyInZone = true,  -- if true, player can only create scenes inside zone uwucafe
    MaxDistance = 30.0, -- max view distance
    MaxTextSize = 2.0,  -- max text size
    GradesPermission = {0, 1, 2, 3, 4},  -- grades can use scenes
    KeyBinds = {   
        OpenScene = 'K',  -- open scene creator
        SelectScene = 'L' -- open lisr to select scene
    },
    ControlKeys = {  -- this controls when select scene
        SelectScene = 176,
        DeleteScene = 178,
        Cancel = 194,
    },
    AvailableTimes = {  -- timers can workers create scene
        [1]  = {Time = 15,  TimeType = 'min'},
        [2]  = {Time = 30,  TimeType = 'min'},
        [3]  = {Time = 1,   TimeType = 'hour'},
        [4]  = {Time = 3,   TimeType = 'hour'},
        [5]  = {Time = 6,   TimeType = 'hour'},
        [6]  = {Time = 9,   TimeType = 'hour'},
        [7]  = {Time = 12,  TimeType = 'hour'},
        [8]  = {Time = 15,  TimeType = 'hour'},
        [9]  = {Time = 18,  TimeType = 'hour'},
        [10] = {Time = 21,  TimeType = 'hour'},
        [11] = {Time = 24,  TimeType = 'hour'},
    }
}

Config.GPS = {
    Enable = true,
    ShowOnlyClose = false,  -- that mean show you only close players has job and on duty, plus that help you for a good performance

    -- [true] show more type blips (helicopter, plane, boat, car, bike)
    -- [false] show only blip type
    -- of course this option take more in performance
    AdvancedGPS = true,    

    Blip = {
        Sprite = 1,
        CarSprite = 672,
        HeliSprite = 43,
        PlaneSprite = 307,
        BoatSprite = 427,
        BikeSprite = 226,
        Color = 8,
        Scale = 0.8,
    }
}

Config.IngredientShop = {
    EnableShop = true,
    TypeUse = 'target',     -- target, drawtext, textui
    Key = 'E',      -- for drawtext or textui
    PaymentType = true,    -- if true show you cash and bank payment, if false show you only cash payment
    Blip = {
        Sprite = 59,
        Colour = 8,
        Scale = 0.6
    },
    SocietyPayment = {      -- this option shown in type payment and you can select grade job can pay with society payment
        Enable = true,
        Grades = 4,  -- also you can use multiple grades like that {0, 1, 2, 3, 4}
    },
    Ped = {
        PedName = 's_m_y_armymech_01',
        Scenario = 'WORLD_HUMAN_CLIPBOARD'
    },
    AnimationBuy = {
        Enable = true,
        Dict = 'mp_common',
        Name = 'givetake1_a',
    },
    -- price and quantity is synced dont worry
    -- quantity reset in every restart server
    Shop = {
        {Item = 'uwu_mystery_box',         Price = {Min = 100, Max = 120},  Quantity = 1000},
        --
        {Item = 'uwu_plate_1',             Price = {Min = 8, Max = 15},  Quantity = 1000},
        {Item = 'uwu_plate_2',             Price = {Min = 8, Max = 15},  Quantity = 1000},
        {Item = 'uwu_plate_3',             Price = {Min = 8, Max = 15},  Quantity = 1000},
        {Item = 'uwu_empty_cup_cake',      Price = {Min = 6, Max = 12},  Quantity = 1000},
        {Item = 'uwu_empty_bag',           Price = {Min = 3, Max = 7},   Quantity = 1000},
        {Item = 'uwu_knife',               Price = {Min = 20, Max = 35}, Quantity = 1000},            
        {Item = 'uwu_sticker',             Price = {Min = 2, Max = 5},   Quantity = 1000},
        --
        {Item = 'uwu_water',               Price = {Min = 1, Max = 3},   Quantity = 1000},
        {Item = 'uwu_vanilla_extract',     Price = {Min = 8, Max = 15},  Quantity = 1000},
        {Item = 'uwu_salted_caramel_topping',Price = {Min = 10, Max = 18},Quantity = 1000},
        {Item = 'uwu_oil',                 Price = {Min = 6, Max = 12},  Quantity = 1000},
        {Item = 'uwu_brewed_coffee',       Price = {Min = 5, Max = 10},  Quantity = 1000},
        {Item = 'uwu_decaf_coffee',        Price = {Min = 5, Max = 10},  Quantity = 1000},
        {Item = 'uwu_caramel_syrup',       Price = {Min = 8, Max = 15},  Quantity = 1000},
        {Item = 'uwu_honey',               Price = {Min = 8, Max = 15},  Quantity = 1000},
        {Item = 'uwu_cotton_candy_syrup',  Price = {Min = 9, Max = 16},  Quantity = 1000},
        {Item = 'uwu_chocolate_drizzle',   Price = {Min = 7, Max = 14},  Quantity = 1000},
        {Item = 'uwu_milk',                Price = {Min = 3, Max = 6},   Quantity = 1000},
        {Item = 'uwu_5_litr_water',        Price = {Min = 3, Max = 5},   Quantity = 1000},
        {Item = 'uwu_5_litr_milk',         Price = {Min = 12, Max = 18}, Quantity = 1000},
        {Item = 'uwu_baking_soda',         Price = {Min = 2, Max = 5},   Quantity = 1000},
        {Item = 'uwu_spaghetti',           Price = {Min = 8, Max = 15},  Quantity = 1000},
        {Item = 'uwu_marshmallow_fluff',   Price = {Min = 8, Max = 15},  Quantity = 1000},
        {Item = 'uwu_rice_crispy_treats',  Price = {Min = 8, Max = 15},  Quantity = 1000},
        {Item = 'uwu_food_coloring',       Price = {Min = 5, Max = 10},  Quantity = 1000},
        --
        {Item = 'uwu_butter',              Price = {Min = 4, Max = 8},   Quantity = 1000},
        {Item = 'uwu_mozzarella_cheese',   Price = {Min = 8, Max = 15},  Quantity = 1000},
        {Item = 'uwu_garlic_herb_butter',  Price = {Min = 8, Max = 15},  Quantity = 1000},
        --
        {Item = 'uwu_potato',              Price = {Min = 1, Max = 3},   Quantity = 1000},
        {Item = 'uwu_garlic',              Price = {Min = 1, Max = 3},   Quantity = 1000},
        {Item = 'uwu_carrot',              Price = {Min = 1, Max = 3},   Quantity = 1000},
        {Item = 'uwu_cucumber',            Price = {Min = 2, Max = 5},   Quantity = 1000},
        {Item = 'uwu_bell_pepper',         Price = {Min = 3, Max = 6},   Quantity = 1000},
        --
        {Item = 'uwu_strawberry',          Price = {Min = 5, Max = 10},  Quantity = 1000},
        {Item = 'uwu_lemon',               Price = {Min = 2, Max = 5},   Quantity = 1000},
        {Item = 'uwu_orange',              Price = {Min = 2, Max = 5},   Quantity = 1000},
        {Item = 'uwu_peach',               Price = {Min = 3, Max = 7},   Quantity = 1000},
        --
        {Item = 'uwu_steak',               Price = {Min = 18, Max = 25}, Quantity = 1000},
        {Item = 'uwu_chicken',             Price = {Min = 8, Max = 14},  Quantity = 1000},
        {Item = 'uwu_shrimp',              Price = {Min = 12, Max = 20}, Quantity = 1000},
        {Item = 'uwu_salmon_fillet',       Price = {Min = 15, Max = 22}, Quantity = 1000},
        {Item = 'uwu_chopped_lamb',        Price = {Min = 30, Max = 50}, Quantity = 1000},
        --
        {Item = 'uwu_heavy_cream',         Price = {Min = 5, Max = 10},  Quantity = 1000},     
        {Item = 'uwu_whipped_cream',       Price = {Min = 5, Max = 10},  Quantity = 1000},
        {Item = 'uwu_pasta_sauce',         Price = {Min = 7, Max = 14},  Quantity = 1000},
        {Item = 'uwu_mint_sauce',          Price = {Min = 6, Max = 12},  Quantity = 1000},
        {Item = 'uwu_peach_puree',         Price = {Min = 7, Max = 14},  Quantity = 1000},
        {Item = 'uwu_cream_cheese_frosting',Price = {Min = 10, Max = 18},Quantity = 1000},
        {Item = 'uwu_butter_cream',        Price = {Min = 8, Max = 15},  Quantity = 1000},
        {Item = 'uwu_chocolate_ganache',   Price = {Min = 12, Max = 20}, Quantity = 1000},
        {Item = 'uwu_matcha_ganache',      Price = {Min = 14, Max = 22}, Quantity = 1000},
        {Item = 'uwu_lemon_butter_sauce',  Price = {Min = 9, Max = 16},  Quantity = 1000},
        --
        {Item = 'uwu_broccoli_florets',    Price = {Min = 4, Max = 8},   Quantity = 1000},
        {Item = 'uwu_parsley',             Price = {Min = 2, Max = 5},   Quantity = 1000},
        {Item = 'uwu_mint_leaves',         Price = {Min = 3, Max = 7},   Quantity = 1000},
        {Item = 'uwu_edible_flowers',      Price = {Min = 8, Max = 15},  Quantity = 1000},
        --
        {Item = 'uwu_salt',                Price = {Min = 1, Max = 3},   Quantity = 1000},
        {Item = 'uwu_sugar',               Price = {Min = 2, Max = 4},   Quantity = 1000},
        {Item = 'uwu_flour',               Price = {Min = 2, Max = 5},   Quantity = 1000},
        {Item = 'uwu_herbs',               Price = {Min = 3, Max = 7},   Quantity = 1000},
        {Item = 'uwu_brown_sugar',         Price = {Min = 3, Max = 6},   Quantity = 1000},
        {Item = 'uwu_powdered_sugar',      Price = {Min = 4, Max = 8},   Quantity = 1000},
        {Item = 'uwu_cocoa_powder',        Price = {Min = 7, Max = 14},  Quantity = 1000},
        {Item = 'uwu_almond_flour',        Price = {Min = 10, Max = 18}, Quantity = 1000},
        {Item = 'uwu_glutinous_rice_flour',Price = {Min = 7, Max = 14},  Quantity = 1000},
        {Item = 'uwu_coconut_flakes',      Price = {Min = 5, Max = 10},  Quantity = 1000},
        {Item = 'uwu_red_velvet_cake_mix', Price = {Min = 15, Max = 25}, Quantity = 1000},
        {Item = 'uwu_crushed_biscuits',    Price = {Min = 5, Max = 10},  Quantity = 1000},
        {Item = 'uwu_matcha_powder',       Price = {Min = 12, Max = 20}, Quantity = 1000}, 
        {Item = 'uwu_crushed_toffee_bits', Price = {Min = 6, Max = 12},  Quantity = 1000},
        --
        {Item = 'uwu_chocolate_chips',     Price = {Min = 6, Max = 12},  Quantity = 1000},
        {Item = 'uwu_sprinkles',           Price = {Min = 3, Max = 7},   Quantity = 1000},
        {Item = 'uwu_almond_flakes',       Price = {Min = 8, Max = 15},  Quantity = 1000}, 
        {Item = 'uwu_purple_sweet_potato_filling',Price = {Min = 10, Max = 18},Quantity = 1000},
        {Item = 'uwu_edible_glitter',      Price = {Min = 7, Max = 14},  Quantity = 1000},
        {Item = 'uwu_tofu',                Price = {Min = 6, Max = 12},  Quantity = 1000},  
        {Item = 'uwu_black_olives',        Price = {Min = 4, Max = 8},   Quantity = 1000},
        --
        {Item = 'uwu_catnip_tea',          Price = {Min = 8, Max = 15},  Quantity = 1000},  
        {Item = 'uwu_lavender',            Price = {Min = 5, Max = 10},  Quantity = 1000},
        {Item = 'uwu_egg',                 Price = {Min = 1, Max = 3},   Quantity = 1000}, 
        {Item = 'uwu_sponge_cake',         Price = {Min = 12, Max = 20}, Quantity = 1000},                     
        {Item = 'uwu_gummy_bears',         Price = {Min = 5, Max = 10},  Quantity = 1000},  
        --
        {Item = 'uwu_empty_cup_1',         Price = {Min = 5, Max = 10},  Quantity = 1000},
        {Item = 'uwu_empty_cup_2',         Price = {Min = 5, Max = 10},  Quantity = 1000},
        {Item = 'uwu_empty_cup_3',         Price = {Min = 5, Max = 10},  Quantity = 1000},
        {Item = 'uwu_empty_cup_4',         Price = {Min = 5, Max = 10},  Quantity = 1000},
        {Item = 'uwu_empty_cup_5',         Price = {Min = 5, Max = 10},  Quantity = 1000},
        {Item = 'uwu_empty_cup_6',         Price = {Min = 5, Max = 10},  Quantity = 1000},
        {Item = 'uwu_empty_cup_7',         Price = {Min = 5, Max = 10},  Quantity = 1000},
        {Item = 'uwu_empty_cup_8',         Price = {Min = 5, Max = 10},  Quantity = 1000},                     
    },

    -- every restart, script choose one location random
    Locations = MapLocations[Config.PreConfigMap].IngredientShop  -- check in maps selected file [sf_uwucafe/maps/*.lua]
}

Config.BusinessShop = {
    EnableShop = true,
    TypeUse = 'target',     -- target, drawtext, textui
    Key = 'E',      -- for drawtext or textui
    PaymentType = true,    -- if true is show you before buy any payment type you want pay, if false direct pay with payment method cash
    EnableInLaptop = true, -- this if you want enable manage shop in laptop
    SocietyMoney = true,   -- if true all money comming from shop go society, if false no money go to society
    DefaultStat = 'open', -- ('open' | 'close')  Determines the shop's default status ('open' or 'close') after a server restart
    ManageShopGrades = {2, 3, 4},
    Ped = {
        Enable = true,   -- if you set this false and you are using target, require to take coords in wall, to can target with eye
        PedName = 's_f_m_maid_01',
        Scenario = 'WORLD_HUMAN_CLIPBOARD'
    },
    AnimationBuy = {  
        Enable = true,
        Dict = 'mp_common',
        Name = 'givetake1_a',
    },
    MaxQuantity = 2000,  -- max quantity per item
    WhitlistItems = { -- items can sell to customer / required num table to be arranged in the store as you like
        -- Mystery box for toys
        [1] =  {Item = 'uwu_mystery_box',    DefaultPrice = 500},

        -- Drinks
        [2] =  {Item = 'uwu_caramel_pudding_coffee',    DefaultPrice = 50},
        [3] =  {Item = 'uwu_catnip_iced_tea',           DefaultPrice = 50},
        [4] =  {Item = 'uwu_kittens_milkshake',         DefaultPrice = 50},
        [5] =  {Item = 'uwu_lavender_honey_lemonade',   DefaultPrice = 50},
        [6] =  {Item = 'uwu_matcha_bubble_latte',       DefaultPrice = 50},
        [7] =  {Item = 'uwu_peach_melba_fizz',          DefaultPrice = 50},
        [8] =  {Item = 'uwu_pink_velvet_latte',         DefaultPrice = 50},
        [9] =  {Item = 'uwu_strawberry_milk_tea',       DefaultPrice = 50},
        [10] =  {Item = 'uwu_uwu_bubble_tea',            DefaultPrice = 50},
        [11] =  {Item = 'uwu_vanilla_rose_latte',       DefaultPrice = 50},

        -- Dishes
        [12] =  {Item = 'uwu_chicken_parmesan_with_spaghetti',      DefaultPrice = 50},
        [13] =  {Item = 'uwu_grilled_salmon_with_lemon_butter',     DefaultPrice = 50},
        [14] =  {Item = 'uwu_lamb_chops_with_mint_sauce',           DefaultPrice = 50},
        [15] =  {Item = 'uwu_shrimp_scampi_with_garlic_pasta',      DefaultPrice = 50},
        [16] =  {Item = 'uwu_steak_frites_with_garlic_herb_butter', DefaultPrice = 50},
        [17] =  {Item = 'uwu_vegetable_stir_fry_with_tofu',         DefaultPrice = 50},

        -- Desserts
        [18] =  {Item = 'uwu_whisker_cupcakes',             DefaultPrice = 50},
        [19] =  {Item = 'uwu_whimsical_lemon_cake',         DefaultPrice = 50},
        [20] =  {Item = 'uwu_velvet_vibes_cupcake',         DefaultPrice = 50},
        [21] =  {Item = 'uwu_teddy_bear_jelly',             DefaultPrice = 50},
        [22] =  {Item = 'uwu_sunset_sprinkles_cupcake',     DefaultPrice = 50},
        [23] =  {Item = 'uwu_strawberry_shortcake_layers',  DefaultPrice = 50},
        [24] =  {Item = 'uwu_strawberry_cream_puffs',       DefaultPrice = 50},
        [25] =  {Item = 'uwu_purrfectly_sweet_cake',        DefaultPrice = 50},
        [26] =  {Item = 'uwu_pink_velvet_cake',             DefaultPrice = 50},
        [27] =  {Item = 'uwu_peach_blossom_cake',           DefaultPrice = 50},
        [28] =  {Item = 'uwu_pawprint_sponge_cake',         DefaultPrice = 50},
        [29] =  {Item = 'uwu_mochi_cake',                   DefaultPrice = 50},
        [30] =  {Item = 'uwu_midnight_mocha_cupcake',       DefaultPrice = 50},
        [31] =  {Item = 'uwu_matcha_dream_cake',            DefaultPrice = 50},
        [32] =  {Item = 'uwu_kitty_paw_macarons',           DefaultPrice = 50},
        [33] =  {Item = 'uwu_kitten_paw_cake',              DefaultPrice = 50},
        [34] =  {Item = 'uwu_golden_caramel_cupcake',       DefaultPrice = 50},
        [35] =  {Item = 'uwu_fluffy_cloud_cake',            DefaultPrice = 50},
        [36] =  {Item = 'uwu_fluffernutter_bars',           DefaultPrice = 50},
        [37] =  {Item = 'uwu_cotton_candy_cake',            DefaultPrice = 50},
        [38] =  {Item = 'uwu_chocolate_fudge_cat_cake',     DefaultPrice = 50},
        [39] =  {Item = 'uwu_caramel_dream_cake',           DefaultPrice = 50},
        [40] =  {Item = 'uwu_cafe_bliss_bites_cupcake',     DefaultPrice = 50},
        [41] =  {Item = 'uwu_bunny_ear_cake',               DefaultPrice = 50},
    },

    -- locations where can player buy.
    Locations = MapLocations[Config.PreConfigMap].BusinessShop  -- check in maps selected file [sf_uwucafe/maps/*.lua]
}

Config.Outfits = {
    Enable = true,  
    LocationCoords = MapLocations[Config.PreConfigMap].Outfits,  -- check in maps selected file [sf_uwucafe/maps/*.lua]
    TypeUse = 'target',     -- target, drawtext, textui
    Key = 'E',    -- key to open outfit menu
    ProgressBarDuration = 5000, -- milisecond \ timer wearing outfit
    Animation = {
        Enable = true,
        Anim = {
            Dict = 'clothingshirt',
            Name = 'try_shirt_positive_d'
        }
    },

    -- required to check, my be the numbers not correct you need to fix it
    -- the outfits is coming addon in (sf_restaurant_assets)
    Male = {
        ["hat"] =       {Id = 218, Texture = 0},
        ["mask"] =      {Id = 0, Texture = 0},
        ["arms"] =      {Id = 19, Texture = 0},
        ["pants"] =     {Id = 24, Texture = 5},
        ["bag"] =       {Id = 0, Texture = 0},
        ["shoes"] =     {Id = 8, Texture = 2},
        ["t-shirt"] =   {Id = 15, Texture = 0},
        ["torso"] =     {Id = 527, Texture = 0},
        ["decals"] =    {Id = 0, Texture = 0},
        ["armor"] =     {Id = 0, Texture = 0},
    },
    Female = {
        ["hat"] =       {Id = 217, Texture = 0},
        ["mask"] =      {Id = 0, Texture = 0},
        ["arms"] =      {Id = 20, Texture = 0},
        ["pants"] =     {Id = 50, Texture = 2},
        ["bag"] =       {Id = 0, Texture = 0},
        ["shoes"] =     {Id = 27, Texture = 0},
        ["t-shirt"] =   {Id = 15, Texture = 0},
        ["torso"] =     {Id = 568, Texture = 0},
        ["decals"] =    {Id = 0, Texture = 0},
        ["armor"] =     {Id = 0, Texture = 0},
    }
}

Config.Laptop = {
    TypeUse = 'target',     -- target, drawtext, textui
    Key = 'E',    -- key to open laptop (this only use in textui and drawtext)
    Animation = {
        Enable = true,
        Anim = {
            Dict = 'anim@scripted@ulp_missions@computerhack@male@',
            Name = 'hacking_loop'
        }
    },
    ObjectSpawn = {
        Locations = MapLocations[Config.PreConfigMap].Laptops,  -- check in maps selected file [sf_uwucafe/maps/*.lua]
        PropName = `uwucafe_laptop`,
    },
}

Config.EmergencyButton = {
    Enable = true,
    TypeUse = 'target',     -- target, drawtext, textui
    Key = 'U',    -- key to open laptop (this only use in textui and drawtext)
    EnableInLaptop = true,  -- this if you want add button emergency in laptop
    TimerReCall = 60000, -- milisecond

    -- location buttons
    Coords = MapLocations[Config.PreConfigMap].EmergencyButton  -- check in maps selected file [sf_uwucafe/maps/*.lua]
}

Config.Garage = { 
    Enable = true,
    TypeUse = 'target',       -- target, drawtext, textui
    Ped = 'ig_casey',  -- this ped for target type use
    PedScenario = 'WORLD_HUMAN_CLIPBOARD',
    Key = 'E',   -- key button to open garage in type use drawtext or textui 
    GarageLocation = MapLocations[Config.PreConfigMap].Garage, -- check in maps selected file [sf_uwucafe/maps/*.lua]
    Warp = true, -- If true warp player into vehicle, if false vehicle spawns without warping
    LimitSpawn = {
        Enable = true,
        Limit = 10
    },

    -- this if you want the vehicle not disappear never when leave server, because if you leave server and no one near vehicle, the vehicle while disappear
    -- and also this type spawn take some times to spawn vehicle like between (0.5 to 3 second)
    EnableServerSpawnVehicle = true,  

    Vehicle = {
        -- This car is comming in (sf_restaurant_assets)
        {
            NameSpawn = 'uwucafe_van', 
            Livery = 0, -- 0 while select livery randomly 
            Label = 'UwU Van',
            Type = 'automobile'
        },
    },
    Coords = MapLocations[Config.PreConfigMap].GarageSpawnVehicle  -- check in maps selected file [sf_uwucafe/maps/*.lua]
}

Config.Delivery = {
    Enable = true,
    TypeUse = 'target',       -- target, drawtext, textui
    MoneyType = 'cash',      -- cash / bank
    UnlimitedDelivery = false,
    Timer = 8,  -- min | how much time to order expire if not delivered
    Key = 'E',   -- key button to delivery 
    ProgressBarDuration = 8000, -- milisecond

    -- Position NUI
    OrderList_NUI = 'left-center',  -- left-center / right-center

    -- this if player start a delivery job and leave server or crash, when return server and time delivery still not finished, if you want player complete the job normaly or start new one
    -- complete job normaly [false]
    -- start new one [true]
    DropDelivery = false,  
    
    Animation = {               -- animation delivery in front door
        Dict = 'mp_car_bomb',
        Name = 'car_bomb_mechanic'
    },
    Blip = {
        Sprite = 478,
        Color = 8,
        Scale = 0.6
    },
    LoseXP = {        -- that happen when time delivery expire or when player stop delivery in laptop (that also help for not spamming stop and start delivery to get lower request item pack)
        Enable = true,
        XP = {
            Min = 1,
            Max = 1
        }
    },
    PackItems = { -- items can be delivered (max items per pack 8)
        -- Coffee Break Packs
        [1] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_pink_velvet_latte'] = { Min = 1, Max = 1 },
                ['uwu_velvet_vibes_cupcake'] = { Min = 1, Max = 1 },
            }
        },
        [2] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_matcha_bubble_latte'] = { Min = 1, Max = 1 },
                ['uwu_matcha_dream_cake'] = { Min = 1, Max = 1 },
            }
        },
        
        -- Lunch Specials
        [3] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_chicken_parmesan_with_spaghetti'] = { Min = 1, Max = 1 },
                ['uwu_lavender_honey_lemonade'] = { Min = 1, Max = 1 },
            }
        },
        [4] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_steak_frites_with_garlic_herb_butter'] = { Min = 1, Max = 1 },
                ['uwu_catnip_iced_tea'] = { Min = 1, Max = 1 },
            }
        },
        
        -- Vegetarian Options
        [5] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_vegetable_stir_fry_with_tofu'] = { Min = 1, Max = 1 },
                ['uwu_peach_melba_fizz'] = { Min = 1, Max = 1 },
            }
        },
        
        -- Dessert Combos
        [6] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_strawberry_shortcake_layers'] = { Min = 1, Max = 1 },
                ['uwu_strawberry_milk_tea'] = { Min = 1, Max = 1 },
            }
        },
        [7] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_chocolate_fudge_cat_cake'] = { Min = 1, Max = 1 },
                ['uwu_uwu_bubble_tea'] = { Min = 1, Max = 1 },
            }
        },
        
        -- Seafood Meals
        [8] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_grilled_salmon_with_lemon_butter'] = { Min = 1, Max = 1 },
                ['uwu_vanilla_rose_latte'] = { Min = 1, Max = 1 },
            }
        },
        [9] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_shrimp_scampi_with_garlic_pasta'] = { Min = 1, Max = 1 },
                ['uwu_caramel_pudding_coffee'] = { Min = 1, Max = 1 },
            }
        },
        
        -- Party Packs
        [10] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_kitty_paw_macarons'] = { Min = 6, Max = 6 },
                ['uwu_kittens_milkshake'] = { Min = 2, Max = 2 },
            }
        },
        [11] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_whisker_cupcakes'] = { Min = 4, Max = 4 },
                ['uwu_uwu_bubble_tea'] = { Min = 4, Max = 4 },
            }
        },
        
        -- Breakfast Sets
        [12] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_caramel_pudding_coffee'] = { Min = 1, Max = 1 },
                ['uwu_fluffernutter_bars'] = { Min = 2, Max = 2 },
            }
        },
        
        -- Romantic Dinner
        [13] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_lamb_chops_with_mint_sauce'] = { Min = 1, Max = 1 },
                ['uwu_pink_velvet_cake'] = { Min = 1, Max = 1 },
                ['uwu_vanilla_rose_latte'] = { Min = 2, Max = 2 },
            }
        },
        
        -- Kids Party Pack
        [14] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_teddy_bear_jelly'] = { Min = 4, Max = 4 },
                ['uwu_strawberry_milk_tea'] = { Min = 4, Max = 4 },
            }
        },
        
        -- Office Meeting Pack
        [15] = {
            Price = { Min = 300, Max = 500 },
            Items = {
                ['uwu_cafe_bliss_bites_cupcake'] = { Min = 8, Max = 8 },
                ['uwu_matcha_bubble_latte'] = { Min = 4, Max = 4 },
                ['uwu_caramel_pudding_coffee'] = { Min = 4, Max = 4 },
            }
        },
        
        -- Single Dessert Packs
        [16] = {
            Price = { Min = 100, Max = 200 },
            Items = {
                ['uwu_mochi_cake'] = { Min = 1, Max = 1 },
            }
        },
        [17] = {
            Price = { Min = 100, Max = 200 },
            Items = {
                ['uwu_purrfectly_sweet_cake'] = { Min = 1, Max = 1 },
            }
        },
        
        -- Drink Combos
        [18] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_uwu_bubble_tea'] = { Min = 2, Max = 2 },
                ['uwu_kitty_paw_macarons'] = { Min = 2, Max = 2 },
            }
        },
        
        -- Premium Cake Delivery
        [19] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_fluffy_cloud_cake'] = { Min = 1, Max = 1 },
                ['uwu_caramel_dream_cake'] = { Min = 1, Max = 1 },
            }
        },
        
        -- Quick Lunch
        [20] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_vegetable_stir_fry_with_tofu'] = { Min = 1, Max = 1 },
                ['uwu_catnip_iced_tea'] = { Min = 1, Max = 1 },
            }
        },
        
        -- Afternoon Tea Set
        [21] = {
            Price = { Min = 300, Max = 500 },
            Items = {
                ['uwu_whimsical_lemon_cake'] = { Min = 1, Max = 1 },
                ['uwu_peach_blossom_cake'] = { Min = 1, Max = 1 },
                ['uwu_uwu_bubble_tea'] = { Min = 2, Max = 2 },
            }
        },
        
        -- Late Night Snack
        [22] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_midnight_mocha_cupcake'] = { Min = 2, Max = 2 },
                ['uwu_caramel_pudding_coffee'] = { Min = 1, Max = 1 },
            }
        },
        
        -- Healthy Choice
        [23] = {
            Price = { Min = 200, Max = 400 },
            Items = {
                ['uwu_grilled_salmon_with_lemon_butter'] = { Min = 1, Max = 1 },
                ['uwu_matcha_bubble_latte'] = { Min = 1, Max = 1 },
            }
        },
        
        -- Sweet Tooth Special
        [24] = {
            Price = { Min = 300, Max = 500 },
            Items = {
                ['uwu_cotton_candy_cake'] = { Min = 1, Max = 1 },
                ['uwu_sunset_sprinkles_cupcake'] = { Min = 1, Max = 1 },
                ['uwu_kittens_milkshake'] = { Min = 1, Max = 1 },
            }
        },
        
        -- Ultimate UWU Experience
        [25] = {
            Price = { Min = 400, Max = 600 },
            Items = {
                ['uwu_kitten_paw_cake'] = { Min = 1, Max = 1 },
                ['uwu_uwu_bubble_tea'] = { Min = 2, Max = 2 },
                ['uwu_kitty_paw_macarons'] = { Min = 4, Max = 4 },
                ['uwu_pawprint_sponge_cake'] = { Min = 1, Max = 1 },
            }
        },
    },

    Locations = MapLocations[Config.PreConfigMap].Delivery  -- check in maps selected file [sf_uwucafe/maps/*.lua]
}

Config.Packaging = {
    -- that simple, if true you can use package in job, if false system packging will not work
    -- but dont worry if you disable that system after players buy package, the players will still can open package
    Enable = true,  

    PackageItem = 'uwu_uwu_bag',  -- item that receive when packaging
    UseableItem = 'uwu_empty_bag',
    RequireItems = {'uwu_empty_bag', 'uwu_sticker'},   -- require item before package
    MaxItems = 8,  -- max items in one package

    -- you cant use animation and scenario together only one of him will work
    Animation = { 
        Enable = false,
        Dict = '',
        Name = ''
    },
    Scenario = { 
        Enable = true,
        ScenarioName = 'CODE_HUMAN_MEDIC_TEND_TO_DEAD'
    },

    XP = {    -- xp add for every package
        Enable = true,
        Min = 1,
        Max = 1
    },
    SpawnProp = {  -- prop will not spawn if scenario and animation disabled
        Enable = true, 
        PropName = 'uwucafe_bag'
    },
    Duration = {
        Min = 10000,
        Max = 20000
    },
    WhitlistItems = {    -- items can package
        -- Drinks
        [1] = 'uwu_caramel_pudding_coffee',
        [2] = 'uwu_catnip_iced_tea',
        [3] = 'uwu_kittens_milkshake',
        [4] = 'uwu_lavender_honey_lemonade',
        [5] = 'uwu_matcha_bubble_latte',
        [6] = 'uwu_peach_melba_fizz',
        [7] = 'uwu_pink_velvet_latte',
        [8] = 'uwu_strawberry_milk_tea',
        [9] = 'uwu_uwu_bubble_tea',
        [10] = 'uwu_vanilla_rose_latte',

        -- Dishes
        [11] = 'uwu_chicken_parmesan_with_spaghetti',
        [12] = 'uwu_grilled_salmon_with_lemon_butter',
        [13] = 'uwu_lamb_chops_with_mint_sauce',
        [14] = 'uwu_shrimp_scampi_with_garlic_pasta',
        [15] = 'uwu_steak_frites_with_garlic_herb_butter',
        [16] = 'uwu_vegetable_stir_fry_with_tofu',

        -- Desserts
        [17] = 'uwu_whisker_cupcakes',
        [18] = 'uwu_whimsical_lemon_cake',
        [19] = 'uwu_velvet_vibes_cupcake',
        [20] = 'uwu_teddy_bear_jelly',
        [21] = 'uwu_sunset_sprinkles_cupcake',
        [22] = 'uwu_strawberry_shortcake_layers',
        [23] = 'uwu_strawberry_cream_puffs',
        [24] = 'uwu_purrfectly_sweet_cake',
        [25] = 'uwu_pink_velvet_cake',
        [26] = 'uwu_peach_blossom_cake',
        [27] = 'uwu_pawprint_sponge_cake',
        [28] = 'uwu_mochi_cake',
        [29] = 'uwu_midnight_mocha_cupcake',
        [30] = 'uwu_matcha_dream_cake',
        [31] = 'uwu_kitty_paw_macarons',
        [32] = 'uwu_kitten_paw_cake',
        [33] = 'uwu_golden_caramel_cupcake',
        [34] = 'uwu_fluffy_cloud_cake',
        [35] = 'uwu_fluffernutter_bars',
        [36] = 'uwu_cotton_candy_cake',
        [37] = 'uwu_chocolate_fudge_cat_cake',
        [38] = 'uwu_caramel_dream_cake',
        [39] = 'uwu_cafe_bliss_bites_cupcake',
        [40] = 'uwu_bunny_ear_cake',
    }
}

-- required items to fill machines
-- Note: Dont touch this if you dont know what you do
Config.FillingMachineRequirements = { 
    -- Example multiple item to fill
    -- ['coffee'] = {item = {'5_litre_water', 'decaf_coffee'}, litrs = 5},

    ['water'] = {item = 'uwu_5_litr_water', litrs = 5},
    ['milk'] = {item = 'uwu_5_litr_milk', litrs = 5},
}

-- type drinks colors
Config.TypeDrinkColors = {  
    ['water'] = '#038BC6',
    ['milk'] = '#FFFFFF',
}

-- Drinks Label 
-- you can find labels in [sf_uwucafe/locale/*.lua]
Config.DrinksLabel = {
    ['water'] = lang.water,
    ['milk'] = lang.milk,
}

Config.Kitchen = {
    TypeUse = 'target',         -- target, drawtext, textui
    Cutting = {
        Key = 'G',
        XP = {    -- xp add for every cut
            Enable = true,
            Min = 1,
            Max = 3
        },
        Animation = {
            Enable = true,
            Dict = 'anim@amb@business@coc@coc_unpack_cut@',
            Name = 'fullcut_cycle_v1_cokecutter',
            PropAttachment = {
                Enable = true,
                Prop = 'prop_knife',
                PropBone = 57005,
                PropCoords = {
                    PosX = 0.18,
                    PosY = 0.08,
                    PosZ = 0.0,
                    RotX = 15.0,
                    RotY = 0.0,
                    RotZ = -42.0
                }
            }
        },
        KnifeItem = 'uwu_knife',
        MultipleInOne = { 
            Enable = true,  -- if true player can cut multiple ingredient automatically
            Max = 5, -- max items can cut
        },  
        Ingredient = {  -- The Ids must be in order and not repeated. 
            uwu_bell_pepper = {
                Id = 1,
                ReceiveItem = 'uwu_sliced_bell_pepper',
                Amount = {Min = 3, Max = 5},
                Duration = {
                    Min = 3500,
                    Max = 5000
                }
            },
            uwu_carrot = {
                Id = 2,
                ReceiveItem = 'uwu_sliced_carrot',
                Amount = {Min = 3, Max = 5},
                Duration = {
                    Min = 3500,
                    Max = 5000
                }
            },
            uwu_cucumber = {
                Id = 3,
                ReceiveItem = 'uwu_sliced_cucumber',
                Amount = {Min = 3, Max = 5},
                Duration = {
                    Min = 3500,
                    Max = 5000
                }
            },
            uwu_orange = {
                Id = 4,
                ReceiveItem = 'uwu_sliced_orange',
                Amount = {Min = 3, Max = 5},
                Duration = {
                    Min = 3500,
                    Max = 5000
                }
            },
            uwu_peach = {
                Id = 5,
                ReceiveItem = 'uwu_sliced_peach',
                Amount = {Min = 3, Max = 5},
                Duration = {
                    Min = 3500,
                    Max = 5000
                }
            },
            uwu_potato = {
                Id = 6,
                ReceiveItem = 'uwu_fries',
                Amount = {Min = 3, Max = 5},
                Duration = {
                    Min = 3500,
                    Max = 5000
                }
            },
            uwu_lemon = {
                Id = 7,
                ReceiveItem = {'uwu_sliced_lemon', 'uwu_lemon_zest'},
                Amount = {Min = 3, Max = 5},
                Duration = {
                    Min = 3500,
                    Max = 5000
                }
            },
        },   
        Locations = MapLocations[Config.PreConfigMap].KitchenCutting.Locations   -- check in maps selected file [sf_uwucafe/maps/*.lua]
    },
    DessertPreparing = {
        Key = 'G',
        XP = {    -- xp add for every burger prepared
            Enable = true,
            Min = 1,
            Max = 3
        },
        Animation = {
            Enable = true,
            Dict = 'missheist_jewelleadinout',
            Name = 'jh_int_outro_loop_a',
            PropAttachment = {
                Enable = false,
                Prop = '',
                PropBone = 57005,
                PropCoords = {
                    PosX = 0.0,
                    PosY = 0.0,
                    PosZ = 0.0,
                    RotX = 0.0,
                    RotY = 0.0,
                    RotZ = 0.0
                }
            }
        },
        SoundEffect = {  -- location where sound effect [sf_uwucafe/web/sounds/*.wav]
            Enable = true,
            InStart = 'microwave-start',
            InFinish = 'microwave-finish'
        },
        MultipleInOne = { 
            Enable = true,  -- if true player can prepare multiple ingredient automatically
            Max = 5, -- max items can prepare
        },
        Ingredient = {  -- The Ids must be in order and not repeated.
            uwu_whisker_cupcakes = {
                Id = 1,
                RequiredItems = {
                    {Item = 'uwu_empty_cup_cake', Amount = 1},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_egg', Amount = 1},
                    {Item = 'uwu_whipped_cream', Amount = 1},
                    {Item = 'uwu_chocolate_ganache', Amount = 1},
                    {Item = 'uwu_vanilla_extract', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_velvet_vibes_cupcake = {
                Id = 2,
                RequiredItems = {
                    {Item = 'uwu_empty_cup_cake', Amount = 1},
                    {Item = 'uwu_flour', Amount = 1},
                    {Item = 'uwu_sugar', Amount = 1},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_egg', Amount = 2},
                    {Item = 'uwu_vanilla_extract', Amount = 1},
                    {Item = 'uwu_baking_soda', Amount = 1},
                    {Item = 'uwu_cocoa_powder', Amount = 1},
                    {Item = 'uwu_food_coloring', Amount = 1},
                    {Item = 'uwu_cream_cheese_frosting', Amount = 1},
                    {Item = 'uwu_powdered_sugar', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_sunset_sprinkles_cupcake = {
                Id = 3,
                RequiredItems = {
                    {Item = 'uwu_empty_cup_cake', Amount = 1},
                    {Item = 'uwu_flour', Amount = 1},
                    {Item = 'uwu_sugar', Amount = 1},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_egg', Amount = 2},
                    {Item = 'uwu_baking_soda', Amount = 1},
                    {Item = 'uwu_vanilla_extract', Amount = 1},
                    {Item = 'uwu_sliced_orange', Amount = 3},
                    {Item = 'uwu_butter_cream', Amount = 1},
                    {Item = 'uwu_sprinkles', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_midnight_mocha_cupcake = {
                Id = 4,
                RequiredItems = {
                    {Item = 'uwu_empty_cup_cake', Amount = 1},
                    {Item = 'uwu_flour', Amount = 1},
                    {Item = 'uwu_sugar', Amount = 1},
                    {Item = 'uwu_baking_soda', Amount = 1},
                    {Item = 'uwu_brewed_coffee', Amount = 1},
                    {Item = 'uwu_cocoa_powder', Amount = 1},
                    {Item = 'uwu_vanilla_extract', Amount = 1},
                    {Item = 'uwu_egg', Amount = 2},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_chocolate_chips', Amount = 1},
                    {Item = 'uwu_powdered_sugar', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_golden_caramel_cupcake = {
                Id = 5,
                RequiredItems = {
                    {Item = 'uwu_empty_cup_cake', Amount = 1},
                    {Item = 'uwu_flour', Amount = 1},
                    {Item = 'uwu_sugar', Amount = 1},
                    {Item = 'uwu_brown_sugar', Amount = 1},
                    {Item = 'uwu_baking_soda', Amount = 1},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_egg', Amount = 2},
                    {Item = 'uwu_vanilla_extract', Amount = 1},
                    {Item = 'uwu_salted_caramel_topping', Amount = 1},
                    {Item = 'uwu_crushed_toffee_bits', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_cafe_bliss_bites_cupcake = {
                Id = 6,
                RequiredItems = {
                    {Item = 'uwu_empty_cup_cake', Amount = 1},
                    {Item = 'uwu_flour', Amount = 1},
                    {Item = 'uwu_sugar', Amount = 1},
                    {Item = 'uwu_brewed_coffee', Amount = 1},
                    {Item = 'uwu_milk', Amount = 1},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_egg', Amount = 2},
                    {Item = 'uwu_vanilla_extract', Amount = 1},
                    {Item = 'uwu_baking_soda', Amount = 1},
                    {Item = 'uwu_chocolate_ganache', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_whimsical_lemon_cake = {
                Id = 7,
                RequiredItems = {
                    {Item = 'uwu_flour', Amount = 1},
                    {Item = 'uwu_sugar', Amount = 1},
                    {Item = 'uwu_egg', Amount = 1},
                    {Item = 'uwu_lemon_zest', Amount = 2},
                    {Item = 'uwu_sliced_lemon', Amount = 2},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_whipped_cream', Amount = 1},
                    {Item = 'uwu_edible_flowers', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_teddy_bear_jelly = {
                Id = 8,
                RequiredItems = {
                    {Item = 'uwu_gummy_bears', Amount = 1},
                    {Item = 'uwu_strawberry', Amount = 1},
                    {Item = 'uwu_whipped_cream', Amount = 1},
                    {Item = 'uwu_crushed_biscuits', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_strawberry_shortcake_layers = {
                Id = 9,
                RequiredItems = {
                    {Item = 'uwu_sponge_cake', Amount = 1},
                    {Item = 'uwu_whipped_cream', Amount = 1},
                    {Item = 'uwu_strawberry', Amount = 1},
                    {Item = 'uwu_sugar', Amount = 1},
                    {Item = 'uwu_vanilla_extract', Amount = 1},
                    {Item = 'uwu_almond_flakes', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_strawberry_cream_puffs = {
                Id = 10,
                RequiredItems = {
                    {Item = 'uwu_flour', Amount = 1},
                    {Item = 'uwu_water', Amount = 1},
                    {Item = 'uwu_strawberry', Amount = 1},
                    {Item = 'uwu_heavy_cream', Amount = 1},
                    {Item = 'uwu_powdered_sugar', Amount = 1},
                    {Item = 'uwu_vanilla_extract', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_purrfectly_sweet_cake = {
                Id = 11,
                RequiredItems = {
                    {Item = 'uwu_plate_1', Amount = 1},
                    {Item = 'uwu_flour', Amount = 1},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_egg', Amount = 2},
                    {Item = 'uwu_sugar', Amount = 1},
                    {Item = 'uwu_food_coloring', Amount = 1},
                    {Item = 'uwu_butter_cream', Amount = 1},
                    {Item = 'uwu_sprinkles', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_pink_velvet_cake = {
                Id = 12,
                RequiredItems = {
                    {Item = 'uwu_plate_1', Amount = 1},
                    {Item = 'uwu_red_velvet_cake_mix', Amount = 1},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_egg', Amount = 2},
                    {Item = 'uwu_cream_cheese_frosting', Amount = 1},
                    {Item = 'uwu_sprinkles', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_peach_blossom_cake = {
                Id = 13,
                RequiredItems = {
                    {Item = 'uwu_flour', Amount = 1},
                    {Item = 'uwu_sugar', Amount = 1},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_egg', Amount = 2},
                    {Item = 'uwu_peach_puree', Amount = 1},
                    {Item = 'uwu_vanilla_extract', Amount = 1},
                    {Item = 'uwu_sliced_peach', Amount = 3},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_pawprint_sponge_cake = {
                Id = 14,
                RequiredItems = {
                    {Item = 'uwu_flour', Amount = 1},
                    {Item = 'uwu_sugar', Amount = 1},
                    {Item = 'uwu_egg', Amount = 2},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_chocolate_ganache', Amount = 1},
                    {Item = 'uwu_whipped_cream', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_mochi_cake = {
                Id = 15,
                RequiredItems = {
                    {Item = 'uwu_glutinous_rice_flour', Amount = 1},
                    {Item = 'uwu_sugar', Amount = 1},
                    {Item = 'uwu_egg', Amount = 2},
                    {Item = 'uwu_milk', Amount = 1},
                    {Item = 'uwu_vanilla_extract', Amount = 1},
                    {Item = 'uwu_coconut_flakes', Amount = 1},
                    {Item = 'uwu_purple_sweet_potato_filling', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_matcha_dream_cake = {
                Id = 16,
                RequiredItems = {
                    {Item = 'uwu_plate_3', Amount = 1},
                    {Item = 'uwu_matcha_powder', Amount = 1},
                    {Item = 'uwu_flour', Amount = 1},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_egg', Amount = 2},
                    {Item = 'uwu_sugar', Amount = 1},
                    {Item = 'uwu_cream_cheese_frosting', Amount = 1},
                    {Item = 'uwu_matcha_ganache', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_kitty_paw_macarons = {
                Id = 17,
                RequiredItems = {
                    {Item = 'uwu_almond_flour', Amount = 1},
                    {Item = 'uwu_powdered_sugar', Amount = 1},
                    {Item = 'uwu_egg', Amount = 1},
                    {Item = 'uwu_sugar', Amount = 1},
                    {Item = 'uwu_vanilla_extract', Amount = 1},
                    {Item = 'uwu_food_coloring', Amount = 1},
                    {Item = 'uwu_chocolate_ganache', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_kitten_paw_cake = {
                Id = 18,
                RequiredItems = {
                    {Item = 'uwu_vanilla_extract', Amount = 1},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_egg', Amount = 2},
                    {Item = 'uwu_whipped_cream', Amount = 1},
                    {Item = 'uwu_chocolate_ganache', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_fluffy_cloud_cake = {
                Id = 19,
                RequiredItems = {
                    {Item = 'uwu_plate_3', Amount = 1},
                    {Item = 'uwu_flour', Amount = 1},
                    {Item = 'uwu_egg', Amount = 2},
                    {Item = 'uwu_sugar', Amount = 1},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_vanilla_extract', Amount = 1},
                    {Item = 'uwu_whipped_cream', Amount = 1},
                    {Item = 'uwu_food_coloring', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_fluffernutter_bars = {
                Id = 20,
                RequiredItems = {
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_marshmallow_fluff', Amount = 1},
                    {Item = 'uwu_rice_crispy_treats', Amount = 1},
                    {Item = 'uwu_chocolate_drizzle', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_cotton_candy_cake = {
                Id = 21,
                RequiredItems = {
                    {Item = 'uwu_plate_2', Amount = 1},
                    {Item = 'uwu_flour', Amount = 1},
                    {Item = 'uwu_sugar', Amount = 1},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_egg', Amount = 2},
                    {Item = 'uwu_vanilla_extract', Amount = 1},
                    {Item = 'uwu_cotton_candy_syrup', Amount = 1},
                    {Item = 'uwu_sprinkles', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_chocolate_fudge_cat_cake = {
                Id = 22,
                RequiredItems = {
                    {Item = 'uwu_flour', Amount = 1},
                    {Item = 'uwu_sugar', Amount = 1},
                    {Item = 'uwu_cocoa_powder', Amount = 1},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_chocolate_chips', Amount = 1},
                    {Item = 'uwu_whipped_cream', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_caramel_dream_cake = {
                Id = 23,
                RequiredItems = {
                    {Item = 'uwu_plate_3', Amount = 1},
                    {Item = 'uwu_flour', Amount = 1},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_egg', Amount = 2},
                    {Item = 'uwu_brown_sugar', Amount = 1},
                    {Item = 'uwu_caramel_syrup', Amount = 1},
                    {Item = 'uwu_whipped_cream', Amount = 1},
                    {Item = 'uwu_salted_caramel_topping', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_bunny_ear_cake = {
                Id = 24,
                RequiredItems = {
                    {Item = 'uwu_vanilla_extract', Amount = 1},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_egg', Amount = 2},
                    {Item = 'uwu_chocolate_ganache', Amount = 1},
                    {Item = 'uwu_edible_glitter', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
        },   
        Locations = MapLocations[Config.PreConfigMap].KitchenDessertPreparing.Locations    -- check in maps selected file [sf_uwucafe/maps/*.lua]   
    },
    DishPreparing = {
        Key = 'G',
        XP = {    -- xp add for every burger prepared
            Enable = true,
            Min = 1,
            Max = 3
        },
        Animation = {
            Enable = true,
            Dict = 'amb@prop_human_bbq@male@idle_a',
            Name = 'idle_b',
            PropAttachment = {
                Enable = true,
                Prop = 'prop_fish_slice_01',
                PropBone = 28422,
                PropCoords = {
                    PosX = 0.0,
                    PosY = 0.0,
                    PosZ = 0.0,
                    RotX = 0.0,
                    RotY = 0.0,
                    RotZ = 0.0
                },
            }
        },
        SoundEffect = {  -- location where sound effect [sf_uwucafe/web/sounds/*.wav]
            Enable = false,
            InStart = 'microwave-start',
            InFinish = 'microwave-finish'
        },
        MultipleInOne = { 
            Enable = true,  -- if true player can prepare multiple ingredient automatically
            Max = 5, -- max items can prepare
        },
        Ingredient = {  -- The Ids must be in order and not repeated.
            uwu_chicken_parmesan_with_spaghetti = {
                Id = 1,
                RequiredItems = {
                    {Item = 'uwu_plate_1', Amount = 1},
                    {Item = 'uwu_chicken', Amount = 1},
                    {Item = 'uwu_spaghetti', Amount = 1},
                    {Item = 'uwu_mozzarella_cheese', Amount = 1},
                    {Item = 'uwu_black_olives', Amount = 1},
                    {Item = 'uwu_sliced_carrot', Amount = 5},
                    {Item = 'uwu_pasta_sauce', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_grilled_salmon_with_lemon_butter = {
                Id = 2,
                RequiredItems = {
                    {Item = 'uwu_plate_1', Amount = 1},
                    {Item = 'uwu_salmon_fillet', Amount = 1},
                    {Item = 'uwu_sliced_lemon', Amount = 4},
                    {Item = 'uwu_lemon_butter_sauce', Amount = 1},
                    {Item = 'uwu_herbs', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_lamb_chops_with_mint_sauce = {
                Id = 3,
                RequiredItems = {
                    {Item = 'uwu_plate_1', Amount = 1},
                    {Item = 'uwu_chopped_lamb', Amount = 1},
                    {Item = 'uwu_mint_sauce', Amount = 1},
                    {Item = 'uwu_mint_leaves', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_shrimp_scampi_with_garlic_pasta = {
                Id = 4,
                RequiredItems = {
                    {Item = 'uwu_plate_1', Amount = 1},
                    {Item = 'uwu_shrimp', Amount = 2},
                    {Item = 'uwu_garlic', Amount = 1},
                    {Item = 'uwu_spaghetti', Amount = 1},
                    {Item = 'uwu_butter', Amount = 1},
                    {Item = 'uwu_sliced_lemon', Amount = 3},
                    {Item = 'uwu_parsley', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_steak_frites_with_garlic_herb_butter = {
                Id = 5,
                RequiredItems = {
                    {Item = 'uwu_plate_1', Amount = 1},
                    {Item = 'uwu_steak', Amount = 1},
                    {Item = 'uwu_garlic_herb_butter', Amount = 1},
                    {Item = 'uwu_fries', Amount = 1},
                    {Item = 'uwu_parsley', Amount = 1},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
            uwu_vegetable_stir_fry_with_tofu = {
                Id = 6,
                RequiredItems = {
                    {Item = 'uwu_plate_1', Amount = 1},
                    {Item = 'uwu_oil', Amount = 1},
                    {Item = 'uwu_tofu', Amount = 1},
                    {Item = 'uwu_broccoli_florets', Amount = 1},
                    {Item = 'uwu_sliced_carrot', Amount = 4},
                    {Item = 'uwu_sliced_bell_pepper', Amount = 3},
                    {Item = 'uwu_sliced_cucumber', Amount = 3},
                },
                Duration = {
                    Min = 8000,
                    Max = 10000
                }
            },
        },   
        Locations = MapLocations[Config.PreConfigMap].KitchenDishePreparing.Locations    -- check in maps selected file [sf_uwucafe/maps/*.lua]   
    },
    DrinkMachine = {
        Key = 'G',
        XP = {    -- xp add for every drink prepared
            Enable = true,
            Min = 1,
            Max = 3
        },
        Animation = {
            Enable = true,
            Dict = 'timetable@gardener@filling_can',
            Name = 'gar_ig_5_filling_can',
            PropAttachment = {
                Enable = false,
                Prop = '',
                PropBone = 57005,
                PropCoords = {
                    PosX = 0.0,
                    PosY = 0.0,
                    PosZ = 0.0, 
                    RotX = 0.0,
                    RotY = 0.0,
                    RotZ = 0.0
                }
            }
        },
        FillingMachine = {
            Animation = {
                Enable = true,
                Dict = 'timetable@gardener@filling_can',
                Name = 'gar_ig_5_filling_can',
                PropAttachment = {
                    Enable = false,
                    Prop = '',
                    PropBone = 57005,
                    PropCoords = {
                        PosX = 0.0,
                        PosY = 0.0,
                        PosZ = 0.0,
                        RotX = 0.0,
                        RotY = 0.0,
                        RotZ = 0.0
                    }
                }
            },
            Duration = {
                Min = 10000,
                Max = 15000
            }
        },
        MachineMaxLitr = 60, -- litr

        -- drinks supported in this machine
        -- Important if you add new type drink here, you must add in Config.FillingMachineRequirements and his color in Config.TypeDrinkColors
        TypeDrinks = {'water', 'milk'},

        MultipleInOne = { 
            Enable = true,  -- if true player can prepare multiple drink automatically
            Max = 5, -- max items can prepare
        },
        Ingredient = {  -- The Ids must be in order and not repeated.   
            uwu_caramel_pudding_coffee = {
                Id = 1,
                TypeDrink = {   -- type drink and litr
                    ['milk'] = 1,
                },
                RequiredItems = {
                    {Item = 'uwu_empty_cup_7', Amount = 1},
                    {Item = 'uwu_decaf_coffee', Amount = 1},
                    {Item = 'uwu_caramel_syrup', Amount = 1},
                    {Item = 'uwu_whipped_cream', Amount = 1},
                    {Item = 'uwu_chocolate_drizzle', Amount = 1},
                },
                Duration = {
                    Min = 4000,
                    Max = 6000
                }
            },
            uwu_catnip_iced_tea = {
                Id = 2,
                TypeDrink = {   -- type drink and litr
                    ['water'] = 1,
                },
                RequiredItems = {
                    {Item = 'uwu_empty_cup_6', Amount = 1},
                    {Item = 'uwu_catnip_tea', Amount = 1},
                    {Item = 'uwu_honey', Amount = 1},
                    {Item = 'uwu_mint_leaves', Amount = 1},
                    {Item = 'uwu_lemon', Amount = 1},
                    {Item = 'uwu_ice', Amount = 5},
                },
                Duration = {
                    Min = 4000,
                    Max = 6000
                }
            },
            uwu_kittens_milkshake = {
                Id = 3,
                TypeDrink = {   -- type drink and litr
                    ['milk'] = 1,
                },
                RequiredItems = {
                    {Item = 'uwu_empty_cup_3', Amount = 1},
                    {Item = 'uwu_vanilla_extract', Amount = 1},
                    {Item = 'uwu_whipped_cream', Amount = 1},
                    {Item = 'uwu_sprinkles', Amount = 1},
                    {Item = 'uwu_cotton_candy_syrup', Amount = 1},
                },
                Duration = {
                    Min = 4000,
                    Max = 6000
                }
            },
            uwu_lavender_honey_lemonade = {
                Id = 4,
                TypeDrink = {   -- type drink and litr
                    ['water'] = 1,
                },
                RequiredItems = {
                    {Item = 'uwu_empty_cup_4', Amount = 1},
                    {Item = 'uwu_lavender', Amount = 1},
                    {Item = 'uwu_sliced_lemon', Amount = 5},
                    {Item = 'uwu_honey', Amount = 1},
                    {Item = 'uwu_ice', Amount = 5},
                },
                Duration = {
                    Min = 4000,
                    Max = 6000
                }
            },
            uwu_matcha_bubble_latte = {
                Id = 5,
                TypeDrink = {   -- type drink and litr
                    ['milk'] = 1,
                },
                RequiredItems = {
                    {Item = 'uwu_empty_cup_8', Amount = 1},
                    {Item = 'uwu_matcha_powder', Amount = 1},
                    {Item = 'uwu_honey', Amount = 1},
                    {Item = 'uwu_whipped_cream', Amount = 1},
                },
                Duration = {
                    Min = 4000,
                    Max = 6000
                }
            },
            uwu_peach_melba_fizz = {
                Id = 6,
                TypeDrink = {   -- type drink and litr
                    ['water'] = 1,
                },
                RequiredItems = {
                    {Item = 'uwu_empty_cup_5', Amount = 1},
                    {Item = 'uwu_sliced_peach', Amount = 5},
                    {Item = 'uwu_lemon_zest', Amount = 3},
                    {Item = 'uwu_mint_leaves', Amount = 1},
                    {Item = 'uwu_ice', Amount = 5},
                },
                Duration = {
                    Min = 4000,
                    Max = 6000
                }
            },
            uwu_pink_velvet_latte = {
                Id = 7,
                TypeDrink = {   -- type drink and litr
                    ['milk'] = 1,
                },
                RequiredItems = {
                    {Item = 'uwu_empty_cup_2', Amount = 1},
                    {Item = 'uwu_sugar', Amount = 1},
                    {Item = 'uwu_strawberry', Amount = 1},
                    {Item = 'uwu_whipped_cream', Amount = 1},
                },
                Duration = {
                    Min = 4000,
                    Max = 6000
                }
            },
            uwu_strawberry_milk_tea = {
                Id = 8,
                TypeDrink = {   -- type drink and litr
                    ['milk'] = 1,
                },
                RequiredItems = {
                    {Item = 'uwu_empty_cup_3', Amount = 1},
                    {Item = 'uwu_catnip_tea', Amount = 1},
                    {Item = 'uwu_strawberry', Amount = 1},
                    {Item = 'uwu_ice', Amount = 5},
                },
                Duration = {
                    Min = 4000,
                    Max = 6000
                }
            },
            uwu_uwu_bubble_tea = {
                Id = 9,
                TypeDrink = {   -- type drink and litr
                    ['milk'] = 1,
                },
                RequiredItems = {
                    {Item = 'uwu_empty_cup_1', Amount = 1},
                    {Item = 'uwu_catnip_tea', Amount = 1},
                    {Item = 'uwu_sugar', Amount = 1},
                    {Item = 'uwu_honey', Amount = 1},
                    {Item = 'uwu_ice', Amount = 5},
                },
                Duration = {
                    Min = 4000,
                    Max = 6000
                }
            },
            uwu_vanilla_rose_latte = {
                Id = 10,
                TypeDrink = {   -- type drink and litr
                    ['milk'] = 1,
                },
                RequiredItems = {
                    {Item = 'uwu_empty_cup_2', Amount = 1},
                    {Item = 'uwu_decaf_coffee', Amount = 1},
                    {Item = 'uwu_vanilla_extract', Amount = 1},
                    {Item = 'uwu_whipped_cream', Amount = 1},
                },
                Duration = {
                    Min = 4000,
                    Max = 6000
                }
            },
        },   
        Locations = MapLocations[Config.PreConfigMap].KitchenDrinkMachine.Locations  -- check in maps selected file [sf_uwucafe/maps/*.lua]
    },
    IceMachine = {
        Key = 'G',
        IceItem = 'uwu_ice',
        MaxIces = 1000,  -- max ice hold machine, when machine is full the build ice in pause
        MachineMaxLitr = 80,  -- max litre water can hold machine
        Duration = 100000, -- millisecond / that time to switch 1 litre to ices / minimum duration you can is (30000), im did that for performance
        LitreToIce = {   -- that mean every 1 litre water add to machine between 12 to 15 ice
            Min = 12,
            Max = 15
        },
        FillingMachine = { 
            Animation = {
                Enable = true,
                Dict = 'timetable@gardener@filling_can',
                Name = 'gar_ig_5_filling_can',
                PropAttachment = {
                    Enable = false,
                    Prop = '',
                    PropBone = 57005,
                    PropCoords = {
                        PosX = 0.0,
                        PosY = 0.0,
                        PosZ = 0.0,
                        RotX = 0.0,
                        RotY = 0.0,
                        RotZ = 0.0
                    }
                }
            },
            Duration = {
                Min = 5000,
                Max = 7000
            }
        },
        Locations = MapLocations[Config.PreConfigMap].KitchenIceMachine  -- check in maps selected file [sf_uwucafe/maps/*.lua]
    }
}

Config.Billing = {
    Enable = true,
    TypeUse = 'target',         -- target, drawtext, textui
    ShowPaid = true,            -- this if you want let paid invoice showing in list bill
    Timer = 20,                 -- min | timer public bills to expire if not paid
    Society = true,             -- if true the money will go to bossmenu, if false will go to player creator bill | Note: if this option is false and the creator bill leave server the bill automatic will be expired
    AcessGrades = {0, 1, 2, 3, 4},
    Animation = {               -- animation create bill in registers
        Dict = 'anim@scripted@ulp_missions@computerhack@male@',
        Name = 'hacking_loop'
    },
    Limit = {
        MinPrice = 5,     -- mix price can charge
        MaxPrice = 5000,  -- max price can charge
    },
    Keys = {
        ManagmentBilling = "G",   -- this for managers to create bills 
        BillingList = "E"  -- this for customers to open billing list
    },

    --[[
        Only applies if the "Society" option is enabled.
        
        When a bill is paid, the payment is distributed as follows:
        - 10% of the payment goes to the employee who created the bill.
        - 90% of the payment goes to the society.
    ]]
    Percentage = {  
        Enable = true,
        Employee = 10, --%
        Society = 90  --%
    },

    Locations = MapLocations[Config.PreConfigMap].Billing  -- check in maps selected file [sf_uwucafe/maps/*.lua]
}

-- Consumable animation and prop attachment
Config.ConsumableAnimation = {
    -- Desserts offest = vec3(0.12820495899391, 0.060050671291062, 0.043953033123216), rotation = vec3(64.814487257593, 71.767776613006, 59.992927551772)
    Sandy = {
        Dict = 'mp_player_inteat@burger',
        Name = 'mp_player_int_eat_burger',
        PropAttachment = {
            Enable = true,
            Props = {
                Prop = 'uwucafe_food',
                PropBone = 18905,
                PropCoords = {
                    PosX = 0.1282,
                    PosY = 0.06005,
                    PosZ = 0.04395,
                    RotX = 64.8144,
                    RotY = 71.7677,
                    RotZ = 59.9929
                }
            }
        }
    },

    -- Dishes
    Dishe = {
        Dict = 'anim@scripted@island@special_peds@pavel@hs4_pavel_ig5_caviar_p1',
        Name = 'base_idle',
        PropAttachment = {
            Enable = true,
            Props = {
                {
                    Prop = 'prop_cs_plate_01',
                    PropBone = 60309,
                    PropCoords = {
                        PosX = 0.00776,
                        PosY = -0.0052,
                        PosZ = -0.0396,
                        RotX = 13.9657,
                        RotY = 2.4498,
                        RotZ = 0.6090
                    }
                },
                {
                    Prop = 'uwucafe_spoon',
                    PropBone = 28422,
                    PropCoords = {
                        PosX = 0.0,
                        PosY = 0.0,
                        PosZ = 0.0,
                        RotX = 0.0,
                        RotY = 0.0,
                        RotZ = 0.0
                    }
                },
            }
        }
    },

    -- Drinks
    Drink = {
        Dict = 'amb@world_human_drinking@coffee@male@idle_a',
        Name = 'idle_c',
        PropAttachment = {
            Enable = true,
            Props = {
                Prop = 'uwucafe_cup',
                PropBone = 28422,
                PropCoords = {
                    PosX = 0.0,
                    PosY = 0.0,
                    PosZ = -0.0374,
                    RotX = 0.0,
                    RotY = 0.0,
                    RotZ = 0.0
                }
            }
        }
    },
}

-- Consumable items
Config.Consumable = {
    Enable = true,  -- you can false this if you want disable Consumable
    ItemsConsumable = {
        --[[ -- Example
        uwu_caramel_pudding_coffee = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            Thirst = {Min = 15, Max = 25}, 
            Stress = {Min = 15, Max = 25}, 
            Armor  = {Min = 10, Max = 30},
            Animation = Config.ConsumableAnimation.Drink,
        },
        ]]

        -- Drinks
        uwu_caramel_pudding_coffee = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = true,
                Items = {['uwu_empty_cup_7'] = 1}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            --Hunger = {Min = 25, Max = 35}, 
            Thirst = {Min = 20, Max = 35}, 
            Stress = {Min = 5, Max = 10}, 
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Drink,
        },
        uwu_catnip_iced_tea = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = true,
                Items = {['uwu_empty_cup_6'] = 1}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            --Hunger = {Min = 25, Max = 35}, 
            Thirst = {Min = 20, Max = 35}, 
            Stress = {Min = 5, Max = 10},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Drink,
        },
        uwu_kittens_milkshake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            --Hunger = {Min = 25, Max = 35}, 
            Thirst = {Min = 20, Max = 35}, 
            Stress = {Min = 5, Max = 10}, 
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Drink,
        },
        uwu_lavender_honey_lemonade = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            --Hunger = {Min = 25, Max = 35}, 
            Thirst = {Min = 20, Max = 35}, 
            Stress = {Min = 5, Max = 10},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Drink,
        },
        uwu_matcha_bubble_latte = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = true,
                Items = {['uwu_empty_cup_8'] = 1}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            --Hunger = {Min = 25, Max = 35}, 
            Thirst = {Min = 20, Max = 35}, 
            Stress = {Min = 5, Max = 10},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Drink,
        },
        uwu_peach_melba_fizz = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = true,
                Items = {['uwu_empty_cup_5'] = 1}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            --Hunger = {Min = 25, Max = 35}, 
            Thirst = {Min = 20, Max = 35}, 
            Stress = {Min = 5, Max = 10},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Drink,
        },
        uwu_pink_velvet_latte = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = true,
                Items = {['uwu_empty_cup_2'] = 1}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            --Hunger = {Min = 25, Max = 35}, 
            Thirst = {Min = 20, Max = 35}, 
            Stress = {Min = 5, Max = 10},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Drink,
        },
        uwu_strawberry_milk_tea = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            --Hunger = {Min = 25, Max = 35}, 
            Thirst = {Min = 20, Max = 35}, 
            Stress = {Min = 5, Max = 10},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Drink,
        },
        uwu_uwu_bubble_tea = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            --Hunger = {Min = 25, Max = 35}, 
            Thirst = {Min = 20, Max = 35}, 
            Stress = {Min = 5, Max = 10},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Drink,
        },
        uwu_vanilla_rose_latte = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = true,
                Items = {['uwu_empty_cup_2'] = 1}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            --Hunger = {Min = 25, Max = 35}, 
            Thirst = {Min = 20, Max = 35}, 
            Stress = {Min = 5, Max = 10},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Drink,
        },

        -- Dishes
        uwu_chicken_parmesan_with_spaghetti = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = true,
                Items = {['uwu_plate_1'] = 1}
            },
            Duration = {
                Min = 15000,
                Max = 22000
            },
            DisableMovement = false,
            Hunger = {Min = 75, Max = 85}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            Armor  = {Min = 10, Max = 15},
            Animation = Config.ConsumableAnimation.Dishe,
        },
        uwu_grilled_salmon_with_lemon_butter = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = true,
                Items = {['uwu_plate_1'] = 1}
            },
            Duration = {
                Min = 15000,
                Max = 22000
            },
            DisableMovement = false,
            Hunger = {Min = 75, Max = 85},  
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            Armor  = {Min = 10, Max = 15},
            Animation = Config.ConsumableAnimation.Dishe,
        },
        uwu_lamb_chops_with_mint_sauce = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = true,
                Items = {['uwu_plate_1'] = 1}
            },
            Duration = {
                Min = 15000,
                Max = 22000
            },
            DisableMovement = false,
            Hunger = {Min = 75, Max = 85},  
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            Armor  = {Min = 10, Max = 15},
            Animation = Config.ConsumableAnimation.Dishe,
        },
        uwu_shrimp_scampi_with_garlic_pasta = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = true,
                Items = {['uwu_plate_1'] = 1}
            },
            Duration = {
                Min = 15000,
                Max = 22000
            },
            DisableMovement = false,
            Hunger = {Min = 75, Max = 85}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            Armor  = {Min = 10, Max = 15},
            Animation = Config.ConsumableAnimation.Dishe,
        },
        uwu_steak_frites_with_garlic_herb_butter = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = true,
                Items = {['uwu_plate_1'] = 1}
            },
            Duration = {
                Min = 15000,
                Max = 22000
            },
            DisableMovement = false,
            Hunger = {Min = 75, Max = 85}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            Armor  = {Min = 10, Max = 15},
            Animation = Config.ConsumableAnimation.Dishe,
        },
        uwu_vegetable_stir_fry_with_tofu = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = true,
                Items = {['uwu_plate_1'] = 1}
            },
            Duration = {
                Min = 15000,
                Max = 22000
            },
            DisableMovement = false,
            Hunger = {Min = 75, Max = 85},  
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            Armor  = {Min = 10, Max = 15},
            Animation = Config.ConsumableAnimation.Dishe,
        },
        
        -- Desserts
        uwu_whisker_cupcakes = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_whimsical_lemon_cake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_velvet_vibes_cupcake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_teddy_bear_jelly = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_sunset_sprinkles_cupcake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_strawberry_shortcake_layers = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_strawberry_cream_puffs = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_purrfectly_sweet_cake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_pink_velvet_cake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_peach_blossom_cake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_pawprint_sponge_cake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_mochi_cake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_midnight_mocha_cupcake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_matcha_dream_cake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_kitty_paw_macarons = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_kitten_paw_cake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_golden_caramel_cupcake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_fluffy_cloud_cake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_fluffernutter_bars = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_cotton_candy_cake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_chocolate_fudge_cat_cake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_caramel_dream_cake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_cafe_bliss_bites_cupcake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
        uwu_bunny_ear_cake = {
            RemoveItem = {
                Enable = false,
                Items = {}
            },
            AddItem = {
                Enable = false,
                Items = {}
            },
            Duration = {
                Min = 6000,
                Max = 9000
            },
            DisableMovement = false,
            Hunger = {Min = 25, Max = 35}, 
            --Thirst = {Min = 0, Max = 0}, 
            Stress = {Min = 2, Max = 5},  
            --Armor  = {Min = 0, Max = 0},
            Animation = Config.ConsumableAnimation.Sandy,
        },
    }
}

Config.InventoryStash = {
    TypeUse = 'target',     -- target, drawtext, textui
    JobStorages = {
        Enable = true,
        Key = 'G',  -- only for drawtext and textui
        Locations = MapLocations[Config.PreConfigMap].Inventory.JobStorages  -- check in maps selected file [sf_uwucafe/maps/*.lua]
    },
    Table_Trays = {
        Enable = true,
        Key = 'K',  -- only for drawtext and textui
        Locations = MapLocations[Config.PreConfigMap].Inventory.Table_Trays  -- check in maps selected file [sf_uwucafe/maps/*.lua]
    },
    Trashes = {
        Enable = true,
        Locations = MapLocations[Config.PreConfigMap].Inventory.Trashes  -- check in maps selected file [sf_uwucafe/maps/*.lua]
    }
}

Config.Sinks = {
    Enable = true,
    TypeUse = 'target',         -- target, drawtext, textui
    Keys = {    -- using in textui and drawtext
        WachHands = "E",    -- button to wach hands
        WachFace = "G",      -- button to wach face
    },
    Locations = MapLocations[Config.PreConfigMap].Sinks  -- check in maps selected file [sf_uwucafe/maps/*.lua]
}

Config.Toilet = {
    Enable = true,
    TypeUse = 'target',         -- target, drawtext, textui
    Keys = {    -- using in textui and drawtext
        Pee = "E",     -- button to Pee
        Pop = "G",      -- button to Pop
    },
    Locations = MapLocations[Config.PreConfigMap].Toilet  -- check in maps selected file [sf_uwucafe/maps/*.lua]
}

Config.SitChair = {
    Enable = true,
    TypeUse = 'target',       -- target, drawtext, textui
    Scenario = 'PROP_HUMAN_SEAT_CHAIR_UPRIGHT',   -- scenario sit 
    Keys = {
        SitChair = 'E',   -- this key use only in type (drawtext && textui)
        LeaveChair = 'X'  -- leave chair is keybind, that mean player can change keys in setting gta5
    },
    Sits = MapLocations[Config.PreConfigMap].SitChair  -- check in maps selected file [sf_uwucafe/maps/*.lua]
}

-- the yoga locations included in chairs
Config.YogaStress = {
    Enable = true,
    Update_Interval = 10000, -- every 10 sec remove stress 
    Amount = {Min = 5, Max = 10},
}

Config.Cats = {
    Enable = true,
    TypeUse = 'target', -- target, drawtext, textui
    Key = 'H',          -- only for drawtext and textui
    Interact = {
        Enable = true,
        Duration = {
            Min = 7000,
            Max = 10000
        },
    },
    Locations = MapLocations[Config.PreConfigMap].Cats
}

Config.WarmUP = {
    Enable = true,
    ScreenEffect = {
        Enable = true, -- that when inside zone warmup [(false) to disable or (true) to enable]
        EffectName = 'HeistCelebPass',  -- "DeathFailMPDark" "MP_Bull_tost" "DrugsMichaelAliensFight" "HeistCelebPass" "FocusOut"
    },   
    Healing = {    -- healing if you are damaged
        Enable = true,
        Update_Interval = 10000,
        Amount = {Min = 8, Max = 10},
    },

    ZoneDebug = false,
    PolyZone = MapLocations[Config.PreConfigMap].WarmUP 
}

Config.Figures = {
    Enable = true,  -- if you want enable or disable full figures system
    CancelHoldKey = 'X',   -- its keybind 
    MysteryBox = {
        Enable = true,
        Item = 'uwu_mystery_box',
        Duration = {Min = 5000, Max = 7000},
        Anim = {
            Dict = 'amb@world_human_clipboard@male@idle_a',
            Name = 'idle_c',
            Flag = 51,
            Attachment = {
                Bone = 60309,
                Prop = 'uwucafe_mystery_box',
                Pos = vec3(0.1012, 0.1331, -0.1009),
                Rot = vec3(-90.293, -88.001, -150.419),
            }
        },
        ReceiveItems = {
            Items = {  -- 70% luck
                'uwu_toy_cinnamon',
                'uwu_toy_fluffington',
                'uwu_toy_jazz',
                'uwu_toy_milo',
            },
            RareItems = {   -- 25% luck
                'uwu_toy_rocket',
                'uwu_toy_ziggy',
            },
            UltraRareItems = {   -- 5% luck
                'uwu_toy_peppy',
                'uwu_toy_sprout',
            },
        }
    },
    HoldSetting = {
        uwu_toy_cinnamon = {
            Color = '#502E1D',  -- used for textui
            Dict = 'impexp_int-0',
            Name = 'mp_m_waremech_01_dual-0',
            Flag = 51,
            Attachment = {
                Bone = 28422,
                Prop = 'ch_prop_arcade_claw_plush_04a',
                Pos = vec3(0.112, 0.026, -0.0681),
                Rot = vec3(-101.397, 53.485, 5.817),
            }
        },
        uwu_toy_fluffington = {
            Color = '#6B2D70',  -- used for textui
            Dict = 'impexp_int-0',
            Name = 'mp_m_waremech_01_dual-0',
            Flag = 51,
            Attachment = {
                Bone = 28422,
                Prop = 'ch_prop_arcade_claw_plush_01a',
                Pos = vec3(0.112, 0.026, -0.0681),
                Rot = vec3(-101.397, 53.485, 5.817),
            }
        },
        uwu_toy_jazz = {
            Color = '#284B69',  -- used for textui
            Dict = 'impexp_int-0',
            Name = 'mp_m_waremech_01_dual-0',
            Flag = 51,
            Attachment = {
                Bone = 28422,
                Prop = 'ch_prop_arcade_claw_plush_03a',
                Pos = vec3(0.112, 0.026, -0.0681),
                Rot = vec3(-101.397, 53.485, 5.817),
            }
        },
        uwu_toy_milo = {
            Color = '#375E28',  -- used for textui
            Dict = 'impexp_int-0',
            Name = 'mp_m_waremech_01_dual-0',
            Flag = 51,
            Attachment = {
                Bone = 28422,
                Prop = 'ch_prop_arcade_claw_plush_02a',
                Pos = vec3(0.112, 0.026, -0.0681),
                Rot = vec3(-101.397, 53.485, 5.817),
            }
        },
        uwu_toy_peppy = {
            Color = '#86444C',  -- used for textui
            Dict = 'impexp_int-0',
            Name = 'mp_m_waremech_01_dual-0',
            Flag = 51,
            Attachment = {
                Bone = 28422,
                Prop = 'ch_prop_princess_robo_plush_07a',
                Pos = vec3(0.112, 0.026, -0.0681),
                Rot = vec3(-101.397, 53.485, 5.817),
            }
        },
        uwu_toy_rocket = {
            Color = '#8D2B20',  -- used for textui
            Dict = 'impexp_int-0',
            Name = 'mp_m_waremech_01_dual-0',
            Flag = 51,
            Attachment = {
                Bone = 28422,
                Prop = 'ch_prop_arcade_claw_plush_06a',
                Pos = vec3(0.112, 0.026, -0.0681),
                Rot = vec3(-101.397, 53.485, 5.817),
            }
        },
        uwu_toy_sprout = {
            Color = '#2A972D',  -- used for textui
            Dict = 'impexp_int-0',
            Name = 'mp_m_waremech_01_dual-0',
            Flag = 51,
            Attachment = {
                Bone = 28422,
                Prop = 'ch_prop_shiny_wasabi_plush_08a',
                Pos = vec3(0.112, 0.026, -0.0681),
                Rot = vec3(-101.397, 53.485, 5.817),
            }
        },
        uwu_toy_ziggy = {
            Color = '#87631C',  -- used for textui
            Dict = 'impexp_int-0',
            Name = 'mp_m_waremech_01_dual-0',
            Flag = 51,
            Attachment = {
                Bone = 28422,
                Prop = 'ch_prop_arcade_claw_plush_05a',
                Pos = vec3(0.112, 0.026, -0.0681),
                Rot = vec3(-101.397, 53.485, 5.817),
            }
        },
    }
}

-- this list only to register labels in starting script for performance
-- better to not change any name item of my script
-- if you add new item using in this script, important to add him here to register
-- the script automaticly get label from here if your inventory filled to get label items
Config.Items = {
    -- Drinks
    ['uwu_caramel_pudding_coffee'] = 'Caramel Pudding Coffee',
    ['uwu_catnip_iced_tea'] = 'Catnip Iced Tea',
    ['uwu_kittens_milkshake'] = 'Kittens Milkshake',
    ['uwu_lavender_honey_lemonade'] = 'Lavender Honey Lemonade',
    ['uwu_matcha_bubble_latte'] = 'Matcha Bubble Latte',
    ['uwu_peach_melba_fizz'] = 'Peach Melba Fizz',
    ['uwu_pink_velvet_latte'] = 'Pink Velvet Latte',
    ['uwu_strawberry_milk_tea'] = 'Strawberry Milk Tea',
    ['uwu_uwu_bubble_tea'] = 'UwU Bubble Tea',
    ['uwu_vanilla_rose_latte'] = 'Vanilla Rose Latte',
    
    -- Dishes
    ['uwu_chicken_parmesan_with_spaghetti'] = 'Chicken Parmesan with Spaghetti',
    ['uwu_grilled_salmon_with_lemon_butter'] = 'Grilled Salmon with Lemon Butter',
    ['uwu_lamb_chops_with_mint_sauce'] = 'Lamb Chops with Mint Sauce',
    ['uwu_shrimp_scampi_with_garlic_pasta'] = 'Shrimp Scampi with Garlic Pasta',
    ['uwu_steak_frites_with_garlic_herb_butter'] = 'Steak Frites with Garlic Herb Butter',
    ['uwu_vegetable_stir_fry_with_tofu'] = 'Vegetable Stir-Fry with Tofu',

    -- Desserts
    ['uwu_whisker_cupcakes'] = 'Whisker Cupcakes',
    ['uwu_whimsical_lemon_cake'] = 'Whimsical Lemon Cake',
    ['uwu_velvet_vibes_cupcake'] = 'Velvet Vibes Cupcake',
    ['uwu_teddy_bear_jelly'] = 'Teddy Bear Jelly',
    ['uwu_sunset_sprinkles_cupcake'] = 'Sunset Sprinkles Cupcake',
    ['uwu_strawberry_shortcake_layers'] = 'Strawberry Shortcake Layers',
    ['uwu_strawberry_cream_puffs'] = 'Strawberry Cream Puffs',
    ['uwu_purrfectly_sweet_cake'] = 'Purrfectly Sweet Cake',
    ['uwu_pink_velvet_cake'] = 'Pink Velvet Cake',
    ['uwu_peach_blossom_cake'] = 'Peach Blossom Cake',
    ['uwu_pawprint_sponge_cake'] = 'Pawprint Sponge Cake',
    ['uwu_mochi_cake'] = 'Mochi Cake',
    ['uwu_midnight_mocha_cupcake'] = 'Midnight Mocha Cupcake',
    ['uwu_matcha_dream_cake'] = 'Matcha Dream Cake',
    ['uwu_kitty_paw_macarons'] = 'Kitty Paw Macarons',
    ['uwu_kitten_paw_cake'] = 'Kitten Paw Cake',
    ['uwu_golden_caramel_cupcake'] = 'Golden Caramel Cupcake',
    ['uwu_fluffy_cloud_cake'] = 'Fluffy Cloud Cake',
    ['uwu_fluffernutter_bars'] = 'Fluffernutter Bars',
    ['uwu_cotton_candy_cake'] = 'Cotton Candy Cake',
    ['uwu_chocolate_fudge_cat_cake'] = 'Chocolate Fudge Cat Cake',
    ['uwu_caramel_dream_cake'] = 'Caramel Dream Cake',
    ['uwu_cafe_bliss_bites_cupcake'] = 'Cafe Bliss Bites Cupcake',
    ['uwu_bunny_ear_cake'] = 'Bunny Ear Cake',

    -- Ingredients
    ['uwu_whipped_cream'] = 'Whipped Cream',
    ['uwu_water'] = 'Water',
    ['uwu_vanilla_extract'] = 'Vanilla Extract',
    ['uwu_uwu_bag'] = 'UwU Bag',
    ['uwu_tofu'] = 'Tofu',
    ['uwu_sugar'] = 'Sugar',
    ['uwu_strawberry'] = 'Strawberry',
    ['uwu_sticker'] = 'Sticker',
    ['uwu_steak'] = 'Steak',
    ['uwu_sprinkles'] = 'Sprinkles',
    ['uwu_sponge_cake'] = 'Sponge Cake',
    ['uwu_spaghetti'] = 'Spaghetti',
    ['uwu_sliced_peach'] = 'Sliced Peach',
    ['uwu_sliced_orange'] = 'Sliced Orange',
    ['uwu_sliced_cucumber'] = 'Sliced Cucumber',
    ['uwu_sliced_carrot'] = 'Sliced Carrot',
    ['uwu_sliced_bell_pepper'] = 'Sliced Bell Pepper',
    ['uwu_sliced_lemon'] = 'Sliced Lemon',
    ['uwu_shrimp'] = 'Shrimp',
    ['uwu_salted_caramel_topping'] = 'Salted Caramel Topping',
    ['uwu_salt'] = 'Salt',
    ['uwu_salmon_fillet'] = 'Salmon Fillet',
    ['uwu_rice_crispy_treats'] = 'Rice Crispy Treats',
    ['uwu_red_velvet_cake_mix'] = 'Red Velvet Cake Mix',
    ['uwu_purple_sweet_potato_filling'] = 'Purple Sweet Potato Filling',
    ['uwu_powdered_sugar'] = 'Powdered Sugar',
    ['uwu_potato'] = 'Potato',
    ['uwu_plate_1'] = 'White Plate',
    ['uwu_plate_2'] = 'Brown Plate',
    ['uwu_plate_3'] = 'Purple Plate',
    ['uwu_peach'] = 'Peach',
    ['uwu_peach_puree'] = 'Peach Puree',
    ['uwu_pasta_sauce'] = 'Pasta Sauce',
    ['uwu_parsley'] = 'Parsley',
    ['uwu_orange'] = 'Orange',
    ['uwu_oil'] = 'Oil',
    ['uwu_mozzarella_cheese'] = 'Mozzarella Cheese',
    ['uwu_mint_sauce'] = 'Mint Sauce',
    ['uwu_mint_leaves'] = 'Mint Leaves',
    ['uwu_milk'] = 'Milk',
    ['uwu_matcha_powder'] = 'Matcha Powder',
    ['uwu_matcha_ganache'] = 'Matcha Ganache',
    ['uwu_marshmallow_fluff'] = 'Marshmallow Fluff',
    ['uwu_lemon'] = 'Lemon',
    ['uwu_lemon_zest'] = 'Lemon Zest',
    ['uwu_lemon_butter_sauce'] = 'Lemon Butter Sauce',
    ['uwu_lavender'] = 'Lavender',
    ['uwu_knife'] = 'Knife',
    ['uwu_ice'] = 'Ice',
    ['uwu_honey'] = 'Honey',
    ['uwu_herbs'] = 'Herbs',
    ['uwu_heavy_cream'] = 'Heavy Cream',
    ['uwu_gummy_bears'] = 'Gummy Bears',
    ['uwu_glutinous_rice_flour'] = 'Glutinous Rice Flour',
    ['uwu_garlic'] = 'Garlic',
    ['uwu_garlic_herb_butter'] = 'Garlic Herb Butter',
    ['uwu_fries'] = 'Fries',
    ['uwu_food_coloring'] = 'Food Coloring',
    ['uwu_flour'] = 'Flour',
    ['uwu_empty_cup_cake'] = 'Empty Cup Cake',
    ['uwu_empty_cup_1'] = 'Empty Cup',
    ['uwu_empty_cup_2'] = 'Empty Cup',
    ['uwu_empty_cup_3'] = 'Empty Cup',
    ['uwu_empty_cup_4'] = 'Empty Cup',
    ['uwu_empty_cup_5'] = 'Empty Cup',
    ['uwu_empty_cup_6'] = 'Empty Cup',
    ['uwu_empty_cup_7'] = 'Empty Cup',
    ['uwu_empty_cup_8'] = 'Empty Cup',
    ['uwu_empty_bag'] = 'Empty Bag',
    ['uwu_egg'] = 'Egg',
    ['uwu_edible_glitter'] = 'Edible Glitter',
    ['uwu_edible_flowers'] = 'Edible Flowers',
    ['uwu_decaf_coffee'] = 'Decaf Coffee',
    ['uwu_cucumber'] = 'Cucumber',
    ['uwu_crushed_toffee_bits'] = 'Crushed Toffee Bits',
    ['uwu_crushed_biscuits'] = 'Crushed Biscuits',
    ['uwu_cream_cheese_frosting'] = 'Cream Cheese Frosting',
    ['uwu_cotton_candy_syrup'] = 'Cotton Candy Syrup',
    ['uwu_coconut_flakes'] = 'Coconut Flakes',
    ['uwu_cocoa_powder'] = 'Cocoa Powder',
    ['uwu_chopped_lamb'] = 'Chopped Lamp',
    ['uwu_chocolate_ganache'] = 'Chocolate Ganache',
    ['uwu_chocolate_drizzle'] = 'Chocolate Drizzle',
    ['uwu_chocolate_chips'] = 'Chocolate Chips',
    ['uwu_chicken'] = 'Chicken',
    ['uwu_catnip_tea'] = 'Catnip Tea',
    ['uwu_carrot'] = 'Carrot',
    ['uwu_caramel_syrup'] = 'Caramel Syrup',
    ['uwu_butter'] = 'Butter',
    ['uwu_butter_cream'] = 'Butter Cream',
    ['uwu_brown_sugar'] = 'Brown Sugar',
    ['uwu_broccoli_florets'] = 'Broccoli Florets',
    ['uwu_brewed_coffee'] = 'Brewed Coffee',
    ['uwu_black_olives'] = 'Black Olives',
    ['uwu_bell_pepper'] = 'Bell Pepper',
    ['uwu_baking_soda'] = 'Baking Soda',
    ['uwu_almond_flour'] = 'Almond Flour',
    ['uwu_almond_flakes'] = 'Almond Flakes',
    ['uwu_5_litr_water'] = '5 Litr Water',
    ['uwu_5_litr_milk'] = '5 Litr Milk',

    -- Toys
    ['uwu_mystery_box'] = 'UwU Mystery Box',
    ['uwu_toy_cinnamon'] = 'UwU Cinnamon',
    ['uwu_toy_fluffington'] = 'UwU Fluffington',
    ['uwu_toy_jazz'] = 'UwU Jazz',
    ['uwu_toy_milo'] = 'UwU Milo',
    ['uwu_toy_rocket'] = 'UwU Rocket',
    ['uwu_toy_ziggy'] = 'UwU Ziggy',
    ['uwu_toy_peppy'] = 'UwU Peppy',
    ['uwu_toy_sprout'] = 'UwU Sprout',
}
PreviousInstallationNextExports

Last updated 8 days ago

Was this helpful?

๐Ÿ˜ป