Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
ConWrath.cs
Go to the documentation of this file.
1public class ConWrath : BaseDebuff
2{
3 public override bool AllowMultipleInstance => true;
4
5 public override int GetPhase()
6 {
7 return 0;
8 }
9
10 public override bool CanStack(Condition c)
11 {
12 return false;
13 }
14
15 public override void OnRemoved()
16 {
17 owner.things.Find<TraitPunishBall>()?.Destroy();
18 }
19}
ThingContainer things
Definition: Card.cs:34
override void OnRemoved()
Definition: ConWrath.cs:15
override int GetPhase()
Definition: ConWrath.cs:5
override bool CanStack(Condition c)
Definition: ConWrath.cs:10
override bool AllowMultipleInstance
Definition: ConWrath.cs:3
Thing Find(int uid)