Advertisement
gravvy

Untitled

Jul 25th, 2021
863
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.79 KB | None | 0 0
  1.  
  2. itemList["potato"] = {
  3.     decayrate: midDecayRate,
  4.     displayname: "Potato",
  5.     price: 10,
  6.     weight: 2,
  7.     nonStack: false,
  8.     model: "",
  9.     image: "potato.png",
  10.  
  11.     information: "Its a potato",
  12.  
  13.     information: "It\'s a potato",
  14.  
  15. };
  16. itemList["uncooked_fries"] = {
  17.     decayrate: midDecayRate,
  18.     displayname: "Sliced Potato Strips",
  19.     price: 0,
  20.     weight: 2,
  21.     nonStack: false,
  22.     model: "",
  23.     image: "uncooked_fries.png",
  24.     information: "Put these in a frier!",
  25. };
  26. itemList["cooked_fries"] = {
  27.     decayrate: midDecayRate,
  28.     displayname: "Cooked Fries",
  29.     price: 2,
  30.     weight: 1,
  31.     nonStack: false,
  32.     model: "",
  33.     image: "fries.png",
  34.     information: "Delicious",
  35. };
  36. itemList["icecream_bucket"] = {
  37.     decayrate: midDecayRate,
  38.     displayname: "Bucket of Ice Cream",
  39.     price: 50,
  40.     weight: 20,
  41.     nonStack: false,
  42.     model: "",
  43.     image: "icecream_bucket.png",
  44.  
  45.     information: "Its cold and heavy",
  46.  
  47.     information: "It\'s cold and heavy",
  48.  
  49. };
  50. itemList["ground_hamburger"] = {
  51.     decayrate: midDecayRate,
  52.     displayname: "Ground Hamburger",
  53.     price: 2,
  54.     weight: 1,
  55.     nonStack: false,
  56.     model: "",
  57.     image: "ground_hamburger.png",
  58.     information: "Wash your hands!",
  59. };
  60. itemList["hamburger_buns"] = {
  61.     decayrate: midDecayRate,
  62.     displayname: "Hamburger Buns",
  63.     price: 2,
  64.     weight: 1,
  65.     nonStack: false,
  66.     model: "",
  67.     image: "hamburger_buns.png",
  68.     information: "Smells great",
  69. };
  70. itemList["milkshake_chocolate"] = {
  71.     decayrate: midDecayRate,
  72.     displayname: "Chocolate Milkshake",
  73.     price: 2,
  74.     weight: 1,
  75.     nonStack: false,
  76.     model: "",
  77.     image: "milkshake_chocolate.png",
  78.     information: "Brain freeze warning",
  79. };
  80. itemList["milkshake_vanilla"] = {
  81.     decayrate: midDecayRate,
  82.     displayname: "Vanilla Milkshake",
  83.     price: 2,
  84.     weight: 1,
  85.     nonStack: false,
  86.     model: "",
  87.     image: "milkshake_vanilla.png",
  88.     information: "Brain freeze warning",
  89. };
  90. itemList["milkshake_mix_vanilla"] = {
  91.     decayrate: midDecayRate,
  92.     displayname: "Vanilla Flavoring",
  93.     price: 5,
  94.     weight: 1,
  95.     nonStack: false,
  96.     model: "",
  97.     image: "milkshake_mix_vanilla.png",
  98.     information: "Its powdered flavoring",
  99. };
  100. itemList["milkshake_mix_chocolate"] = {
  101.     decayrate: midDecayRate,
  102.     displayname: "Chocolate Flavoring",
  103.     price: 5,
  104.     weight: 1,
  105.     nonStack: false,
  106.     model: "",
  107.     image: "milkshake_mix_chocolate.png",
  108.     information: "Its powdered flavoring",
  109. };
  110. itemList["milkshake_mix_strawberry"] = {
  111.     decayrate: midDecayRate,
  112.     displayname: "Strawberry Flavoring",
  113.     price: 5,
  114.     weight: 1,
  115.     nonStack: false,
  116.     model: "",
  117.     image: "milkshake_mix_strawberry.png",
  118.     information: "Its powdered flavoring",
  119. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement