Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1.  
  2. // GLOBAL CONFIG:
  3. (function(exports) {
  4.  
  5. // RENDER:
  6. exports.maxScreenWidth = 1920;
  7. exports.maxScreenHeight = 1080;
  8.  
  9. // SERVER:
  10. exports.serverUpdateRate = 10;
  11. exports.maxPlayers = 70;
  12.  
  13. // CLIENT:
  14. exports.clientSendRate = 10;
  15.  
  16. // UI:
  17. exports.healthBarWidth = 52;
  18. exports.healthBarPad = 4.5;
  19. exports.iconPadding = 15;
  20.  
  21. // PLAYER:
  22. exports.maxAge = 15;
  23. exports.killScore = 10000;
  24. exports.gatherAngle = Math.PI/2.6;
  25. exports.gatherWiggle = 10;
  26. exports.hitReturnRatio = 0.25;
  27. exports.hitAngle = Math.PI / 2;
  28. exports.playerScale = 35;
  29. exports.playerSpeed = 0.23;
  30. exports.playerDecel = 0.33;
  31. exports.nameY = 34;
  32.  
  33. // NATURE:
  34. exports.resourceTypes = ["wood", "food", "stone", "points"];
  35. exports.areaCount = 7;
  36. exports.treesPerArea = 70;
  37. exports.bushesPerArea = 3;
  38. exports.totalRocks = 29;
  39. exports.goldOres = 5;
  40. exports.treeScales = [120, 125, 130, 135];
  41. exports.bushScales = [80, 85, 90];
  42. exports.rockScales = [80, 85, 90];
  43.  
  44. // DATA:
  45. exports.maxNameLength = 15;
  46.  
  47. // MAP:
  48. exports.mapScale = 11400;
  49.  
  50. }(typeof exports==='undefined'?this.config={}:exports));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement