Elin Modding Docs Doc
Loading...
Searching...
No Matches
TimeDebuff.cs
1using System;
2
3// Token: 0x020002F0 RID: 752
4public class TimeDebuff : BaseDebuff
5{
6 // Token: 0x17000686 RID: 1670
7 // (get) Token: 0x0600177D RID: 6013 RVA: 0x000989D7 File Offset: 0x00096BD7
8 public override bool TimeBased
9 {
10 get
11 {
12 return true;
13 }
14 }
15
16 // Token: 0x0600177E RID: 6014 RVA: 0x000989DA File Offset: 0x00096BDA
17 public override bool CanStack(Condition c)
18 {
19 return !c.givenByPcParty || c.givenByPcParty == base.givenByPcParty;
20 }
21}