Elin Decompiled Documentation EA 23.246 Nightly
Loading...
Searching...
No Matches
BaseDebuff.cs
Go to the documentation of this file.
1public class BaseDebuff : Condition
2{
3 public override bool ShouldOverride(Condition c)
4 {
5 return true;
6 }
7
8 public override int GetPhase()
9 {
10 return 0;
11 }
12
14 {
15 return new NotificationBuff
16 {
17 condition = this
18 };
19 }
20}
override int GetPhase()
Definition: BaseDebuff.cs:8
override bool ShouldOverride(Condition c)
Definition: BaseDebuff.cs:3
override BaseNotification CreateNotification()
Definition: BaseDebuff.cs:13