2023-12-20 23:16:24 +08:00

19 lines
427 B
C#

using Milimoe.FunGame.Core.Entity;
using Milimoe.FunGame.Core.Library.Constant;
namespace Milimoe.FunGame.GameMode.OfficialStandard.Characters
{
public class NiuNan : Character
{
public NiuNan() : base()
{
Name = "NiuNan";
FirstName = "牛腩";
FirstRoleType = RoleType.Logistics;
STR = 0;
AGI = 0;
INT = 15;
}
}
}