Tooney

Cooking Recipes

Aug 3rd, 2025
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 10.26 KB | None | 0 0
  1. AllCookingRecipeList = {
  2.     Sandwich = {
  3.         Normal = {
  4.             Recipe = {
  5.                 ["Tomato"] = 2,
  6.                 ["Corn"] = 1
  7.             }
  8.         }
  9.     },
  10.     Pie = {
  11.         Prismatic = {
  12.             Recipe = {
  13.                 [1] = {
  14.                     ["Bone Blossom"] = 4,
  15.                     ["Pumpkin"] = 1
  16.                 },
  17.                 [2] = {
  18.                     ["Bone Blossom"] = 3,
  19.                     ["Sugar Apple"] = 1,
  20.                     ["Pumpkin"] = 1
  21.                 }
  22.             }
  23.         },
  24.         Legendary = {
  25.             Recipe = {
  26.                 [1] = {
  27.                     ["Corn"] = 1,
  28.                     ["Coconut"] = 1
  29.                 }
  30.             }
  31.         },
  32.         Mythical = {
  33.             Recipe = {
  34.                 [1] = {
  35.                     ["Corn"] = 1,
  36.                     ["Coconut"] = 3,
  37.                     ["Mango"] = 1
  38.                 }
  39.             }
  40.         },
  41.         Rare = {
  42.             Recipe = {
  43.                 [1] = {
  44.                     ["Pumpkin"] = 1,
  45.                     ["Apple"] = 1
  46.                 }
  47.             }
  48.         }
  49.     },
  50.     Burger = {
  51.         Divine = {
  52.             Recipe = {
  53.                 [1] = {
  54.                     ["Bone Blossom"] = 3,
  55.                     ["Corn"] = 1,
  56.                     ["Tomato"] = 1
  57.                 }
  58.             }
  59.         },
  60.         Mythical = {
  61.             Recipe = {
  62.                 [1] = {
  63.                     ["Pepper"] = 1,
  64.                     ["Corn"] = 1,
  65.                     ["Tomato"] = 1,
  66.                     ["Bone Blossom"] = 1,
  67.                     ["Beanstalk"] = 1
  68.                 }
  69.             }
  70.         },
  71.         Legendary = {
  72.             Recipe = {
  73.                 [1] = {
  74.                     ["Pepper"] = 1,
  75.                     ["Corn"] = 1,
  76.                     ["Tomato"] = 1
  77.                 }
  78.             }
  79.         }
  80.     },
  81.     Hotdog = {
  82.         Prismatic = {
  83.             Recipe = {
  84.                 [1] = {
  85.                     ["Bone Blossom"] = 4,
  86.                     ["Corn"] = 1
  87.                 }
  88.             }
  89.         },
  90.         Divine = {
  91.             Recipe = {
  92.                 [1] = {
  93.                     ["Ember Lily"] = 4,
  94.                     ["Corn"] = 1
  95.                 }
  96.             }
  97.         },
  98.         Mythical = {
  99.             Recipe = {
  100.                 [1] = {
  101.                     ["Corn"] = 1,
  102.                     ["Ember Lily"] = 1
  103.                 },
  104.                 [2] = {
  105.                     ["Pepper"] = 1,
  106.                     ["Corn"] = 1
  107.                 },
  108.                 [3] = {
  109.                     ["Pepper"] = 1,
  110.                     ["Banana"] = 1
  111.                 }
  112.             }
  113.         }
  114.     },
  115.     Waffle = {
  116.         Divine = {
  117.             Recipe = {
  118.                 [1] = {
  119.                     ["Sugar Apple"] = 1,
  120.                     ["Coconut"] = 1
  121.                 }
  122.             }
  123.         },
  124.         Mythical = {
  125.             Recipe = {
  126.                 [1] = {
  127.                     ["Tranquil Bloom"] = 1,
  128.                     ["Starfruit"] = 1,
  129.                     ["Coconut"] = 1
  130.                 },
  131.                 [2] = {
  132.                     ["Pumpkin"] = 1,
  133.                     ["Watermelon"] = 1
  134.                 },
  135.                 [3] = {
  136.                     ["Pumpkin"] = 1,
  137.                     ["Sugar Apple"] = 1
  138.                 },
  139.                 [4] = {
  140.                     ["Sugar Apple"] = 1,
  141.                     ["Watermelon"] = 1
  142.                 }
  143.             }
  144.         }
  145.     },
  146.     Salad = {
  147.         Prismatic = {
  148.             Recipe = {
  149.                 [1] = {
  150.                     ["Bone Blossom"] = 4,
  151.                     ["Tomato"] = 1
  152.                 }
  153.             }
  154.         },
  155.         Divine = {
  156.             Recipe = {
  157.                 [1] = {
  158.                     ["Sugar Apple"] = 3,
  159.                     ["Pepper"] = 1,
  160.                     ["Pineapple"] = 1
  161.                 }
  162.             }
  163.         },
  164.         Mythical = {
  165.             Recipe = {
  166.                 [1] = {
  167.                     ["Giant Pinecone"] = 1,
  168.                     ["Tomato"] = 1
  169.                 },
  170.                 [2] = {
  171.                     ["Tomato"] = 2
  172.                 }
  173.             }
  174.         }
  175.     },
  176.     Sushi = {
  177.         Divine = {
  178.             Recipe = {
  179.                 [1] = {
  180.                     ["Bone Blossom"] = 3,
  181.                     ["Bamboo"] = 1,
  182.                     ["Corn"] = 1
  183.                 }
  184.             }
  185.         },
  186.         Mythical = {
  187.             Recipe = {
  188.                 [1] = {
  189.                     ["Sugar Apple"] = 3,
  190.                     ["Bamboo"] = 1,
  191.                     ["Corn"] = 1
  192.                 }
  193.             }
  194.         },
  195.         Legendary = {
  196.             Recipe = {
  197.                 [1] = {
  198.                     ["Pepper"] = 1,
  199.                     ["Coconut"] = 1,
  200.                     ["Bamboo"] = 1,
  201.                     ["Corn"] = 1
  202.                 }
  203.             }
  204.         },
  205.         Rare = {
  206.             Recipe = {
  207.                 [1] = {
  208.                     ["Bamboo"] = 4,
  209.                     ["Corn"] = 1
  210.                 }
  211.             }
  212.         }
  213.     },
  214.     IceCream = {
  215.         Prismatic = {
  216.             Recipe = {
  217.                 [1] = {
  218.                     ["Banana"] = 1,
  219.                     ["Sugar Apple"] = 1,
  220.                     ["Bone Blossom"] = 3
  221.                 }
  222.             }
  223.         },
  224.         Legendary = {
  225.             Recipe = {
  226.                 [1] = {
  227.                     ["Banana"] = 2
  228.                 },
  229.                 [2] = {
  230.                     ["Pineapple"] = 1,
  231.                     ["Corn"] = 1
  232.                 }
  233.             }
  234.         },
  235.         Mythical = {
  236.             Recipe = {
  237.                 [1] = {
  238.                     ["Banana"] = 1,
  239.                     ["Sugar Apple"] = 1
  240.                 }
  241.             }
  242.         },
  243.         Uncommon = {
  244.             Recipe = {
  245.                 [1] = {
  246.                     ["Blueberry"] = 1,
  247.                     ["Corn"] = 1
  248.                 },
  249.                 [2] = {
  250.                     ["Strawberry"] = 1,
  251.                     ["Corn"] = 1
  252.                 }
  253.             }
  254.         }
  255.     },
  256.     Donut = {
  257.         Normal = {
  258.             Recipe = {
  259.                 [1] = {
  260.                     ["Corn"] = 1,
  261.                     ["Blueberry"] = 1,
  262.                     ["Strawberry"] = 1
  263.                 },
  264.                 [2] = {
  265.                     ["Strawberry"] = 1,
  266.                     ["Tomato"] = 1,
  267.                     ["Apple"] = 1
  268.                 },
  269.                 [3] = {
  270.                     ["Corn"] = 1,
  271.                     ["Watermelon"] = 1
  272.                 }
  273.             }
  274.         }
  275.     },
  276.     Pizza = {
  277.         Divine = {
  278.             Recipe = {
  279.                 [1] = {
  280.                     ["Sugar Apple"] = 1,
  281.                     ["Bone Blossom"] = 1,
  282.                     ["Corn"] = 1
  283.                 }
  284.             }
  285.         },
  286.         Mythical = {
  287.             Recipe = {
  288.                 [1] = {
  289.                     ["Tomato"] = 1,
  290.                     ["Corn"] = 1,
  291.                     ["Pepper"] = 1,
  292.                     ["Sugar Apple"] = 2
  293.                 },
  294.                 [2] = {
  295.                     ["Giant Pinecone"] = 1,
  296.                     ["Corn"] = 1,
  297.                     ["Apple"] = 1,
  298.                     ["Mushroom"] = 1,
  299.                     ["Pepper"] = 1
  300.                 }
  301.             }
  302.         },
  303.         Legendary = {
  304.             Recipe = {
  305.                 [1] = {
  306.                     ["Corn"] = 2,
  307.                     ["Apple"] = 2,
  308.                     ["Pepper"] = 1
  309.                 },
  310.                 [2] = {
  311.                     ["Cactus"] = 1,
  312.                     ["Corn"] = 1,
  313.                     ["Coconut"] = 1
  314.                 }
  315.             }
  316.         },
  317.         Rare = {
  318.             Recipe = {
  319.                 [1] = {
  320.                     ["Banana"] = 1,
  321.                     ["Tomato"] = 1
  322.                 }
  323.             }
  324.         }
  325.     },
  326.    
  327.     Cake = {
  328.         Prismatic = {
  329.             Recipe = {
  330.                 [1] = {
  331.                     ["Bone Blossom"] = 3,
  332.                     ["Sugar Apple"] = 1,
  333.                     ["Banana"] = 1
  334.                 }
  335.             }
  336.         },
  337.         Divine = {
  338.             Recipe = {
  339.                 [1] = {
  340.                     ["Banana"] = 1,
  341.                     ["Kiwi"] = 1,
  342.                     ["Bone Blossom"] = 3
  343.                 },
  344.                 [2] = {
  345.                     ["Sugar Apple"] = 4,
  346.                     ["Corn"] = 1
  347.                 },
  348.                 [3] = {
  349.                     ["Elder Strawberry"] = 4,
  350.                     ["Corn"] = 1
  351.                 }
  352.             }
  353.         },
  354.         Mythical = {
  355.             Recipe = {
  356.                 [1] = {
  357.                     ["Sugar Apple"] = 2,
  358.                     ["Corn"] = 2
  359.                 }
  360.             }
  361.         },
  362.         Legendary = {
  363.             Recipe = {
  364.                 [1] = {
  365.                     ["Kiwi"] = 2,
  366.                     ["Banana"] = 2
  367.                 }
  368.             }
  369.         },
  370.         Rare = {
  371.             Recipe = {
  372.                 [1] = {
  373.                     ["Blueberry"] = 1,
  374.                     ["Grape"] = 1,
  375.                     ["Apple"] = 1,
  376.                     ["Corn"] = 1
  377.                 },
  378.                 [2] = {
  379.                     ["Banana"] = 2,
  380.                     ["Strawberry"] = 2,
  381.                     ["Pumpkin"] = 1
  382.                 },
  383.                 [3] = {
  384.                     ["Ember Lily"] = 1,
  385.                     ["Peach"] = 2
  386.                 }
  387.             }
  388.         },
  389.         Uncommon = {
  390.             Recipe = {
  391.                 [1] = {
  392.                     ["Corn"] = 2,
  393.                     ["Strawberry"] = 2
  394.                 },
  395.                 [2] = {
  396.                     ["Blueberry"] = 2,
  397.                     ["Corn"] = 1,
  398.                     ["Tomato"] = 1
  399.                 },
  400.                 [3] = {
  401.                     ["Corn"] = 2,
  402.                     ["Watermelon"] = 2
  403.                 },
  404.                 [4] = {
  405.                     ["Pumpkin"] = 1,
  406.                     ["Giant Pinecone"] = 1,
  407.                     ["Corn"] = 1,
  408.                     ["Apple"] = 1
  409.                 }
  410.             }
  411.         }
  412.     }
  413. }
Advertisement
Add Comment
Please, Sign In to add comment