コード例 #1
0
 public override bool CanCombine(StatusEffect other)
 {
     return(other is Slimed slimed);
 }
コード例 #2
0
 public override bool CanCombine(StatusEffect other)
 {
     return(other is Muddy);
 }
コード例 #3
0
 public override bool CanCombine(StatusEffect other)
 {
     return(other is HealSlimed slimed && slimed.Master == Master);
 }
コード例 #4
0
 public override bool CanCombine(StatusEffect other)
 {
     return(other is Aflame);
 }
コード例 #5
0
 public override bool CanCombine(StatusEffect other)
 {
     return(other is Incinerate);
 }
コード例 #6
0
 public override bool CanCombine(StatusEffect other)
 {
     return(other is Poison);
 }
コード例 #7
0
 public override bool CanCombine(StatusEffect other)
 {
     return(other is Paralyze);
 }
コード例 #8
0
 public virtual StatusEffect[] Combine(StatusEffect other)
 {
     AddDuration(other.Duration);
     AddBuildup(other.Buildup);
     return(new[] { this });
 }
コード例 #9
0
 public virtual bool CanCombine(StatusEffect other)
 {
     return(GetType() == other.GetType());
 }
コード例 #10
0
 public override bool CanCombine(StatusEffect other)
 {
     return(other is Chirality);
 }
コード例 #11
0
 public override bool CanCombine(StatusEffect other)
 {
     return(other is Undead);
 }
コード例 #12
0
ファイル: Message.cs プロジェクト: DaedalusGame/7DRL_2020
 public MessageStatusBuildup(IEffectHolder holder, StatusEffect statusEffect, int buildup) : base(holder)
 {
     StatusEffect = statusEffect;
     Buildup      = buildup;
 }