Advertisement
Guest User

Untitled

a guest
May 16th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. Conf.Tools = { --setup configurations for all of the tools
  2. { --1. Combat Tools
  3. { --1. Regular Sword
  4. Name = 'Regular Sword';
  5. Icon = '';
  6. Damage = 30;
  7. Rate = 0.75;
  8. Price = 0;
  9. },
  10. { --2. Big Sword
  11. Name = 'Big Sword';
  12. Icon = '';
  13. Damage = 40;
  14. Rate = 1;
  15. Price = 100;
  16. },
  17. { --3. Battle Axe
  18. Name = 'Battle Axe';
  19. Icon = '';
  20. Damage = 50;
  21. Rate = 0.75;
  22. Price = 500;
  23. },
  24. { --4. Lightning Blade
  25. Name = 'Lightning Blade';
  26. Icon = '';
  27. Damage = 70;
  28. Rate = 0.5;
  29. Price = 2000;
  30. },
  31. { --5. Fire Sword
  32. Name = 'Fire Sword';
  33. Icon = '';
  34. Damage = 100;
  35. Rate = 0.5;
  36. Price = 7000;
  37. }
  38. },
  39. { --2. Projectiles
  40. { --1. Baseball Arm
  41. Name = 'Baseball Arm';
  42. Icon = '';
  43. Speed = 150;
  44. Damage = 5;
  45. Rate = 0.3;
  46. Price = 0;
  47. },
  48. { --2. Slingshot
  49. Name = 'Slingshot';
  50. Icon = '';
  51. Speed = 200;
  52. Damage = 15;
  53. Rate = 0.3;
  54. Price = 200;
  55. },
  56. { --3. Big Ball Launcher
  57. Name = 'Big Ball Launcher';
  58. Icon = '';
  59. Speed = 50;
  60. Damage = 90;
  61. Rate = 1;
  62. Price = 800;
  63. },
  64. { --4. Gernade Launcher
  65. Name = 'Gernade Launcher';
  66. Icon = '';
  67. Speed = 80;
  68. Damage = 100;
  69. Rate = 0.75;
  70. Price = 4000;
  71. },
  72. { --5. Rocket Launcher
  73. Name = 'Rocket Launcher';
  74. Icon = '';
  75. Speed = 80;
  76. Damage = 200;
  77. Rate = 0.5;
  78. Price = 10000;
  79. }
  80. },
  81. { --3. Weak drop items
  82. { --1. Dynamite
  83. Name = 'Dynamite';
  84. Icon = '';
  85. Damage = 75;
  86. Rate = 1;
  87. Price = 0;
  88. },
  89. { --2. Big Bomb
  90. Name = 'Big Bomb';
  91. Icon = '';
  92. Damage = 100;
  93. Rate = 1;
  94. Price = 1000;
  95. },
  96. { --3. C4
  97. Name = 'C4 Explosive';
  98. Icon = '';
  99. Damage = 150;
  100. Rate = 0.75;
  101. Price = 4000;
  102. },
  103. { --4.
  104. Name = 'Regular Nuke';
  105. Icon = '';
  106. Damage = 300;
  107. Rate = 1;
  108. Price = 10000;
  109. },
  110. { --5.
  111. Name = 'Golden Nuke';
  112. Icon = '';
  113. Damage = 1000;
  114. Rate = 1;
  115. Price = 20000;
  116. }
  117.  
  118. },
  119. { --4. build blocks
  120. { --1. regular
  121. Name = 'Regular Block';
  122. Icon = '';
  123. Hp = 100;
  124. Rate = 0.5;
  125. Price = 0;
  126. },
  127. { --2. strong
  128. Name = 'Strong Block';
  129. Icon = '';
  130. Hp = 200;
  131. Rate = 0.5;
  132. Price = 7500;
  133. },
  134. { --3. Really strong
  135. Name = 'Really Strong Block';
  136. Icon = '';
  137. Hp = 300;
  138. Rate = 0.5;
  139. Price = 20000;
  140. }
  141. }
  142. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement