aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyeyoung <cyong06@naver.com>2021-02-27 00:58:24 +0900
committersyeyoung <cyong06@naver.com>2021-02-27 00:58:24 +0900
commit03073d2166e610558a95d002dcdcaf36dfda4e30 (patch)
tree60bd2893db5f67eb11aea43244d70ee964b2f544 /src
parent740c141be9abb13b7b54389a408b082570945153 (diff)
downloadSkyblock-Dungeons-Guide-03073d2166e610558a95d002dcdcaf36dfda4e30.tar.gz
Skyblock-Dungeons-Guide-03073d2166e610558a95d002dcdcaf36dfda4e30.tar.bz2
Skyblock-Dungeons-Guide-03073d2166e610558a95d002dcdcaf36dfda4e30.zip
please hypixel be consistant
Diffstat (limited to 'src')
-rw-r--r--src/main/java/kr/syeyoung/dungeonsguide/roomprocessor/bossfight/BossfightProcessorProf.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/roomprocessor/bossfight/BossfightProcessorProf.java b/src/main/java/kr/syeyoung/dungeonsguide/roomprocessor/bossfight/BossfightProcessorProf.java
index da0ac2d1..2bb269f6 100644
--- a/src/main/java/kr/syeyoung/dungeonsguide/roomprocessor/bossfight/BossfightProcessorProf.java
+++ b/src/main/java/kr/syeyoung/dungeonsguide/roomprocessor/bossfight/BossfightProcessorProf.java
@@ -11,37 +11,37 @@ public class BossfightProcessorProf extends GeneralBossfightProcessor {
public BossfightProcessorProf() {
addPhase(GeneralBossfightProcessor.PhaseData.builder()
.phase("start")
- .signatureMsg("§r§c[BOSS] The Professor §r§f: I was burdened with terrible news recently...§r")
+ .signatureMsg("§r§c[BOSS] The Professor§r§f: I was burdened with terrible news recently...§r")
.nextPhase("fight-1").build()
);
addPhase(GeneralBossfightProcessor.PhaseData.builder()
.phase("fight-1")
- .signatureMsg("§r§c[BOSS] The Professor §r§f: I'll show you real power!§r")
+ .signatureMsg("§r§c[BOSS] The Professor§r§f: I'll show you real power!§r")
.nextPhase("first-defeat").build()
);
addPhase(GeneralBossfightProcessor.PhaseData.builder()
.phase("first-defeat")
- .signatureMsg("§r§c[BOSS] The Professor §r§f: Oh? You found my Guardians one weakness?§r")
+ .signatureMsg("§r§c[BOSS] The Professor§r§f: Oh? You found my Guardians one weakness?§r")
.nextPhase("fight-2").build()
);
addPhase(GeneralBossfightProcessor.PhaseData.builder()
.phase("fight-2")
- .signatureMsg("§r§c[BOSS] The Professor §r§f: This time I'll be your opponent!§r")
+ .signatureMsg("§r§c[BOSS] The Professor§r§f: This time I'll be your opponent!§r")
.nextPhase("second-defeat").build()
);
addPhase(GeneralBossfightProcessor.PhaseData.builder()
.phase("second-defeat")
- .signatureMsg("§r§c[BOSS] The Professor §r§f: I see. You have forced me to use my ultimate technique.§r")
+ .signatureMsg("§r§c[BOSS] The Professor§r§f: I see. You have forced me to use my ultimate technique.§r")
.nextPhase("fight-3").build()
);
addPhase(GeneralBossfightProcessor.PhaseData.builder()
.phase("fight-3")
- .signatureMsg("§r§c[BOSS] The Professor §r§f: The process is irreversible, but I'll be stronger than a Wither now!§r")
+ .signatureMsg("§r§c[BOSS] The Professor§r§f: The process is irreversible, but I'll be stronger than a Wither now!§r")
.nextPhase("final-defeat").build()
);
addPhase(GeneralBossfightProcessor.PhaseData.builder()
.phase("final-defeat")
- .signatureMsg("§r§c[BOSS] The Professor §r§f: What?! My Guardian power is unbeatable!§r").build()
+ .signatureMsg("§r§c[BOSS] The Professor§r§f: What?! My Guardian power is unbeatable!§r").build()
);
}