Elin Modding Docs Doc
Loading...
Searching...
No Matches
ConWrath.cs
1using System;
2
3// Token: 0x020002D5 RID: 725
4public class ConWrath : BaseDebuff
5{
6 // Token: 0x06001720 RID: 5920 RVA: 0x000980B8 File Offset: 0x000962B8
7 public override int GetPhase()
8 {
9 return 0;
10 }
11
12 // Token: 0x17000670 RID: 1648
13 // (get) Token: 0x06001721 RID: 5921 RVA: 0x000980BB File Offset: 0x000962BB
14 public override bool AllowMultipleInstance
15 {
16 get
17 {
18 return true;
19 }
20 }
21
22 // Token: 0x06001722 RID: 5922 RVA: 0x000980BE File Offset: 0x000962BE
23 public override bool CanStack(Condition c)
24 {
25 return false;
26 }
27
28 // Token: 0x06001723 RID: 5923 RVA: 0x000980C4 File Offset: 0x000962C4
29 public override void OnRemoved()
30 {
31 Thing thing = this.owner.things.Find<TraitPunishBall>();
32 if (thing != null)
33 {
34 thing.Destroy();
35 }
36 }
37}
Definition Thing.cs:10