23 lines
538 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Milimoe.FunGame.Core.Entity;
namespace Oshima.FunGame.OshimaModules
{
public class : Unit
{
public override string Name => "雇佣兵";
public override string ToString()
{
return NickName;
}
public (Character master, string name) : base()
{
NickName = $"雇佣兵{name}{master}";
Master = master;
ExATR = master.ExATR - master.ATR;
ExMOV = master.ExMOV - master.MOV;
}
}
}