diff options
author | syeyoung <cyong06@naver.com> | 2021-01-30 00:26:12 +0900 |
---|---|---|
committer | syeyoung <cyong06@naver.com> | 2021-01-30 00:26:12 +0900 |
commit | c5efc73e0afe407b1161c3aafcf8509866587788 (patch) | |
tree | a0dee37513fb5846be9add8e33ac3e29ae4ea135 /src/main | |
parent | 1d9265f0e211c173740db5bf66c7ea70a2f652fa (diff) | |
download | Skyblock-Dungeons-Guide-c5efc73e0afe407b1161c3aafcf8509866587788.tar.gz Skyblock-Dungeons-Guide-c5efc73e0afe407b1161c3aafcf8509866587788.tar.bz2 Skyblock-Dungeons-Guide-c5efc73e0afe407b1161c3aafcf8509866587788.zip |
Livid done
Diffstat (limited to 'src/main')
2 files changed, 33 insertions, 6 deletions
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/dungeon/doorfinder/CatacombDataProvider.java b/src/main/java/kr/syeyoung/dungeonsguide/dungeon/doorfinder/CatacombDataProvider.java index 09a70892..27ca7227 100755 --- a/src/main/java/kr/syeyoung/dungeonsguide/dungeon/doorfinder/CatacombDataProvider.java +++ b/src/main/java/kr/syeyoung/dungeonsguide/dungeon/doorfinder/CatacombDataProvider.java @@ -75,10 +75,10 @@ public class CatacombDataProvider implements DungeonSpecificDataProvider { public BossfightProcessor createBossfightProcessor(World w, String dungeonName) { String floor = dungeonName.substring(14).trim(); e.sendDebugChat(new ChatComponentText("Floor: "+floor+ " Building bossfight processor")); - if (floor.equals("F2")) { - return new BossfightProcessorScarf(); - } else if (floor.equals("F1")) { + if (floor.equals("F1")) { return new BossfightProcessorBonzo(); + } else if (floor.equals("F2")) { + return new BossfightProcessorScarf(); } else if (floor.equals("F3")) { return new BossfightProcessorProf(); } else if (floor.equals("F4")) { diff --git a/src/main/java/kr/syeyoung/dungeonsguide/roomprocessor/bossfight/BossfightProcessorLivid.java b/src/main/java/kr/syeyoung/dungeonsguide/roomprocessor/bossfight/BossfightProcessorLivid.java index fa18262d..766e2422 100644 --- a/src/main/java/kr/syeyoung/dungeonsguide/roomprocessor/bossfight/BossfightProcessorLivid.java +++ b/src/main/java/kr/syeyoung/dungeonsguide/roomprocessor/bossfight/BossfightProcessorLivid.java @@ -1,5 +1,6 @@ package kr.syeyoung.dungeonsguide.roomprocessor.bossfight; +import kr.syeyoung.dungeonsguide.utils.TextUtils; import lombok.Getter; import net.minecraft.client.entity.EntityOtherPlayerMP; import net.minecraft.entity.item.EntityArmorStand; @@ -10,6 +11,7 @@ import java.util.*; @Getter public class BossfightProcessorLivid extends GeneralBossfightProcessor { private String realLividName; + private String prefix; private EntityOtherPlayerMP realLivid; private Set<String> knownLivids = new HashSet<String>(); @@ -17,7 +19,17 @@ public class BossfightProcessorLivid extends GeneralBossfightProcessor { public BossfightProcessorLivid() { addPhase(PhaseData.builder().phase("start").build()); } - + private static final Map<String, String> lividColorPrefix = new HashMap<String, String>() {{ + put("Vendetta", "§f"); + put("Crossed", "§d"); + put("Hockey", "§c"); + put("Doctor", "§7"); + put("Frog", "§2"); + put("Smile", "§a"); + put("Scream", "§1"); + put("Purple", "§5"); + put("Arcade", "§e"); + }}; @Override public void onEntitySpawn(LivingEvent.LivingUpdateEvent updateEvent) { if (updateEvent.entityLiving.getName().endsWith("Livid") && updateEvent.entityLiving instanceof EntityOtherPlayerMP) { @@ -26,13 +38,28 @@ public class BossfightProcessorLivid extends GeneralBossfightProcessor { realLividName = updateEvent.entityLiving.getName(); realLivid = (EntityOtherPlayerMP) updateEvent.entityLiving; System.out.println("Think real livid is "+realLividName); + prefix = lividColorPrefix.get(realLividName.split(" ")[0]); } + } else if (updateEvent.entityLiving.getName().startsWith("§a﴾ "+prefix) && updateEvent.entityLiving instanceof EntityArmorStand) { + System.out.println(updateEvent.entityLiving.getName()); + lividStand = (EntityArmorStand) updateEvent.entityLiving; } } + private EntityArmorStand lividStand; @Override public List<HealthData> getHealths() { - ArrayList<HealthData> healthData = new ArrayList<HealthData>(); - return healthData; + List<HealthData> healths = new ArrayList<HealthData>(); + long health = 0; + if (lividStand != null) { + try { + String name = TextUtils.stripColor(lividStand.getName()); + String healthPart = name.split(" ")[2]; + health = TextUtils.reverseFormat(healthPart.substring(0, healthPart.length() - 1)); + System.out.println(healthPart.substring(0, healthPart.length() - 1) + " / " + health); + } catch (Exception e) {e.printStackTrace();} + } + healths.add(new HealthData(realLividName, (int) health,7000000 , true)); + return healths; } } |