Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.04 KB | None | 0 0
  1. local ITEM = Clockwork.item:New();
  2. ITEM.name = "Bag of Peanuts";
  3. ITEM.cost = 20;
  4. ITEM.model = "models/bioshockinfinite/bag_of_peanuts.mdl";
  5. ITEM.weight = 0.10;
  6. ITEM.access = "v";
  7. ITEM.useText = "Eat";
  8. ITEM.category = "Consumables";
  9. ITEM.business = false;
  10. ITEM.description = "A miniscule bag of salted peanuts, enclosed in a fiber satchel, secured at the top by a length of rope. They seem fresh… but who knows nowadays.";
  11.  
  12. function ITEM:OnDrop(player, position) end;
  13.  
  14. ITEM:Register();
  15.  
  16.  
  17.  
  18.  
  19. local ITEM = Clockwork.item:New();
  20. ITEM.name = "Can of Coffee";
  21. ITEM.cost = 20;
  22. ITEM.model = "models/bioshockinfinite/coffee_mug_closed.mdl";
  23. ITEM.weight = 0.10;
  24. ITEM.access = "v";
  25. ITEM.useText = "Eat";
  26. ITEM.category = "Consumables";
  27. ITEM.business = false;
  28. ITEM.description = "A scratched, oak-green can of coffee, sealed at the top with a brown label on the side. It’s not Starbucks, but it’ll do just fine.";
  29.  
  30. function ITEM:OnDrop(player, position) end;
  31.  
  32. ITEM:Register();
  33.  
  34.  
  35.  
  36. local ITEM = Clockwork.item:New();
  37. ITEM.name = "Apple";
  38. ITEM.cost = 20;
  39. ITEM.model = "models/bioshockinfinite/loot_apple.mdl";
  40. ITEM.weight = 0.10;
  41. ITEM.access = "v";
  42. ITEM.useText = "Eat";
  43. ITEM.category = "Consumables";
  44. ITEM.business = false;
  45. ITEM.description = "A light-red, juicy apple, with a small stem at the top and a small film of dust. It has a small shine to it, but is nothing like they are at the groceries.";
  46.  
  47. function ITEM:OnDrop(player, position) end;
  48.  
  49. ITEM:Register();
  50.  
  51.  
  52.  
  53. local ITEM = Clockwork.item:New();
  54. ITEM.name = "Banana";
  55. ITEM.cost = 20;
  56. ITEM.model = "models/bioshockinfinite/loot_banana.mdl";
  57. ITEM.weight = 0.10;
  58. ITEM.access = "v";
  59. ITEM.useText = "Eat";
  60. ITEM.category = "Consumables";
  61. ITEM.business = false;
  62. ITEM.description = "A stale-looking yellow banana, with a slight brown tinge to it. The insides are a bit mushy, but it’s still fruit.";
  63.  
  64. function ITEM:OnDrop(player, position) end;
  65.  
  66. ITEM:Register();
  67.  
  68.  
  69.  
  70.  
  71.  
  72. local ITEM = Clockwork.item:New();
  73. ITEM.name = "Bottle of Beer";
  74. ITEM.cost = 40;
  75. ITEM.model = "models/bioshockinfinite/loot_bottle_lager.mdl";
  76. ITEM.weight = 0.10;
  77. ITEM.access = "v";
  78. ITEM.useText = "Eat";
  79. ITEM.category = "Consumables";
  80. ITEM.business = false;
  81. ITEM.description = "A brown-colored bottle of beer, enclosed in a yellow label. It smells strongly of alcohol, and serves many purposes.";
  82.  
  83. function ITEM:OnDrop(player, position) end;
  84.  
  85. ITEM:Register();
  86.  
  87.  
  88.  
  89.  
  90. local ITEM = Clockwork.item:New();
  91. ITEM.name = "Bar of Chocolate";
  92. ITEM.cost = 20;
  93. ITEM.model = "models/bioshockinfinite/loot_candy_chocolate.mdl";
  94. ITEM.weight = 0.10;
  95. ITEM.access = "v";
  96. ITEM.useText = "Eat";
  97. ITEM.category = "Consumables";
  98. ITEM.business = false;
  99. ITEM.description = "A stale, slightly brittle looking bar of chocolate, wrapped in a light red wrapper. It has a chalky texture to it...";
  100.  
  101. function ITEM:OnDrop(player, position) end;
  102.  
  103. ITEM:Register();
  104.  
  105.  
  106.  
  107.  
  108.  
  109. local ITEM = Clockwork.item:New();
  110. ITEM.name = "Box of Cornflakes";
  111. ITEM.cost = 20;
  112. ITEM.model = "models/bioshockinfinite/loot_cereal_box_cornflakes.mdl";
  113. ITEM.weight = 0.10;
  114. ITEM.access = "v";
  115. ITEM.useText = "Eat";
  116. ITEM.category = "Consumables";
  117. ITEM.business = false;
  118. ITEM.description = "A dented, beaten-up cardboard box, with a cereal bowl graphic on the front. The corn flakes have a sand-paper texture, but with milk they are decent.";
  119.  
  120. function ITEM:OnDrop(player, position) end;
  121.  
  122. ITEM:Register();
  123.  
  124.  
  125. local ITEM = Clockwork.item:New();
  126. ITEM.name = "Orange";
  127. ITEM.cost = 20;
  128. ITEM.model = "models/bioshockinfinite/loot_orange.mdl";
  129. ITEM.weight = 0.10;
  130. ITEM.access = "v";
  131. ITEM.useText = "Eat";
  132. ITEM.category = "Consumables";
  133. ITEM.business = false;
  134. ITEM.description = "A citrus-filled orange that is… orange! Nothing more to it, it’s far from fresh but is still edible nonetheless.";
  135.  
  136. function ITEM:OnDrop(player, position) end;
  137.  
  138. ITEM:Register();
  139.  
  140.  
  141.  
  142.  
  143. local ITEM = Clockwork.item:New();
  144. ITEM.name = "Pear";
  145. ITEM.cost = 20;
  146. ITEM.model = "models/bioshockinfinite/loot_pear.mdl";
  147. ITEM.weight = 0.10;
  148. ITEM.access = "v";
  149. ITEM.useText = "Eat";
  150. ITEM.category = "Consumables";
  151. ITEM.business = false;
  152. ITEM.description = "An odd-shaped piece of fruit, with a green tinge and sweet smell. It’s a bit worn and beat up, but doesn’t take too shabby.";
  153.  
  154. function ITEM:OnDrop(player, position) end;
  155.  
  156. ITEM:Register();
  157.  
  158.  
  159. local ITEM = Clockwork.item:New();
  160. ITEM.name = "Pineapple";
  161. ITEM.cost = 20;
  162. ITEM.model = "models/bioshockinfinite/loot_pineapple.mdl";
  163. ITEM.weight = 0.10;
  164. ITEM.access = "v";
  165. ITEM.useText = "Eat";
  166. ITEM.category = "Consumables";
  167. ITEM.business = false;
  168. ITEM.description = "A dirt-encrusted piece of fruit, with small black prickles on the exterior. A green husk rests atop the fruit, and it looks far from fresh, but still edible.";
  169.  
  170. function ITEM:OnDrop(player, position) end;
  171.  
  172. ITEM:Register();
  173.  
  174.  
  175.  
  176.  
  177. local ITEM = Clockwork.item:New();
  178. ITEM.name = "Potato";
  179. ITEM.cost = 20;
  180. ITEM.model = "models/bioshockinfinite/loot_potato.mdl";
  181. ITEM.weight = 0.10;
  182. ITEM.access = "v";
  183. ITEM.useText = "Eat";
  184. ITEM.category = "Consumables";
  185. ITEM.business = false;
  186. ITEM.description = "A brown, black-speckled vegetable with a ovular shape and mushy inside.";
  187.  
  188. function ITEM:OnDrop(player, position) end;
  189.  
  190. ITEM:Register();
  191.  
  192.  
  193. local ITEM = Clockwork.item:New();
  194. ITEM.name = "Jar of Pickles";
  195. ITEM.cost = 20;
  196. ITEM.model = "models/bioshockinfinite/pickle_jar.mdl";
  197. ITEM.weight = 0.10;
  198. ITEM.access = "v";
  199. ITEM.useText = "Eat";
  200. ITEM.category = "Consumables";
  201. ITEM.business = false;
  202. ITEM.description = "A brittle glass jar of dark-green pickles, floating in seed-filled liquid. They look fresh and well-preserved, a rarity in the Zone.";
  203.  
  204. function ITEM:OnDrop(player, position) end;
  205.  
  206. ITEM:Register();
  207.  
  208.  
  209.  
  210.  
  211. local ITEM = Clockwork.item:New();
  212. ITEM.name = "Bottle of Soda";
  213. ITEM.cost = 20;
  214. ITEM.model = "models/bioshockinfinite/pu_soda.mdl";
  215. ITEM.weight = 0.10;
  216. ITEM.access = "v";
  217. ITEM.useText = "Eat";
  218. ITEM.category = "Consumables";
  219. ITEM.business = false;
  220. ITEM.description = "A light-plastic bottle of bubbly soda, with a vibrant logo on the side. It’s clear that the bottle has been well preserved.";
  221.  
  222. function ITEM:OnDrop(player, position) end;
  223.  
  224. ITEM:Register();
  225.  
  226.  
  227. local ITEM = Clockwork.item:New();
  228. ITEM.name = "Cheese Wheel";
  229. ITEM.cost = 20;
  230. ITEM.model = "models/bioshockinfinite/round_cheese.mdl";
  231. ITEM.weight = 0.10;
  232. ITEM.access = "v";
  233. ITEM.useText = "Eat";
  234. ITEM.category = "Consumables";
  235. ITEM.business = false;
  236. ITEM.description = "A large, circular wheel of cheese, with a dark, molten-yellow coloration. A few small flakes of mold rest on the bottom frays of the wheel, but it’s in generally good condition.";
  237.  
  238. function ITEM:OnDrop(player, position) end;
  239.  
  240. ITEM:Register();
  241.  
  242.  
  243.  
  244. local ITEM = Clockwork.item:New();
  245. ITEM.name = "Tin of Sardines";
  246. ITEM.cost = 20;
  247. ITEM.model = "models/bioshockinfinite/sardine_can_open.mdl";
  248. ITEM.weight = 0.10;
  249. ITEM.access = "v";
  250. ITEM.useText = "Eat";
  251. ITEM.category = "Consumables";
  252. ITEM.business = false;
  253. ITEM.description = "A metallic-silver can of fishy-smelling food, probably sardines. It’s sealed and fresh, but the shell of the can is dented and scratched.";
  254.  
  255. function ITEM:OnDrop(player, position) end;
  256.  
  257. ITEM:Register();
  258.  
  259.  
  260. local ITEM = Clockwork.item:New();
  261. ITEM.name = "Bottle of Vodka";
  262. ITEM.cost = 20;
  263. ITEM.model = "models/bioshockinfinite/vermouth_bottle.mdl";
  264. ITEM.weight = 0.10;
  265. ITEM.access = "v";
  266. ITEM.useText = "Eat";
  267. ITEM.category = "Consumables";
  268. ITEM.business = false;
  269. ITEM.description = "A dark-red bottle of vodka, with a pouring dripper at the top and a strong odor to it.";
  270.  
  271. function ITEM:OnDrop(player, position) end;
  272.  
  273. ITEM:Register();
  274.  
  275.  
  276.  
  277.  
  278.  
  279.  
  280.  
  281.  
  282.  
  283. local ITEM = Clockwork.item:New();
  284. ITEM.name = "Bottle of Whiskey";
  285. ITEM.cost = 20;
  286. ITEM.model = "models/bioshockinfinite/whiskey_bottle.mdl";
  287. ITEM.weight = 0.10;
  288. ITEM.access = "v";
  289. ITEM.useText = "Eat";
  290. ITEM.category = "Consumables";
  291. ITEM.business = false;
  292. ITEM.description = "A foggy bottle of whiskey, with a brown label and elongated shape.";
  293.  
  294. function ITEM:OnDrop(player, position) end;
  295.  
  296. ITEM:Register();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement