미믹은 때려도 무반응
This commit is contained in:
parent
0d46e88659
commit
b0b20484c5
|
|
@ -60,10 +60,9 @@ messageinfo 엄청 느린 버그
|
||||||
|
|
||||||
악몽의 시련
|
악몽의 시련
|
||||||
- 결과 화면 (보상 지급)
|
- 결과 화면 (보상 지급)
|
||||||
- 매일 랭킹 초기화 후 보상 우편으로 지급
|
|
||||||
- 입장권 추가 구매 구현 필요
|
- 입장권 추가 구매 구현 필요
|
||||||
- 난이도에 따른 패널티 필요
|
- 난이도에 따른 패널티 필요
|
||||||
- 현재는 랜덤 보스 (보스 지정 방식 여부 필요)
|
- 현재는 랜덤 보스 (보스 지정 방식 여부 필요)
|
||||||
- 랭킹 15분마다 갱신
|
- 랭킹 15분마다 갱신
|
||||||
|
|
||||||
- 시작 시 입장권 차감
|
- 매일 랭킹 초기화 후 보상 우편으로 지급
|
||||||
|
|
|
||||||
|
|
@ -106,6 +106,7 @@ public class MobActor : Actor
|
||||||
{
|
{
|
||||||
if (NoUpdate_byTool || IsStop || IsDead() || IsCC()) return;
|
if (NoUpdate_byTool || IsStop || IsDead() || IsCC()) return;
|
||||||
Update_ETC();
|
Update_ETC();
|
||||||
|
if (IsSubRole(eSubRol.Mimic)) m_Target = null;
|
||||||
|
|
||||||
// 순찰 중
|
// 순찰 중
|
||||||
switch (MobStatus)
|
switch (MobStatus)
|
||||||
|
|
@ -115,6 +116,7 @@ public class MobActor : Actor
|
||||||
m_PatrolDelay -= Time.deltaTime;
|
m_PatrolDelay -= Time.deltaTime;
|
||||||
else
|
else
|
||||||
Change_MobStatus(eMobStatus.PatrolRot);
|
Change_MobStatus(eMobStatus.PatrolRot);
|
||||||
|
if (!IsSubRole(eSubRol.Mimic))
|
||||||
Check_Battle();
|
Check_Battle();
|
||||||
break;
|
break;
|
||||||
case eMobStatus.PatrolRot:
|
case eMobStatus.PatrolRot:
|
||||||
|
|
@ -134,6 +136,7 @@ public class MobActor : Actor
|
||||||
break;
|
break;
|
||||||
case eMobStatus.BattleStop:
|
case eMobStatus.BattleStop:
|
||||||
Change_MobStatus(eMobStatus.PatrolRot);
|
Change_MobStatus(eMobStatus.PatrolRot);
|
||||||
|
if (!IsSubRole(eSubRol.Mimic))
|
||||||
Heal(1f);
|
Heal(1f);
|
||||||
break;
|
break;
|
||||||
case eMobStatus.Battle:
|
case eMobStatus.Battle:
|
||||||
|
|
|
||||||
|
|
@ -138,7 +138,7 @@ public class DungeonInfo : MonoBehaviourSingletonTemplate<DungeonInfo>
|
||||||
yield return new WaitForSeconds(1f);
|
yield return new WaitForSeconds(1f);
|
||||||
StartCoroutine(Co_Update_Time());
|
StartCoroutine(Co_Update_Time());
|
||||||
|
|
||||||
float min = 5f, max = 15f;
|
float min = 3f, max = 10f;
|
||||||
var mapdata = MyValue.MyChoiceMapData.Get_MapData();
|
var mapdata = MyValue.MyChoiceMapData.Get_MapData();
|
||||||
var dungeonData = MyValue.MyChoiceMapData.Get_DungeonMapData_orNull();
|
var dungeonData = MyValue.MyChoiceMapData.Get_DungeonMapData_orNull();
|
||||||
var mimicData = table_monsterlist.Ins.Get_Data_orNull(dungeonData.n_MobID);
|
var mimicData = table_monsterlist.Ins.Get_Data_orNull(dungeonData.n_MobID);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue