stuff
This commit is contained in:
parent
a8341e8232
commit
a8c43ba7e2
43 changed files with 2618 additions and 48 deletions
11
src/Roboto.Core/CombatSettings.cs
Normal file
11
src/Roboto.Core/CombatSettings.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
namespace Roboto.Core;
|
||||
|
||||
public class CombatSettings
|
||||
{
|
||||
public int GlobalCooldownMs { get; set; } = 500;
|
||||
public float AttackRange { get; set; } = 600f;
|
||||
public float SafeRange { get; set; } = 400f;
|
||||
public bool KiteEnabled { get; set; }
|
||||
public float KiteRange { get; set; } = 300f;
|
||||
public int KiteDelayMs { get; set; } = 200;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue