Guest User

ProceduralDistributions

a guest
Mar 27th, 2022
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 16.01 KB | None | 0 0
  1. local function preDistributionMerge()
  2.  
  3.     ProceduralDistributions.list.GigamartBottles = {
  4.         rolls = 4,
  5.         items = {
  6.             "BDK.Itubaina",     10,
  7.             "WaterBottleFull",  8,
  8.             "WaterBottleFull",  8,
  9.             "WaterBottleFull",  8,
  10.             "WaterBottleFull",  8,
  11.             "WaterBottleFull",  8,
  12.             "WaterBottleFull",  8,
  13.             "PopBottle", 10,
  14.             "PopBottle", 10,
  15.             "PopBottle", 10,
  16.             "PopBottle", 10,
  17.             "PopBottle", 10,
  18.             "PopBottle", 10,
  19.         },
  20.     }
  21.  
  22.     ProceduralDistributions.list.BurgerKitchenFridge = {
  23.         rolls = 4,
  24.         items = {
  25.             "BDK.Itubaina", 10,
  26.             "MeatPatty", 8,
  27.             "MeatPatty", 8,
  28.             "MeatPatty", 8,
  29.             "MeatPatty", 8,
  30.             "Processedcheese", 10,
  31.             "Processedcheese", 10,
  32.             "farming.Bacon", 4,
  33.             "farming.Bacon", 4,
  34.             "farming.Tomato", 6,
  35.             "farming.Tomato", 6,
  36.             "Lettuce", 6,
  37.             "Lettuce", 6,
  38.             "Onion", 6,
  39.             "Onion", 6,
  40.             "Pickles", 6,
  41.             "Pickles", 6,
  42.         },
  43.     }
  44.    
  45.     ProceduralDistributions.list.FridgeGeneric = {
  46.         rolls = 4,
  47.         items = {
  48.             "Apple", 2,
  49.             "Avocado", 1,
  50.             "Baloney", 0.8,
  51.             "Banana", 2,
  52.             "BeerBottle", 1,
  53.             "BeerCan", 1,
  54.             "BellPepper", 1,
  55.             "Broccoli", 2,
  56.             "Butter", 2,
  57.             "Carrots", 2,
  58.             "Cheese", 2,
  59.             "Cherry", 2,
  60.             "Chicken", 0.8,
  61.             "Corn", 2,
  62.             "EggCarton", 0.8,
  63.             "Eggplant", 2,
  64.             "farming.Bacon", 0.8,
  65.             "farming.Cabbage", 2,
  66.             "farming.MayonnaiseFull", 0.25,
  67.             "farming.RedRadish", 2,
  68.             "farming.RemouladeFull", 0.25,
  69.             "farming.Strewberrie", 2,
  70.             "farming.Tomato", 2,
  71.             "Grapefruit", 2,
  72.             "Grapes", 2,
  73.             "Ham", 0.8,
  74.             "Hotsauce", 0.25,
  75.             "JuiceBox", 1,
  76.             "Ketchup", 0.25,
  77.             "Leek", 2,
  78.             "Lemon", 2,
  79.             "Lettuce", 2,
  80.             "Lime", 2,
  81.             "MapleSyrup", 0.25,
  82.             "MeatPatty", 0.8,
  83.             "Milk", 4,
  84.             "MincedMeat", 0.8,
  85.             "Mustard", 0.25,
  86.             "MuttonChop", 0.5,
  87.             "Onion", 2,
  88.             "Orange", 2,
  89.             "Paperbag_Jays", 0.1,
  90.             "Paperbag_Spiffos", 0.1,
  91.             "Peach", 2,
  92.             "Pear", 2,
  93.             "PepperJalapeno", 1,
  94.             "Pickles", 6,
  95.             "Pineapple", 1,
  96.             "PopBottle", 2,
  97.             "PorkChop", 0.8,
  98.             "Processedcheese", 6,
  99.             "Salami", 0.8,
  100.             "Salmon", 0.5,
  101.             "Sausage", 0.8,
  102.             "Soysauce", 0.25,
  103.             "Steak", 0.5,
  104.             "WaterBottleFull", 1,
  105.             "Watermelon", 0.25,
  106.             "Yoghurt", 1,
  107.             "Zucchini", 2,
  108.         },
  109.     }
  110.    
  111.     ProceduralDistributions.list.FridgeSoda = {
  112.         rolls = 4,
  113.         items = {
  114.             "BDK.Itubaina", 10,
  115.             "Pop", 4,
  116.             "Pop", 4,
  117.             "Pop2", 4,
  118.             "Pop2", 4,
  119.             "Pop3", 4,
  120.             "Pop3", 4,
  121.             "PopBottle", 4,
  122.             "PopBottle", 4,
  123.             "PopBottle", 4,
  124.             "PopBottle", 4,        
  125.         },
  126.     }
  127.  
  128.     ProceduralDistributions.list.FridgeOther = {
  129.         rolls = 4,
  130.         items = {
  131.             "BDK.Itubaina", 10,
  132.             "Milk", 4,
  133.             "Milk", 4,
  134.             "EggCarton", 2,
  135.             "EggCarton", 2,
  136.             "Butter", 4,
  137.             "Processedcheese", 4,
  138.             "Processedcheese", 4,
  139.             "Yoghurt", 4,
  140.             "Yoghurt", 4,
  141.             "JuiceBox", 4,
  142.             "JuiceBox", 4,
  143.             "Mustard", 4,
  144.             "Ketchup", 4,
  145.             "farming.MayonnaiseFull", 4,
  146.             "farming.RemouladeFull", 1,        
  147.         },
  148.     }
  149.  
  150.     ProceduralDistributions.list.SpiffosKitchenFridge = {
  151.         rolls = 4,
  152.         items = {
  153.             "BDK.Itubaina", 10,
  154.             "MeatPatty", 10,
  155.             "MeatPatty", 10,
  156.             "MeatPatty", 10,
  157.             "MeatPatty", 10,
  158.             "Processedcheese", 8,
  159.             "Processedcheese", 8,
  160.             "farming.Bacon", 8,
  161.             "farming.Bacon", 8,
  162.             "farming.Tomato", 8,
  163.             "farming.Tomato", 8,
  164.             "Lettuce", 8,
  165.             "Lettuce", 8,
  166.             "Onion", 8,
  167.             "Onion", 8,
  168.             "Pickles", 6,
  169.             "Pickles", 6,
  170.         },
  171.     }
  172.  
  173.     ProceduralDistributions.list.TheatreDrinks = {
  174.         rolls = 4,
  175.         items = {
  176.             "BDK.Itubaina", 10,
  177.             "Pop", 8,
  178.             "Pop", 8,
  179.             "Pop2", 8,
  180.             "Pop2", 8,
  181.             "Pop3", 8,
  182.             "Pop3", 8,
  183.             "PopBottle", 4,
  184.             "PopBottle", 4,
  185.             "PopBottle", 4,
  186.             "PopBottle", 4,
  187.         },
  188.     }
  189.  
  190.     ProceduralDistributions.list.StoreShelfDrinks = {
  191.         rolls = 4,
  192.         items = {
  193.             "BDK.Itubaina", 10,
  194.             "Pop", 4,
  195.             "Pop", 4,
  196.             "Pop2", 4,
  197.             "Pop2", 4,
  198.             "Pop3", 4,
  199.             "Pop3", 4,
  200.             "PopBottle", 4,
  201.             "PopBottle", 4,
  202.             "PopBottle", 4,
  203.             "PopBottle", 4,
  204.             "WaterBottleFull", 4,
  205.             "WaterBottleFull", 4,
  206.         },
  207.     }
  208.  
  209.     ProceduralDistributions.list.CafeteriaDrinks = {
  210.         rolls = 4,
  211.         items = {
  212.             "JuiceBox", 20,
  213.             "JuiceBox", 10,
  214.             "Pop", 8,
  215.             "Pop2", 8,
  216.             "Pop3", 8,
  217.             "PopBottle", 8,
  218.             "WaterBottleFull", 8,
  219.             "WaterBottleFull", 8,
  220.         },
  221.     }
  222.  
  223.     ProceduralDistributions.list.ClassroomDesk = {
  224.         rolls = 4,
  225.         items = {
  226.             "BluePen", 8,
  227.             "Book", 10,
  228.             "Chocolate", 1,
  229.             "ComicBook", 2,
  230.             "Crisps", 1,
  231.             "Lollipop", 1,
  232.             "Magazine", 2,
  233.             "MagazineCrossword1", 5,
  234.             "MagazineCrossword2", 5,
  235.             "MagazineCrossword3", 5,
  236.             "MagazineWordsearch1", 5,
  237.             "MagazineWordsearch2", 5,
  238.             "MagazineWordsearch3", 5,
  239.             "Notebook", 10,
  240.             "Pen", 8,
  241.             "Pencil", 10,
  242.             "Pop", 1,
  243.             "RedPen", 8,
  244.             "SheetPaper2", 20,
  245.         },
  246.     }
  247.  
  248.     ProceduralDistributions.list.FridgeBreakRoom = {
  249.         rolls = 4,
  250.         items = {
  251.             "Apple", 8,
  252.             "Banana", 8,
  253.             "Burger", 4,
  254.             "CakeSlice", 4,
  255.             "farming.MayonnaiseFull", 1,
  256.             "farming.RemouladeFull", 1,
  257.             "Grapefruit", 8,
  258.             "Hotdog", 4,
  259.             "Ketchup", 1,
  260.             "Lunchbox", 10,
  261.             "Lunchbox2", 10,
  262.             "Mustard", 1,
  263.             "Orange", 8,
  264.             "Paperbag_Jays", 0.5,
  265.             "Paperbag_Spiffos", 0.5,
  266.             "Peach", 8,
  267.             "Pear", 8,
  268.             "Pie", 4,
  269.             "Pop", 4,
  270.             "Pop2", 4,
  271.             "Pop3", 4,
  272.             "PopBottle", 4,
  273.             "Processedcheese", 8,
  274.             "WaterBottleFull", 4,
  275.             "Yoghurt", 4,
  276.             "Yoghurt", 4,
  277.         },
  278.     }
  279.  
  280.     ProceduralDistributions.list.FridgeOffice = {
  281.             rolls = 4,
  282.             items = {
  283.                 "Apple", 8,
  284.                 "Banana", 8,
  285.                 "Burger", 4,
  286.                 "CakeSlice", 4,
  287.                 "Hotdog", 4,
  288.                 "Lunchbox", 10,
  289.                 "Lunchbox2", 10,
  290.                 "Orange", 8,
  291.                 "Peach", 8,
  292.                 "Pie", 4,
  293.                 "Pop", 4,
  294.                 "Pop2", 4,
  295.                 "Pop3", 4,
  296.                 "Pizza", 4,
  297.                 "PopBottle", 4,
  298.                 "WaterBottleFull", 4,
  299.                 "Yoghurt", 4,
  300.             },
  301.         }
  302.  
  303.     ProceduralDistributions.list.FridgeSoda = {
  304.             rolls = 4,
  305.             items = {
  306.                 "Pop", 20,
  307.                 "Pop", 10,
  308.                 "Pop2", 20,
  309.                 "Pop2", 10,
  310.                 "Pop3", 20,
  311.                 "Pop3", 10,
  312.                 "PopBottle", 20,
  313.                 "PopBottle", 10,
  314.             },
  315.         }
  316.  
  317.     ProceduralDistributions.list.CrateSodaCans = {
  318.         rolls = 4,
  319.         items = {
  320.             "Pop", 20,
  321.             "Pop", 10,
  322.             "Pop2", 20,
  323.             "Pop2", 10,
  324.             "Pop3", 20,
  325.             "Pop3", 10,
  326.         },
  327.     }
  328.  
  329.     ProceduralDistributions.list.BarCounterLiquor = {
  330.         rolls = 4,
  331.         items = {
  332.             "BDK.Skol", 10,
  333.             "BDK.Itaipava", 10,
  334.             "WhiskeyFull", 2,
  335.             "WhiskeyFull", 2,
  336.             "Wine", 4,
  337.             "Wine", 4,
  338.             "Wine2", 4,
  339.             "Wine2", 4,
  340.             "BeerCan", 10,
  341.             "BeerCan", 10,
  342.             "BeerCan", 10,
  343.             "BeerCan", 10,
  344.             "BeerBottle", 10,
  345.             "BeerBottle", 10,
  346.             "BeerBottle", 10,
  347.             "BeerBottle", 10,
  348.         },
  349.     }
  350.  
  351.     ProceduralDistributions.list.BarCounterMisc = {
  352.         rolls = 4,
  353.         items = {
  354.             "BDK.Skol", 10,
  355.             "BDK.Itaipava",  10,
  356.             "CardDeck", 6,
  357.             "Cigarettes", 20,
  358.             "Cigarettes", 10,
  359.             "Crisps", 10,
  360.             "Dice", 6,
  361.             "Lighter", 10,
  362.             "Matches", 10,
  363.             "Peanuts", 10,
  364.             "Pretzel", 10,
  365.             "Pickles", 6,
  366.             "Pop", 10,
  367.             "Pop2", 10,
  368.             "Pop3", 10,
  369.             "PopBottle", 6,
  370.             "TortillaChips", 10,
  371.         },
  372.     }
  373.  
  374.     ProceduralDistributions.list.BarCounterWeapon = {
  375.         rolls = 4,
  376.         items = {
  377.             "BDK.Skol", 10,
  378.             "BDK.Itaipava",   10,
  379.             "BDK.Itaipava",   10,
  380.             "BDK.Itaipava",   10,
  381.             "WhiskeyFull", 2,
  382.             "WhiskeyFull", 2,
  383.             "Wine", 4,
  384.             "Wine", 4,
  385.             "Wine2", 4,
  386.             "Wine2", 4,
  387.             "BeerCan", 10,
  388.             "BeerCan", 10,
  389.             "BeerCan", 10,
  390.             "BeerCan", 10,
  391.             "BeerBottle", 10,
  392.             "BeerBottle", 10,
  393.             "BeerBottle", 10,
  394.             "BeerBottle", 10,
  395.             "BeerBottle", 10,
  396.             "BeerBottle", 10,
  397.         },
  398.     }
  399.  
  400.     ProceduralDistributions.list.BarShelfLiquor = {
  401.         rolls = 4,
  402.         items = {
  403.             "BDK.Skol", 10,
  404.             "BDK.Skol", 10,
  405.             "BDK.Itaipava",  10,
  406.             "BDK.Itaipava", 10,
  407.             "BDK.Itaipava", 10,
  408.             "BeerCan", 10,
  409.             "BeerCan", 10,
  410.             "BeerCan", 10,
  411.             "BeerCan", 10,
  412.             "BeerBottle", 10,
  413.             "BeerBottle", 10,
  414.             "BeerBottle", 10,
  415.             "BeerBottle", 10,
  416.             "Wine", 4,
  417.             "Wine", 4,
  418.             "Wine2", 4,
  419.             "Wine2", 4,
  420.             "WhiskeyFull", 2,
  421.             "WhiskeyFull", 2,
  422.         },
  423.     }
  424.  
  425.     ProceduralDistributions.list.BandPracticeFridge = {
  426.         rolls = 4,
  427.         items = {
  428.             "BeerBottle", 20,
  429.             "BeerBottle", 10,
  430.             "BeerCan", 20,
  431.             "BeerCan", 10,
  432.             "Burger", 8,
  433.             "Burrito", 8,
  434.             "CheeseSandwich", 4,
  435.             "ChickenFried", 4,
  436.             "Corndog", 4,
  437.             "farming.MayonnaiseFull", 1,
  438.             "FriedOnionRings", 8,
  439.             "Fries", 8,
  440.             "Gravy", 4,
  441.             "Hotdog", 4,
  442.             "Hotsauce", 1,
  443.             "Ketchup", 1,
  444.             "MuffinFruit", 4,
  445.             "MuffinGeneric", 4,
  446.             "Mustard", 1,
  447.             "PeanutButterSandwich", 4,
  448.             "Pop", 4,
  449.             "Pop2", 4,
  450.             "Pop3", 4,
  451.             "PopBottle", 4,
  452.             "Taco", 4,
  453.         },
  454.     }
  455.  
  456.     ProceduralDistributions.list.BreweryCans = {
  457.         rolls = 4,
  458.         items = {
  459.             "BeerCan", 10,
  460.             "BeerCan", 10,
  461.             "BeerCan", 10,
  462.             "BeerCan", 10,
  463.             "BeerCan", 10,
  464.             "BeerCan", 10,
  465.         },
  466.     }
  467.  
  468.     ProceduralDistributions.list.FridgeTrailerPark = {
  469.         rolls = 4,
  470.         items = {
  471.             "Apple", 2,
  472.             "Baloney", 1,
  473.             "Banana", 2,
  474.             "BeerBottle", 4,
  475.             "BeerCan", 4,
  476.             "Butter", 4,
  477.             "Carrots", 2,
  478.             "Chicken", 0.5,
  479.             "Corn", 2,
  480.             "EggCarton", 0.8,
  481.             "farming.Bacon", 1,
  482.             "farming.MayonnaiseFull", 0.25,
  483.             "farming.Strewberrie", 2,
  484.             "farming.Tomato", 2,
  485.             "Grapefruit", 2,
  486.             "Grapes", 2,
  487.             "Ham", 1,
  488.             "Hotsauce", 0.25,
  489.             "JuiceBox", 1,
  490.             "Ketchup", 0.25,
  491.             "Lemon", 2,
  492.             "Lime", 2,
  493.             "MapleSyrup", 0.25,
  494.             "MeatPatty", 0.8,
  495.             "Milk", 4,
  496.             "MincedMeat", 0.8,
  497.             "Mustard", 0.25,
  498.             "Onion", 2,
  499.             "Orange", 2,
  500.             "Paperbag_Jays", 0.2,
  501.             "Paperbag_Spiffos", 0.2,
  502.             "Pickles", 6,
  503.             "Pop", 2,
  504.             "Pop2", 2,
  505.             "Pop3", 2,
  506.             "PopBottle", 2,
  507.             "PorkChop", 1,
  508.             "Processedcheese", 6,
  509.             "Salami", 1,
  510.             "Sausage", 1,
  511.             "Soysauce", 0.1,
  512.             "Steak", 0.1,
  513.             "WaterBottleFull", 1,
  514.             "Yoghurt", 0.5,
  515.         },
  516.     }
  517.  
  518.     ProceduralDistributions.list.KitchenBottles = {
  519.         rolls = 4,
  520.         items = {
  521.             "BeerBottle", 1,
  522.             "BeerCan", 2,
  523.             "JuiceBox", 6,
  524.             "PlasticCup", 10,
  525.             "Pop", 10,
  526.             "Pop2", 10,
  527.             "Pop3", 10,
  528.             "PopBottle", 8,
  529.             "PopBottle", 8,
  530.             "WaterBottleFull", 8,
  531.             "WaterBottleFull", 8,
  532.             "WhiskeyFull", 0.5,
  533.             "Wine", 1,
  534.             "Wine2", 1,
  535.         },
  536.     }
  537.  
  538.     ProceduralDistributions.list.FridgeBeer = {
  539.         rolls = 4,
  540.         items = {
  541.             "BeerCan", 20,
  542.             "BeerCan", 20,
  543.             "BeerCan", 10,
  544.             "BeerCan", 10,
  545.             "BeerBottle", 20,
  546.             "BeerBottle", 20,
  547.             "BeerBottle", 10,
  548.             "BeerBottle", 10,
  549.         },
  550.     }
  551.  
  552.     ProceduralDistributions.list.StoreShelfBeer = {
  553.         rolls = 4,
  554.         items = {
  555.             "BeerBottle", 8,
  556.             "BeerBottle", 8,
  557.             "BeerBottle", 8,
  558.             "BeerBottle", 8,
  559.             "BeerBottle", 8,
  560.             "BeerBottle", 8,
  561.             "BeerCan", 10,
  562.             "BeerCan", 10,
  563.             "BeerCan", 10,
  564.             "BeerCan", 10,
  565.             "BeerCan", 10,
  566.             "BeerCan", 10,
  567.         },
  568.     }
  569.    
  570.     ProceduralDistributions.list.MotelFridge = {
  571.         rolls = 1,
  572.         items = {
  573.             "Pop", 6,
  574.             "Pop2", 6,
  575.             "Pop3", 6,
  576.             "PopBottle", 6,
  577.             "PopBottle", 6,
  578.             "WhiskeyFull", 1,
  579.             "Pizza", 6,
  580.             "Fries", 6,
  581.             "Burger", 6,
  582.             "Hotdog", 6,
  583.         },
  584.     }
  585.  
  586.     ProceduralDistributions.list.StoreShelfCombo = {
  587.         rolls = 4,
  588.         items = {
  589.             "BeefJerky", 8,
  590.             "CandyPackage", 4,
  591.             "Peppermint", 77,
  592.             "Chocolate", 8,
  593.             "Crackers", 6,
  594.             "Crisps", 10,
  595.             "Crisps2", 10,
  596.             "Crisps3", 10,
  597.             "Crisps4", 10,
  598.             "GranolaBar", 8,
  599.             "Gum", 10,
  600.             "Peanuts", 6,
  601.             "Pretzel", 6,
  602.             "Pop", 10,
  603.             "Pop2", 10,
  604.             "Pop3", 10,
  605.             "PopBottle", 20,
  606.             "PopBottle", 10,
  607.             "Popcorn", 6,
  608.             "SunflowerSeeds", 6,
  609.             "TortillaChips", 10,
  610.             "WaterBottleFull", 10,
  611.         },
  612.     }
  613.  
  614.  
  615. end
  616. Events.OnPreDistributionMerge.Add(preDistributionMerge);
  617.    
  618.  
  619.    
Add Comment
Please, Sign In to add comment