예제 #1
0
 public virtual StatusEffect[] Combine(StatusEffect other)
 {
     return(new[] { this });
 }
예제 #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());
 }