Elin Modding Docs Doc
Loading...
Searching...
No Matches
BaseDebuff.cs
1using System;
2
3// Token: 0x020002CC RID: 716
4public class BaseDebuff : Condition
5{
6 // Token: 0x1700066D RID: 1645
7 // (get) Token: 0x0600170D RID: 5901 RVA: 0x00097F1E File Offset: 0x0009611E
8 public override bool WillOverride
9 {
10 get
11 {
12 return true;
13 }
14 }
15
16 // Token: 0x0600170E RID: 5902 RVA: 0x00097F21 File Offset: 0x00096121
17 public override int GetPhase()
18 {
19 return 0;
20 }
21
22 // Token: 0x0600170F RID: 5903 RVA: 0x00097F24 File Offset: 0x00096124
23 public override BaseNotification CreateNotification()
24 {
25 return new NotificationBuff
26 {
27 condition = this
28 };
29 }
30}