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

19 lines
422 B
C#

using Milimoe.FunGame.Core.Entity;
using Milimoe.FunGame.Core.Library.Constant;
namespace Milimoe.FunGame.GameMode.OfficialStandard.Characters
{
public class QWQAQW : Character
{
public QWQAQW() : base()
{
Name = "QWQAQW";
FirstName = "脑婆";
FirstRoleType = RoleType.Core;
STR = 3;
AGI = 10;
INT = 2;
}
}
}