Esempio n. 1
0
 public virtual StatusEffect[] Combine(StatusEffect other)
 {
     return(new[] { this });
 }
Esempio n. 2
0
 //Default behavior is keep existing if we apply the same type of state
 public virtual bool CanCombine(StatusEffect other)
 {
     return(GetType() == other.GetType());
 }