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

19 lines
432 B
C#

using Milimoe.FunGame.Core.Entity;
using Milimoe.FunGame.Core.Library.Constant;
namespace Milimoe.FunGame.GameMode.OfficialStandard.Characters
{
public class ColdBlue : Character
{
public ColdBlue() : base()
{
Name = "Cold Blue";
FirstName = "冷蓝";
FirstRoleType = RoleType.Guardian;
STR = 9;
AGI = 3;
INT = 3;
}
}
}