Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
ConfigTactics.cs
Go to the documentation of this file.
1using Newtonsoft.Json;
2
3public class ConfigTactics : EClass
4{
5 [JsonProperty]
6 public bool allyKeepDistance;
7
8 [JsonProperty]
9 public bool dontWander;
10
11 public int AllyDistance(Chara c)
12 {
14 {
15 return 1;
16 }
18 {
19 return 5;
20 }
21 return c.DestDist;
22 }
23}
Definition: Chara.cs:10
int DestDist
Definition: Chara.cs:819
bool allyKeepDistance
Definition: ConfigTactics.cs:6
int AllyDistance(Chara c)
Definition: EClass.cs:5
static Zone _zone
Definition: EClass.cs:20
virtual bool IsRegion
Definition: Spatial.cs:501
virtual bool KeepAllyDistance
Definition: Zone.cs:295