예제 #1
0
파일: Goals.cs 프로젝트: cooye/RuneManager
 public MonsterG(MonsterTypeMap monsterType)
 {
     type = monsterType;
 }
예제 #2
0
파일: Goals.cs 프로젝트: cooye/RuneManager
 public FuseGoalDef(MonsterTypeMap monsterType) : base(monsterType, GoalType.Fusion)
 {
     type = monsterType;
 }
예제 #3
0
파일: Goals.cs 프로젝트: cooye/RuneManager
 public AcquireMonsterGoalDef(MonsterTypeMap monsterType) : base(monsterType, GoalType.Own)
 {
 }
예제 #4
0
파일: Goals.cs 프로젝트: cooye/RuneManager
 public AwakenGoalDef(MonsterTypeMap monsterType) : base(monsterType, GoalType.Awaken)
 {
     type = monsterType;
     stat = MonsterStat.FindMon((int)type).Download();
 }