-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [New] Added the remake of The Ruins Lair! - [New] Added the remake of The Catacombs Lair! - [New] Optimized and improved error handling of elite scripts - [Fix] Fixed but that would cause certain rays to not work correctly - [Fix] Fixed some minor bugs - [Removal] Removed dead code Signed-off-by: MagmaGuy <[email protected]>
- Loading branch information
MagmaGuy
committed
Sep 15, 2024
1 parent
7c3b23f
commit 1acb55b
Showing
54 changed files
with
1,278 additions
and
872 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
src/main/java/com/magmaguy/elitemobs/config/contentpackages/premade/CatacombsLair.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package com.magmaguy.elitemobs.config.contentpackages.premade; | ||
|
||
import com.magmaguy.elitemobs.config.contentpackages.ContentPackagesConfigFields; | ||
import org.bukkit.World; | ||
|
||
import java.util.List; | ||
|
||
public class CatacombsLair extends ContentPackagesConfigFields { | ||
public CatacombsLair() { | ||
super("catacombs_lair", | ||
true, | ||
"&2[lvl 010] &8The Catacombs", | ||
List.of("&fA great starter lair for players!", | ||
"&6Credits: Realm of Lotheridon, MagmaGuy, Dali, Frost"), | ||
"https://nightbreak.io/plugin/elitemobs/#the-catacombs", | ||
DungeonSizeCategory.LAIR, | ||
"em_the_catacombs", | ||
World.Environment.NORMAL, | ||
true, | ||
"em_the_catacombs,41.5,65.0,82.5,176,0", | ||
0, | ||
"Difficulty: &cHard\n" + | ||
"$bossCount bosses, from tier $lowestTier to $highestTier\n" + | ||
"&2A great Lair challenge for groups of beginners!", | ||
"&8[EM] &8Now entering the Catacombs. Be careful with what dwells below...", | ||
"&8[EM] &8You have left the Catacombs. Was it worth it?", | ||
"the_catacombs", | ||
false); | ||
setSetupMenuDescription(List.of( | ||
"&2A level 10 lair for new players!")); | ||
} | ||
} |
39 changes: 0 additions & 39 deletions
39
src/main/java/com/magmaguy/elitemobs/config/contentpackages/premade/CatacombsLair.off
This file was deleted.
Oops, something went wrong.
46 changes: 0 additions & 46 deletions
46
src/main/java/com/magmaguy/elitemobs/config/contentpackages/premade/ColosseumLair.off
This file was deleted.
Oops, something went wrong.
28 changes: 12 additions & 16 deletions
28
...fig/contentpackages/premade/RuinsLair.off → ...ig/contentpackages/premade/RuinsLair.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,33 @@ | ||
package com.magmaguy.elitemobs.config.contentpackages.premade; | ||
|
||
import com.magmaguy.elitemobs.config.contentpackages.ContentPackagesConfigFields; | ||
import com.magmaguy.elitemobs.utils.DiscordLinks; | ||
import org.bukkit.util.Vector; | ||
import org.bukkit.World; | ||
|
||
import java.util.Arrays; | ||
import java.util.List; | ||
|
||
public class RuinsLair extends DungeonPackagerConfigFields { | ||
public class RuinsLair extends ContentPackagesConfigFields { | ||
public RuinsLair() { | ||
super("the_ruins", | ||
true, | ||
"&2[lvl 150] &6The Ruins", | ||
new ArrayList<>(List.of("&fA fight against a myth from", | ||
List.of("&fA fight against a myth from", | ||
"&fNorse mythology, be prepared for a smiting!", | ||
"&6Credits: 69OzCanOfBepis, MagmaGuy"), | ||
List.of( | ||
"ruins_boss_p1.yml:0,0,0"), | ||
List.of(), | ||
"&6Credits: 69OzCanOfBepis, MagmaGuy, Dali, Frost"), | ||
"https://nightbreak.io/plugin/elitemobs/#the-ruins", | ||
DungeonSizeCategory.LAIR, | ||
"em_the_ruins.schem", | ||
"em_the_ruins", | ||
World.Environment.NORMAL, | ||
true, | ||
new Vector(18, -6, -19), | ||
new Vector(-21, 10, 20), | ||
"-1,-4,18,0,0", | ||
"em_the_ruins,-63.5,190.0,111.5,-132,0", | ||
0, | ||
"Difficulty: &cHard\n" + | ||
"$bossCount level $lowestTier Big Boss!\n" + | ||
"&cA tough fight against a Norse god!", | ||
"&8[EM] &3Those who challenge the myths must be prepared for their downfall!", | ||
"&8[EM] &3You now know what it takes to make a legend!", | ||
SchematicPackage.SchematicRotation.SOUTH.toString(), | ||
"the_ruins"); | ||
"em_the_ruins", | ||
false); | ||
setSetupMenuDescription(List.of( | ||
"&2A Lair for players around level 150!")); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.