Advertisement
Guest User

Untitled

a guest
May 3rd, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. //Zlomowisko
  2.  
  3. class wozek {
  4. variable = "wozek";
  5. displayName = "Wózek Złomiarza";
  6. weight = 1;
  7. buyPrice = 1000;
  8. sellPrice = 100;
  9. illegal = false;
  10. edible = -1;
  11. icon = "";
  12. };
  13.  
  14. class elektronika {
  15. variable = "elektronika";
  16. displayName = "Elektronika";
  17. weight = 1;
  18. buyPrice = -1;
  19. sellPrice = -1;
  20. illegal = false;
  21. edible = -1;
  22. icon = "";
  23. };
  24.  
  25. class papier {
  26. variable = "papier";
  27. displayName = "Papier";
  28. weight = 1;
  29. buyPrice = -1;
  30. sellPrice = -1;
  31. illegal = false;
  32. edible = -1;
  33. icon = "";
  34. };
  35.  
  36. class szmaty {
  37. variable = "szmaty";
  38. displayName = "Szmata";
  39. weight = 1;
  40. buyPrice = -1;
  41. sellPrice = -1;
  42. illegal = false;
  43. edible = -1;
  44. icon = "";
  45. };
  46.  
  47. class puszki {
  48. variable = "puszki";
  49. displayName = "Puszka";
  50. weight = 1;
  51. buyPrice = -1;
  52. sellPrice = -1;
  53. illegal = false;
  54. edible = -1;
  55. icon = "";
  56. };
  57.  
  58. class guma {
  59. variable = "guma";
  60. displayName = "Guma";
  61. weight = 1;
  62. buyPrice = -1;
  63. sellPrice = -1;
  64. illegal = false;
  65. edible = -1;
  66. icon = "";
  67. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement