settings.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132
  1. --version control (do not change unless you are a developer!)
  2. --------------------------------------
  3. sumo.version = "02.16.2021.2" --read: last changed: mo.day.yr.daily_version
  4. -- speed when in the minigame (players will be a little faster when running)
  5. sumo.player_speed = 2
  6. --------------------------------------
  7. -- jump when in the minigame (players can jump a little higher when running)
  8. sumo.player_jump = 1.3
  9. --------------------------------------
  10. --how long players may run (and jump a little extra too) before triggering the run cooldown
  11. sumo.movement_timeout = 5
  12. --------------------------------------
  13. --the base value of how hard the stick hits, though hit force may be up to 30 more than this
  14. sumo.stick_knockback = 25
  15. --------------------------------------
  16. -- how close to the pointed node must the player be to vault
  17. sumo.stick_vault_reach = 3
  18. --------------------------------------
  19. -- timer for how long the vault cannot be used after it is used
  20. sumo.stick_vault_timeout = 1.0 --(float)--in seconds
  21. --------------------------------------
  22. -- if an opponent is within this distance, then if the player uses the pushstick with the shift key pressed, the players switch positions.
  23. sumo.allow_swap_distance = 6
  24. --------------------------------------
  25. --the distance that players may select other players while holding the stick
  26. sumo.stick_pointing_distance = 7
  27. --------------------------------------
  28. --the cooldown for pushing other players with the stick. If a player re-clicks sooner than this many seconds, they will not have an effect to speak of
  29. sumo.stick_push_timeout = 0.3 --(float)--in seconds
  30. --------------------------------------