示例#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());
 }