mirror of
https://github.com/oshima-studios/OshimaGameModule.git
synced 2025-04-20 10:59:33 +08:00
19 lines
432 B
C#
19 lines
432 B
C#
using Milimoe.FunGame.Core.Entity;
|
|
using Milimoe.FunGame.Core.Library.Constant;
|
|
|
|
namespace Milimoe.FunGame.GameMode.OfficialStandard.Characters
|
|
{
|
|
public class Oshima : Character
|
|
{
|
|
public Oshima() : base()
|
|
{
|
|
Name = "Oshima";
|
|
FirstName = "大島シヤ";
|
|
FirstRoleType = RoleType.Vanguard;
|
|
STR = 15;
|
|
AGI = 5;
|
|
INT = 0;
|
|
}
|
|
}
|
|
}
|