Exemplo n.º 1
0
 public override bool CanCombine(StatusEffect other)
 {
     return(other is Slimed slimed);
 }
Exemplo n.º 2
0
 public override bool CanCombine(StatusEffect other)
 {
     return(other is Muddy);
 }
Exemplo n.º 3
0
 public override bool CanCombine(StatusEffect other)
 {
     return(other is HealSlimed slimed && slimed.Master == Master);
 }
Exemplo n.º 4
0
 public override bool CanCombine(StatusEffect other)
 {
     return(other is Aflame);
 }
Exemplo n.º 5
0
 public override bool CanCombine(StatusEffect other)
 {
     return(other is Incinerate);
 }
Exemplo n.º 6
0
 public override bool CanCombine(StatusEffect other)
 {
     return(other is Poison);
 }
Exemplo n.º 7
0
 public override bool CanCombine(StatusEffect other)
 {
     return(other is Paralyze);
 }
Exemplo n.º 8
0
 public virtual StatusEffect[] Combine(StatusEffect other)
 {
     AddDuration(other.Duration);
     AddBuildup(other.Buildup);
     return(new[] { this });
 }
Exemplo n.º 9
0
 public virtual bool CanCombine(StatusEffect other)
 {
     return(GetType() == other.GetType());
 }
Exemplo n.º 10
0
 public override bool CanCombine(StatusEffect other)
 {
     return(other is Chirality);
 }
Exemplo n.º 11
0
 public override bool CanCombine(StatusEffect other)
 {
     return(other is Undead);
 }
Exemplo n.º 12
0
 public MessageStatusBuildup(IEffectHolder holder, StatusEffect statusEffect, int buildup) : base(holder)
 {
     StatusEffect = statusEffect;
     Buildup      = buildup;
 }