mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-12-05 00:06:02 +00:00
添加易伤
This commit is contained in:
parent
c4ea6a7c90
commit
b59291be3f
@ -720,6 +720,7 @@ namespace Milimoe.FunGame.Core.Library.Constant
|
||||
EffectType.WeakDispelling => "持续性弱驱散",
|
||||
EffectType.StrongDispelling => "持续性强驱散",
|
||||
EffectType.Recovery => "恢复",
|
||||
EffectType.Vulnerable => "易伤",
|
||||
_ => "未知效果"
|
||||
};
|
||||
}
|
||||
@ -778,6 +779,7 @@ namespace Milimoe.FunGame.Core.Library.Constant
|
||||
EffectType.GrievousWound => DispelledType.Weak,
|
||||
EffectType.WeakDispelling => DispelledType.Weak,
|
||||
EffectType.Recovery => DispelledType.Weak,
|
||||
EffectType.Vulnerable => DispelledType.Weak,
|
||||
_ => DispelledType.Weak
|
||||
};
|
||||
}
|
||||
@ -836,6 +838,7 @@ namespace Milimoe.FunGame.Core.Library.Constant
|
||||
EffectType.WeakDispelling => false,
|
||||
EffectType.StrongDispelling => false,
|
||||
EffectType.Recovery => false,
|
||||
EffectType.Vulnerable => true,
|
||||
_ => false
|
||||
};
|
||||
}
|
||||
|
||||
@ -484,7 +484,12 @@ namespace Milimoe.FunGame.Core.Library.Constant
|
||||
/// <summary>
|
||||
/// 恢复
|
||||
/// </summary>
|
||||
Recovery
|
||||
Recovery,
|
||||
|
||||
/// <summary>
|
||||
/// 易伤
|
||||
/// </summary>
|
||||
Vulnerable
|
||||
}
|
||||
|
||||
public enum ItemType
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user