Skip to content

Commit 14d2995

Browse files
committed
feat: add cords
1 parent 53d8fb2 commit 14d2995

1 file changed

Lines changed: 15 additions & 1 deletion

File tree

src/main/java/zadudoder/spmhelper/tutorial/TutorialManager.java

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,20 @@ private static void startGoToEndAndTalkAboutTrade() {
192192
checkpoints.add(new TutorialPoint(28, 59, 0, END, null, false));
193193
checkpoints.add(new TutorialPoint(18, 59, 0, END, null, false));
194194
checkpoints.add(new TutorialPoint(8, 60, 0, END, null, false));
195-
checkpoints.add(new TutorialPoint(3, 61, 0, END, null, true)); // Соо прыгай в энд
195+
checkpoints.add(new TutorialPoint(3, 61, 0, END, TutorialManager::EndAction, true)); // Соо прыгай в энд
196+
}
197+
198+
private static void EndAction() {
199+
pullText("Прыгайте в портал и бегите к палатке новичков, там, где вы начинали.");
200+
goToFSB();
201+
}
202+
203+
private static void goToFSB() {
204+
checkpoints.add(new TutorialPoint(11, 81, 25, OVERWORLD, null, false));
205+
checkpoints.add(new TutorialPoint(12, 81, 32, OVERWORLD, null, false));
206+
checkpoints.add(new TutorialPoint(14, 80, 44, OVERWORLD, null, false));
207+
checkpoints.add(new TutorialPoint(16, 80, 52, OVERWORLD, null, false));
208+
checkpoints.add(new TutorialPoint(20, 80, 60, OVERWORLD, null, false));
209+
checkpoints.add(new TutorialPoint(20, 80, 66, OVERWORLD, null, false));
196210
}
197211
}

0 commit comments

Comments
 (0)