Elin Modding Docs Doc
Loading...
Searching...
No Matches
ConfigTactics.cs
1using System;
2using Newtonsoft.Json;
3
4// Token: 0x020000A8 RID: 168
5public class ConfigTactics : EClass
6{
7 // Token: 0x06000489 RID: 1161 RVA: 0x0001F3E2 File Offset: 0x0001D5E2
8 public int AllyDistance(Chara c)
9 {
10 if (EClass._zone.IsRegion)
11 {
12 return 1;
13 }
14 if (this.allyKeepDistance && EClass._zone.KeepAllyDistance)
15 {
16 return 5;
17 }
18 return c.DestDist;
19 }
20
21 // Token: 0x04000612 RID: 1554
22 [JsonProperty]
23 public bool allyKeepDistance;
24
25 // Token: 0x04000613 RID: 1555
26 [JsonProperty]
27 public bool dontWander;
28}
Definition Chara.cs:12