Ejemplo n.º 1
0
 public virtual StatusEffect[] Combine(StatusEffect other)
 {
     return(new[] { this });
 }
Ejemplo 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());
 }