Advertisement
TheMisticogamer

Untitled

Dec 18th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. class viande {
  2. variable = "viande";
  3. displayName = "STR_Item_viande";
  4. weight = 5;
  5. buyPrice = -1;
  6. sellPrice = -1;
  7. illegal = false;
  8. edible = -1;
  9. icon = "";
  10. };
  11.  
  12. class legumes {
  13. variable = "legumes";
  14. displayName = "STR_Item_legumes";
  15. weight = 5;
  16. buyPrice = -1;
  17. sellPrice = -1;
  18. illegal = false;
  19. edible = -1;
  20. icon = "";
  21. };
  22.  
  23. class sauce {
  24. variable = "sauce";
  25. displayName = "STR_Item_sauce";
  26. weight = 5;
  27. buyPrice = -1;
  28. sellPrice = -1;
  29. illegal = false;
  30. edible = -1;
  31. icon = "";
  32. };
  33.  
  34. class kebab {
  35. variable = "kebab";
  36. displayName = "STR_Item_kebab";
  37. weight = 5;
  38. buyPrice = -1;
  39. sellPrice = 12000;
  40. illegal = false;
  41. edible = -1;
  42. icon = "";
  43. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement