테스트

aion-server 4.8

Gitteol
최고관리자 · 1 · 💬 0 클론/새로받기
 4.8 61f661d · 1 commits 새로받기(Pull)
game-server/data/handlers/ai/instance/theShugoEmperorsVault/WatchmanHokuruki.java
package ai.instance.theShugoEmperorsVault;

import java.util.Arrays;
import java.util.Collections;
import java.util.List;

import com.aionemu.gameserver.ai.AIName;
import com.aionemu.gameserver.ai.HpPhases;
import com.aionemu.gameserver.model.gameobjects.Creature;
import com.aionemu.gameserver.model.gameobjects.Npc;

/**
 * @author Yeats
 */
@AIName("watchman_hokuruki")
public class WatchmanHokuruki extends IDSweep_Bosses implements HpPhases.PhaseHandler {

	private final HpPhases hpPhases = new HpPhases(100, 75, 50, 25, 15);
	private final List<Integer> randomPositions = Collections.synchronizedList(Arrays.asList(1, 2, 3));

	public WatchmanHokuruki(Npc owner) {
		super(owner);
		Collections.shuffle(randomPositions);
	}

	@Override
	protected void handleAttack(Creature creature) {
		super.handleAttack(creature);
		hpPhases.tryEnterNextPhase(this);
	}

	@Override
	public void handleHpPhase(int phaseHpPercent) {
		switch (phaseHpPercent) {
			case 100, 15 -> rndSpawn(235632, 4);
			case 75 -> spawnAdds(randomPositions.get(0));
			case 50 -> spawnAdds(randomPositions.get(1));
			case 25 -> spawnAdds(randomPositions.get(2));
		}
	}

	private void spawnAdds(int position) {
		switch (position) {
			case 1:
				spawn(236083, 472.8545f, 644.94f, 395.50546f, (byte) 113);
				spawn(235649, 473.7f, 648.9f, 395.55615f, (byte) 116);
				spawn(235649, 471.75f, 641f, 395.27322f, (byte) 116);
				break;
			case 2:
				spawn(236083, 490f, 655.1424f, 394.69073f, (byte) 84);
				spawn(235649, 485.812f, 656.14f, 395.375f, (byte) 90);
				spawn(235649, 493.59f, 652.62f, 395.41345f, (byte) 77);
				break;
			case 3:
				spawn(236083, 493f, 629.34f, 394.89963f, (byte) 41);
				spawn(235649, 496.56f, 631.78f, 395.20126f, (byte) 49);
				spawn(235649, 488.86f, 627.54f, 395.27853f, (byte) 38);
				break;
		}
	}

	@Override
	protected void handleBackHome() {
		super.handleBackHome();
		hpPhases.reset();
		Collections.shuffle(randomPositions);
	}

	@Override
	protected void handleDied() {
		super.handleDied();
		getOwner().getController().delete();
	}

	private void rndSpawn(int npcId, int count) {
		for (int i = 0; i < count; i++) {
			Npc npc = (Npc) rndSpawnInRange(npcId, 3, 5);
			npc.getAggroList().addHate(getOwner().getAggroList().getMostHated(), 1);
		}
	}
}

📎 첨부파일

댓글 작성 권한이 없습니다.
🏆 포인트 랭킹 TOP 10
순위 닉네임 포인트
1 no_profile 타키야겐지쪽지보내기 자기소개 아이디로 검색 전체게시물 102,949
2 no_profile 동가리쪽지보내기 자기소개 아이디로 검색 전체게시물 63,733
3 no_profile 라프텔쪽지보내기 자기소개 아이디로 검색 전체게시물 51,771
4 no_profile 불멸의행복쪽지보내기 자기소개 아이디로 검색 전체게시물 36,923
5 서번트쪽지보내기 자기소개 아이디로 검색 전체게시물 35,011
6 no_profile 닥터스쪽지보내기 자기소개 아이디로 검색 전체게시물 29,470
7 no_profile 검은고양이쪽지보내기 자기소개 아이디로 검색 전체게시물 29,077
8 no_profile Revolution쪽지보내기 자기소개 아이디로 검색 전체게시물 28,199
9 no_profile 보거스쪽지보내기 자기소개 아이디로 검색 전체게시물 26,731
10 no_profile 호롤롤로쪽지보내기 자기소개 아이디로 검색 전체게시물 17,020
알림 0