Compare commits
23 commits
neoforge
...
neoforge-1
Author | SHA1 | Date | |
---|---|---|---|
009822531a | |||
aee0f1b569 | |||
a6b905c01f | |||
ee37b83769 | |||
6af44e07ca | |||
7e323e8dc4 | |||
0ce44d79b5 | |||
4f9c96ce03 | |||
fd89a9c3c2 | |||
171b912f1c | |||
01df575767 | |||
dfe27109be | |||
676955503c | |||
6625a495ca | |||
2c369a125a | |||
c58ca0fe37 | |||
58a9be3251 | |||
ea6451e558 | |||
1c119aa5db | |||
d39a15a4e2 | |||
0294198192 | |||
aaefb62501 | |||
367c407ec9 |
15 changed files with 1454 additions and 340 deletions
74
Changelog.md
74
Changelog.md
|
@ -1,5 +1,79 @@
|
|||
# Upcoming changes
|
||||
|
||||
# Version Forge-1.26.5
|
||||
|
||||
Update TBM\_Config.toml to have haste\_speed and slow\_speed for all mob
|
||||
entries.
|
||||
|
||||
Update Config to merge in new changes. This means that the existing config will
|
||||
be overwritten much less frequently (if ever).
|
||||
|
||||
Update to Forge 52.0.26 (MC 1.21.1).
|
||||
|
||||
# Version NeoForge-1.26.5-MC-1.21.1
|
||||
|
||||
Update TBM\_Config.toml to have haste\_speed and slow\_speed for all mob
|
||||
entries.
|
||||
|
||||
Update ClientConfigGui to quit to mod-menu screen in NeoForge (before, it quit
|
||||
to the main screen or current game).
|
||||
|
||||
Update Config to merge in new changes. This means that the existing config will
|
||||
be overwritten much less frequently (if ever).
|
||||
|
||||
Update to NeoForge 21.1.74 (MC 1.21.1).
|
||||
|
||||
# Version NeoForge-1.26.5
|
||||
|
||||
Update TBM\_Config.toml to have haste\_speed and slow\_speed for all mob
|
||||
entries.
|
||||
|
||||
Update ClientConfigGui to quit to mod-menu screen in NeoForge (before, it quit
|
||||
to the main screen or current game).
|
||||
|
||||
Update Config to merge in new changes. This means that the existing config will
|
||||
be overwritten much less frequently (if ever).
|
||||
|
||||
Update to NeoForge 21.3.11-beta (MC 1.21.3).
|
||||
|
||||
# Version Forge-1.26.4
|
||||
|
||||
[Add support for "per-player-stats" in Turn-Based-Battle.](https://stephen-seo.github.io/TurnBasedMinecraftMod/server_config/#per-player-settings)
|
||||
|
||||
Update to Forge 52.0.24 (MC 1.21.1).
|
||||
|
||||
# Version NeoForge-1.26.4-MC-1.21.1
|
||||
|
||||
[Add support for "per-player-stats" in Turn-Based-Battle.](https://stephen-seo.github.io/TurnBasedMinecraftMod/server_config/#per-player-settings)
|
||||
|
||||
Update to Neoforge 21.1.73 (Minecraft 1.21.1).
|
||||
|
||||
# Version NeoForge-1.26.4
|
||||
|
||||
[Add support for "per-player-stats" in Turn-Based-Battle.](https://stephen-seo.github.io/TurnBasedMinecraftMod/server_config/#per-player-settings)
|
||||
|
||||
Update to NeoForge 21.3.6-beta (MC 1.21.3).
|
||||
|
||||
# Version Forge-1.26.3
|
||||
|
||||
Tweak to "Ping" packet to not create client-local Battle instance if it does
|
||||
not exist.
|
||||
|
||||
# Version NeoForge-1.26.3
|
||||
|
||||
Port to NeoForge 21.3.2-beta (MC 1.21.3).
|
||||
|
||||
Note that MC 1.21.1 (NeoForge 21.1.72) will still be supported in a separate
|
||||
branch (neoforge\_mc1.21.1) until MC version 1.22 is released.
|
||||
|
||||
Tweak to "Ping" packet to not create client-local Battle instance if it does
|
||||
not exist.
|
||||
|
||||
# Version NeoForge-1.26.3-MC-1.21.1
|
||||
|
||||
Tweak to "Ping" packet to not create client-local Battle instance if it does
|
||||
not exist.
|
||||
|
||||
# Version Forge-1.26.2
|
||||
|
||||
Show battling Entities next to their attack button in the BattleGUI.
|
||||
|
|
|
@ -11,6 +11,10 @@ https://www.curseforge.com/minecraft/mc-mods/turnbasedminecraft/files
|
|||
https://modrinth.com/mod/turnbasedmc
|
||||
https://git.seodisparate.com/stephenseo/TurnBasedMinecraftMod/releases
|
||||
|
||||
# Documentation Page
|
||||
|
||||
https://stephen-seo.github.io/TurnBasedMinecraftMod/
|
||||
|
||||
# Forge or NeoForge
|
||||
|
||||
The `forge` branch tracks the version of the mod for Minecraft Forge.
|
||||
|
@ -74,7 +78,7 @@ configured for them.)
|
|||
|
||||
Simply invoke `./gradlew build` in the mod directory and after some time the
|
||||
finished jar will be saved at
|
||||
`build/libs/TurnBasedMinecraft-NeoForge-1.26.2-all.jar`
|
||||
`build/libs/TurnBasedMinecraft-NeoForge-1.26.5-MC-1.21.1-all.jar`
|
||||
|
||||
# Reproducibility
|
||||
|
||||
|
|
|
@ -4,6 +4,84 @@ Starting with version 1.24.0 of this mod, this file will list what version of
|
|||
Java was used to compile the jars. In theory, using the same version of Java
|
||||
should result in an identical jar due to reproducible builds.
|
||||
|
||||
## NeoForge 1.26.4
|
||||
|
||||
$ java --version
|
||||
openjdk 21.0.5 2024-10-15
|
||||
OpenJDK Runtime Environment (build 21.0.5+11)
|
||||
OpenJDK 64-Bit Server VM (build 21.0.5+11, mixed mode, sharing)
|
||||
|
||||
$ javac --version
|
||||
javac 21.0.5
|
||||
|
||||
$ sha256sum build/libs/TurnBasedMinecraft-NeoForge-1.26.4-all.jar
|
||||
ddab3e58638ba70c7b10f84f4aa7ac81e8e5a63cb47d0ebf7e7aa4bcf3c0a1ba build/libs/TurnBasedMinecraft-NeoForge-1.26.4-all.jar
|
||||
|
||||
## NeoForge 1.26.4-MC-1.21.1
|
||||
|
||||
$ java --version
|
||||
openjdk 21.0.5 2024-10-15
|
||||
OpenJDK Runtime Environment (build 21.0.5+11)
|
||||
OpenJDK 64-Bit Server VM (build 21.0.5+11, mixed mode, sharing)
|
||||
|
||||
$ javac --version
|
||||
javac 21.0.5
|
||||
|
||||
$ sha256sum build/libs/TurnBasedMinecraft-NeoForge-1.26.4-MC-1.21.1-all.jar
|
||||
e49665c67452cae8fab8f356d187b860893885afbe6dab1e3a869331a12f1cf5 build/libs/TurnBasedMinecraft-NeoForge-1.26.4-MC-1.21.1-all.jar
|
||||
|
||||
## Forge 1.26.4
|
||||
|
||||
$ java --version
|
||||
openjdk 21.0.5 2024-10-15
|
||||
OpenJDK Runtime Environment (build 21.0.5+11)
|
||||
OpenJDK 64-Bit Server VM (build 21.0.5+11, mixed mode, sharing)
|
||||
|
||||
$ javac --version
|
||||
javac 21.0.5
|
||||
|
||||
$ sha256sum build/libs/TurnBasedMinecraft-Forge-1.26.4-all.jar
|
||||
2052b1e8f6a49374b6a9bbc0c0547c1972d5454ea9afa5f0455c534285d6cada build/libs/TurnBasedMinecraft-Forge-1.26.4-all.jar
|
||||
|
||||
## NeoForge 1.26.3
|
||||
|
||||
$ java --version
|
||||
openjdk 21.0.5 2024-10-15
|
||||
OpenJDK Runtime Environment (build 21.0.5+11)
|
||||
OpenJDK 64-Bit Server VM (build 21.0.5+11, mixed mode, sharing)
|
||||
|
||||
$ javac --version
|
||||
javac 21.0.5
|
||||
|
||||
$ sha256sum build/libs/TurnBasedMinecraft-NeoForge-1.26.3-all.jar
|
||||
2c8f17499a475f22493244e16f499bed46ea6a32a20f6bd2be5b3151464b2225 build/libs/TurnBasedMinecraft-NeoForge-1.26.3-all.jar
|
||||
|
||||
## NeoForge 1.26.3-MC-1.21.1
|
||||
|
||||
$ java --version
|
||||
openjdk 21.0.5 2024-10-15
|
||||
OpenJDK Runtime Environment (build 21.0.5+11)
|
||||
OpenJDK 64-Bit Server VM (build 21.0.5+11, mixed mode, sharing)
|
||||
|
||||
$ javac --version
|
||||
javac 21.0.5
|
||||
|
||||
$ sha256sum build/libs/TurnBasedMinecraft-NeoForge-1.26.3-MC-1.21.1-all.jar
|
||||
311018353109da4d9a49379d9ebc29dbac7e2aef3331ec177bd0edc300d15b89 /home/public/TurnBasedMC/TurnBasedMinecraft-NeoForge-1.26.3-MC-1.21.1-all.jar
|
||||
|
||||
## Forge 1.26.3
|
||||
|
||||
$ java --version
|
||||
openjdk 21.0.5 2024-10-15
|
||||
OpenJDK Runtime Environment (build 21.0.5+11)
|
||||
OpenJDK 64-Bit Server VM (build 21.0.5+11, mixed mode, sharing)
|
||||
|
||||
$ javac --version
|
||||
javac 21.0.5
|
||||
|
||||
$ sha256sum build/libs/TurnBasedMinecraft-Forge-1.26.3-all.jar
|
||||
5fdaffd14f75c2340a410c37811a5f7644ade3c6852db4b982bf3161bab1aae7 build/libs/TurnBasedMinecraft-Forge-1.26.3-all.jar
|
||||
|
||||
## NeoForge 1.26.2
|
||||
|
||||
$ java --version
|
||||
|
|
|
@ -21,7 +21,7 @@ minecraft_version=1.21.1
|
|||
minecraft_version_range=[1.21.1, 1.22)
|
||||
|
||||
# The Neo version must agree with the Minecraft version to get a valid artifact
|
||||
neo_version=21.1.72
|
||||
neo_version=21.1.74
|
||||
# The Neo version range can use any version of Neo as bounds
|
||||
neo_version_range=[21.1.0,)
|
||||
# The loader version range can only use the major version of FML as bounds
|
||||
|
@ -37,7 +37,7 @@ mod_name=TurnBasedMinecraftMod
|
|||
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
|
||||
mod_license=MIT
|
||||
# The mod version. See https://semver.org/
|
||||
mod_version=1.26.2
|
||||
mod_version=1.26.5-MC-1.21.1
|
||||
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
|
||||
# This should match the base package used for the mod sources.
|
||||
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||
|
|
|
@ -20,6 +20,7 @@ public class ClientConfigGui extends net.minecraft.client.gui.screens.Screen {
|
|||
private Checkbox affectedByMasterVolCheckbox = null;
|
||||
private Checkbox affectedByMusicVolCheckbox = null;
|
||||
private SliderPercentage volumeSlider = null;
|
||||
private Screen parentScreen = null;
|
||||
|
||||
public ClientConfigGui(ModContainer container, Screen parent) {
|
||||
super(Component.literal("TurnBasedMC Client Config"));
|
||||
|
@ -27,6 +28,8 @@ public class ClientConfigGui extends net.minecraft.client.gui.screens.Screen {
|
|||
dirtyFlag = true;
|
||||
|
||||
accepted = false;
|
||||
|
||||
this.parentScreen = parent;
|
||||
}
|
||||
|
||||
public void onDirty() {
|
||||
|
@ -175,7 +178,7 @@ public class ClientConfigGui extends net.minecraft.client.gui.screens.Screen {
|
|||
addRenderableWidget(volumeSlider);
|
||||
|
||||
addRenderableWidget(Button.builder(Component.literal("Cancel"),
|
||||
(b) -> Minecraft.getInstance().setScreen(null))
|
||||
(b) -> Minecraft.getInstance().setScreen(this.parentScreen))
|
||||
.bounds(this.width / 2 - widget_width + widget_x_offset,
|
||||
this.height - widget_height, widget_width, widget_height).build());
|
||||
addRenderableWidget(Button.builder(Component.literal("Accept"), (b) -> {
|
||||
|
@ -225,7 +228,7 @@ public class ClientConfigGui extends net.minecraft.client.gui.screens.Screen {
|
|||
public void render(GuiGraphics pGuiGraphics, int pMouseX, int pMouseY, float pPartialTick) {
|
||||
if (accepted) {
|
||||
doAccepted();
|
||||
Minecraft.getInstance().setScreen(null);
|
||||
Minecraft.getInstance().setScreen(this.parentScreen);
|
||||
return;
|
||||
}
|
||||
if (dirtyFlag) {
|
||||
|
|
|
@ -481,22 +481,27 @@ public class ClientProxy extends CommonProxy {
|
|||
MutableComponent text = Component.literal("Edit what value? ");
|
||||
text.setStyle(text.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)).withBold(false));
|
||||
|
||||
MutableComponent option = Component.literal("IgB");
|
||||
// HoverEvent.Action.SHOW_TEXT is probably SHOW_TEXT
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit ignoreBattle"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("IgnoreBattle"))));
|
||||
MutableComponent value = Component.literal("(" + pkt.getEntityInfo().ignoreBattle + ") ");
|
||||
value.setStyle(value.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)));
|
||||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
MutableComponent option;
|
||||
MutableComponent value;
|
||||
|
||||
option = Component.literal("AP");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit attackPower"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("AttackPower"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().attackPower + ") ");
|
||||
value.setStyle(value.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)));
|
||||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
if (pkt.getEntityInfo().playerName.isEmpty()) {
|
||||
option = Component.literal("IgB");
|
||||
// HoverEvent.Action.SHOW_TEXT is probably SHOW_TEXT
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit ignoreBattle"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("IgnoreBattle"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().ignoreBattle + ") ");
|
||||
value.setStyle(value.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)));
|
||||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
|
||||
option = Component.literal("AP");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit attackPower"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("AttackPower"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().attackPower + ") ");
|
||||
value.setStyle(value.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)));
|
||||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
}
|
||||
|
||||
option = Component.literal("APr");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit attackProbability"))
|
||||
|
@ -506,13 +511,15 @@ public class ClientProxy extends CommonProxy {
|
|||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
|
||||
option = Component.literal("AV");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit attackVariance"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("AttackVariance"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().attackVariance + ") ");
|
||||
value.setStyle(value.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)));
|
||||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
if (pkt.getEntityInfo().playerName.isEmpty()) {
|
||||
option = Component.literal("AV");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit attackVariance"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("AttackVariance"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().attackVariance + ") ");
|
||||
value.setStyle(value.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)));
|
||||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
}
|
||||
|
||||
option = Component.literal("AE");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit attackEffect"))
|
||||
|
@ -530,21 +537,23 @@ public class ClientProxy extends CommonProxy {
|
|||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
|
||||
option = Component.literal("DD");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit defenseDamage"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("DefenseDamage"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().defenseDamage + ") ");
|
||||
value.setStyle(value.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)));
|
||||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
if (pkt.getEntityInfo().playerName.isEmpty()) {
|
||||
option = Component.literal("DD");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit defenseDamage"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("DefenseDamage"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().defenseDamage + ") ");
|
||||
value.setStyle(value.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)));
|
||||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
|
||||
option = Component.literal("DDPr");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit defenseDamageProbability"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("DefenseDamageProbability"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().defenseDamageProbability + "%) ");
|
||||
value.setStyle(value.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)));
|
||||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
option = Component.literal("DDPr");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit defenseDamageProbability"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("DefenseDamageProbability"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().defenseDamageProbability + "%) ");
|
||||
value.setStyle(value.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)));
|
||||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
}
|
||||
|
||||
option = Component.literal("E");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit evasion"))
|
||||
|
@ -562,37 +571,55 @@ public class ClientProxy extends CommonProxy {
|
|||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
|
||||
option = Component.literal("C");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit category"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("Category"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().category + ") ");
|
||||
option = Component.literal("HS");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit hasteSpeed"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("HasteSpeed"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().hasteSpeed + ") ");
|
||||
value.setStyle(value.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)));
|
||||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
|
||||
option = Component.literal("DecA");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit decisionAttack"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("DecisionAttack"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().decisionAttack + "%) ");
|
||||
option = Component.literal("SS");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit slowSpeed"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("SlowSpeed"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().slowSpeed + ") ");
|
||||
value.setStyle(value.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)));
|
||||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
|
||||
option = Component.literal("DecD");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit decisionDefend"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("DecisionDefend"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().decisionDefend + "%) ");
|
||||
value.setStyle(value.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)));
|
||||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
if (pkt.getEntityInfo().playerName.isEmpty()) {
|
||||
option = Component.literal("C");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit category"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("Category"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().category + ") ");
|
||||
value.setStyle(value.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)));
|
||||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
|
||||
option = Component.literal("DecF");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit decisionFlee"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("DecisionFlee"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().decisionFlee + "%) ");
|
||||
value.setStyle(value.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)));
|
||||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
option = Component.literal("DecA");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit decisionAttack"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("DecisionAttack"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().decisionAttack + "%) ");
|
||||
value.setStyle(value.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)));
|
||||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
|
||||
option = Component.literal("DecD");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit decisionDefend"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("DecisionDefend"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().decisionDefend + "%) ");
|
||||
value.setStyle(value.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)));
|
||||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
|
||||
option = Component.literal("DecF");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit decisionFlee"))
|
||||
.withHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, Component.literal("DecisionFlee"))));
|
||||
value = Component.literal("(" + pkt.getEntityInfo().decisionFlee + "%) ");
|
||||
value.setStyle(value.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)));
|
||||
option.getSiblings().add(value);
|
||||
text.getSiblings().add(option);
|
||||
}
|
||||
|
||||
option = Component.literal("Finished Editing");
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFF00FF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit finish")));
|
||||
|
@ -1302,6 +1329,44 @@ public class ClientProxy extends CommonProxy {
|
|||
TurnBasedMinecraftMod.proxy.displayComponent(parentComponent);
|
||||
break;
|
||||
}
|
||||
case EDIT_HASTE_SPEED: {
|
||||
MutableComponent text = Component.literal("haste speed: ");
|
||||
text.setStyle(text.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)).withBold(false));
|
||||
|
||||
for (int i = 0; i <= 100; i += 10) {
|
||||
MutableComponent option = Component.literal(Integer.toString(i));
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit hasteSpeed " + Integer.toString(i))));
|
||||
text.getSiblings().add(option);
|
||||
if (i < 100) {
|
||||
text.getSiblings().add(Component.literal(", "));
|
||||
}
|
||||
}
|
||||
|
||||
text.getSiblings().add(Component.literal(" (or use command \"/tbm-edit edit hasteSpeed <integer>\")"));
|
||||
|
||||
parentComponent.getSiblings().add(text);
|
||||
TurnBasedMinecraftMod.proxy.displayComponent(parentComponent);
|
||||
break;
|
||||
}
|
||||
case EDIT_SLOW_SPEED: {
|
||||
MutableComponent text = Component.literal("slow speed: ");
|
||||
text.setStyle(text.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)).withBold(false));
|
||||
|
||||
for (int i = 0; i <= 100; i += 10) {
|
||||
MutableComponent option = Component.literal(Integer.toString(i));
|
||||
option.setStyle(option.getStyle().withColor(TextColor.fromRgb(0xFFFFFF00)).withClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/tbm-edit edit slowSpeed " + Integer.toString(i))));
|
||||
text.getSiblings().add(option);
|
||||
if (i < 100) {
|
||||
text.getSiblings().add(Component.literal(", "));
|
||||
}
|
||||
}
|
||||
|
||||
text.getSiblings().add(Component.literal(" (or use command \"/tbm-edit edit slowSpeed <integer>\")"));
|
||||
|
||||
parentComponent.getSiblings().add(text);
|
||||
TurnBasedMinecraftMod.proxy.displayComponent(parentComponent);
|
||||
break;
|
||||
}
|
||||
case EDIT_CATEGORY: {
|
||||
MutableComponent text = Component.literal("category: ");
|
||||
text.setStyle(text.getStyle().withColor(TextColor.fromRgb(0xFFFFFFFF)).withBold(false));
|
||||
|
@ -1472,6 +1537,10 @@ public class ClientProxy extends CommonProxy {
|
|||
TurnBasedMinecraftMod.proxy.displayComponent(parentComponent);
|
||||
break;
|
||||
}
|
||||
case PICK_PLAYER: {
|
||||
TurnBasedMinecraftMod.proxy.displayString("Use \"/tbm-edit player <player_name>\"");
|
||||
break;
|
||||
}
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -134,6 +134,9 @@ public class Battle {
|
|||
} catch (NullPointerException exception) {
|
||||
entityInfo = null;
|
||||
}
|
||||
if (entityInfo == null) {
|
||||
entityInfo = TurnBasedMinecraftMod.proxy.getConfig().getPlayerInfo(e.getName().getString());
|
||||
}
|
||||
if (entityInfo == null) {
|
||||
entityInfo = TurnBasedMinecraftMod.proxy.getConfig().getMatchingEntityInfo(e);
|
||||
}
|
||||
|
@ -166,6 +169,9 @@ public class Battle {
|
|||
} catch (NullPointerException exception) {
|
||||
entityInfo = null;
|
||||
}
|
||||
if (entityInfo == null) {
|
||||
entityInfo = TurnBasedMinecraftMod.proxy.getConfig().getPlayerInfo(e.getName().getString());
|
||||
}
|
||||
if (entityInfo == null) {
|
||||
entityInfo = TurnBasedMinecraftMod.proxy.getConfig().getMatchingEntityInfo(e);
|
||||
}
|
||||
|
@ -268,6 +274,9 @@ public class Battle {
|
|||
} catch (NullPointerException exception) {
|
||||
entityInfo = null;
|
||||
}
|
||||
if (entityInfo == null) {
|
||||
entityInfo = TurnBasedMinecraftMod.proxy.getConfig().getPlayerInfo(e.getName().getString());
|
||||
}
|
||||
if (entityInfo == null) {
|
||||
entityInfo = TurnBasedMinecraftMod.proxy.getConfig().getMatchingEntityInfo(e);
|
||||
}
|
||||
|
@ -316,6 +325,9 @@ public class Battle {
|
|||
} catch (NullPointerException exception) {
|
||||
entityInfo = null;
|
||||
}
|
||||
if (entityInfo == null) {
|
||||
entityInfo = TurnBasedMinecraftMod.proxy.getConfig().getPlayerInfo(e.getName().getString());
|
||||
}
|
||||
if (entityInfo == null) {
|
||||
entityInfo = TurnBasedMinecraftMod.proxy.getConfig().getMatchingEntityInfo(e);
|
||||
}
|
||||
|
@ -781,7 +793,7 @@ public class Battle {
|
|||
case ATTACK:
|
||||
debugLog += " attack";
|
||||
Combatant target = null;
|
||||
if (next.entity instanceof Player) {
|
||||
if (next.entity instanceof Player player) {
|
||||
debugLog += " as player";
|
||||
target = sideA.get(next.targetEntityID);
|
||||
if (target == null) {
|
||||
|
@ -790,15 +802,15 @@ public class Battle {
|
|||
if (target == null || !target.entity.isAlive() || target == next) {
|
||||
continue;
|
||||
}
|
||||
ItemStack heldItemStack = ((Player) next.entity).getMainHandItem();
|
||||
ItemStack heldItemStack = player.getMainHandItem();
|
||||
if (heldItemStack.getItem() instanceof BowItem) {
|
||||
debugLog += " with bow";
|
||||
if (Utility.doesPlayerHaveArrows((Player) next.entity)) {
|
||||
if (Utility.doesPlayerHaveArrows(player)) {
|
||||
final Entity nextEntity = next.entity;
|
||||
final Entity targetEntity = target.entity;
|
||||
final float yawDirection = Utility.yawDirection(next.entity.getX(), next.entity.getZ(), target.entity.getX(), target.entity.getZ());
|
||||
final float pitchDirection = Utility.pitchDirection(next.entity.getX(), next.entity.getY(), next.entity.getZ(), target.entity.getX(), target.entity.getY(), target.entity.getZ());
|
||||
final int randomTimeLeft = random.nextInt(heldItemStack.getItem().getUseDuration(heldItemStack, (LivingEntity)next.entity) / 3);
|
||||
final int randomTimeLeft = random.nextInt(heldItemStack.getItem().getUseDuration(heldItemStack, player) / 3);
|
||||
if (TurnBasedMinecraftMod.proxy.getConfig().isFreezeCombatantsEnabled()) {
|
||||
next.yaw = yawDirection;
|
||||
next.pitch = pitchDirection;
|
||||
|
@ -815,7 +827,7 @@ public class Battle {
|
|||
continue;
|
||||
} else if (heldItemStack.getItem() instanceof CrossbowItem) {
|
||||
debugLog += " with crossbow";
|
||||
if (Utility.doesPlayerHaveArrows((Player) next.entity)) {
|
||||
if (Utility.doesPlayerHaveArrows(player)) {
|
||||
final Entity nextEntity = next.entity;
|
||||
final Entity targetEntity = target.entity;
|
||||
final float yawDirection = Utility.yawDirection(next.entity.getX(), next.entity.getZ(), target.entity.getX(), target.entity.getZ());
|
||||
|
@ -837,9 +849,18 @@ public class Battle {
|
|||
continue;
|
||||
}
|
||||
debugLog += " without bow";
|
||||
int hitChance = TurnBasedMinecraftMod.proxy.getConfig().getPlayerAttackProbability();
|
||||
int hitChance;
|
||||
if (next.entityInfo != null && !next.entityInfo.playerName.isEmpty()) {
|
||||
hitChance = next.entityInfo.attackProbability;
|
||||
} else {
|
||||
hitChance = TurnBasedMinecraftMod.proxy.getConfig().getPlayerAttackProbability();
|
||||
}
|
||||
if (target.entity instanceof Player) {
|
||||
hitChance = hitChance * (100 - TurnBasedMinecraftMod.proxy.getConfig().getPlayerEvasion()) / 100;
|
||||
if (target.entityInfo != null && !target.entityInfo.playerName.isEmpty()) {
|
||||
hitChance = hitChance * (100 - target.entityInfo.evasion) / 100;
|
||||
} else {
|
||||
hitChance = hitChance * (100 - TurnBasedMinecraftMod.proxy.getConfig().getPlayerEvasion()) / 100;
|
||||
}
|
||||
} else {
|
||||
hitChance = hitChance * (100 - target.entityInfo.evasion) / 100;
|
||||
}
|
||||
|
@ -876,6 +897,13 @@ public class Battle {
|
|||
((Player) nextEntity).attack(targetEntity);
|
||||
TurnBasedMinecraftMod.proxy.setAttackingEntity(null);
|
||||
sendMessageToAllPlayers(PacketBattleMessage.MessageType.ATTACK, nextEntity.getId(), targetEntity.getId(), TurnBasedMinecraftMod.proxy.getAttackingDamage());
|
||||
// Attack effect
|
||||
if (next.entityInfo != null && next.entityInfo.attackEffect != EntityInfo.Effect.UNKNOWN && next.entityInfo.attackEffectProbability > 0) {
|
||||
if (random.nextInt(100) < next.entityInfo.attackEffectProbability) {
|
||||
next.entityInfo.attackEffect.applyEffectToEntity((LivingEntity)targetEntity);
|
||||
sendMessageToAllPlayers(PacketBattleMessage.MessageType.WAS_AFFECTED, nextEntity.getId(), targetEntity.getId(), 0, next.entityInfo.attackEffect.getAffectedString());
|
||||
}
|
||||
}
|
||||
if (defenseDamageTriggered) {
|
||||
// defense damage
|
||||
DamageSource defenseDamageSource = targetEntity.damageSources().mobAttack((LivingEntity) targetEntity);
|
||||
|
@ -1020,48 +1048,111 @@ public class Battle {
|
|||
int fastestEnemySpeed = 0;
|
||||
if (next.isSideA) {
|
||||
for (Combatant c : sideB.values()) {
|
||||
if (c.entity instanceof Player) {
|
||||
int playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSpeed();
|
||||
if (((Player) c.entity).hasEffect(MobEffects.MOVEMENT_SPEED)) {
|
||||
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerHasteSpeed();
|
||||
} else if (((Player) c.entity).hasEffect(MobEffects.MOVEMENT_SLOWDOWN)) {
|
||||
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSlowSpeed();
|
||||
if (c.entity instanceof Player player) {
|
||||
int playerSpeed;
|
||||
if (c.entityInfo != null && !c.entityInfo.playerName.isEmpty()) {
|
||||
playerSpeed = c.entityInfo.speed;
|
||||
} else {
|
||||
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSpeed();
|
||||
}
|
||||
if (player.hasEffect(MobEffects.MOVEMENT_SPEED)) {
|
||||
if (c.entityInfo != null && !c.entityInfo.playerName.isEmpty()) {
|
||||
playerSpeed = c.entityInfo.hasteSpeed;
|
||||
} else {
|
||||
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerHasteSpeed();
|
||||
}
|
||||
} else if (player.hasEffect(MobEffects.MOVEMENT_SLOWDOWN)) {
|
||||
if (c.entityInfo != null && !c.entityInfo.playerName.isEmpty()) {
|
||||
playerSpeed = c.entityInfo.slowSpeed;
|
||||
} else {
|
||||
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSlowSpeed();
|
||||
}
|
||||
}
|
||||
if (playerSpeed > fastestEnemySpeed) {
|
||||
fastestEnemySpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSpeed();
|
||||
}
|
||||
} else {
|
||||
if (c.entityInfo.speed > fastestEnemySpeed) {
|
||||
if (c.entity instanceof LivingEntity livingEntity) {
|
||||
if (livingEntity.hasEffect(MobEffects.MOVEMENT_SPEED)) {
|
||||
if (c.entityInfo.hasteSpeed > fastestEnemySpeed) {
|
||||
fastestEnemySpeed = c.entityInfo.hasteSpeed;
|
||||
}
|
||||
} else if (livingEntity.hasEffect(MobEffects.MOVEMENT_SLOWDOWN)) {
|
||||
if (c.entityInfo.slowSpeed > fastestEnemySpeed) {
|
||||
fastestEnemySpeed = c.entityInfo.slowSpeed;
|
||||
}
|
||||
} else if (c.entityInfo.speed > fastestEnemySpeed) {
|
||||
fastestEnemySpeed = c.entityInfo.speed;
|
||||
}
|
||||
} else if (c.entityInfo.speed > fastestEnemySpeed) {
|
||||
fastestEnemySpeed = c.entityInfo.speed;
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
for (Combatant c : sideA.values()) {
|
||||
if (c.entity instanceof Player) {
|
||||
int playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSpeed();
|
||||
if (((Player) c.entity).hasEffect(MobEffects.MOVEMENT_SPEED)) {
|
||||
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerHasteSpeed();
|
||||
} else if (((Player) c.entity).hasEffect(MobEffects.MOVEMENT_SLOWDOWN)) {
|
||||
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSlowSpeed();
|
||||
if (c.entity instanceof Player player) {
|
||||
int playerSpeed;
|
||||
if (c.entityInfo != null && !c.entityInfo.playerName.isEmpty()) {
|
||||
playerSpeed = c.entityInfo.speed;
|
||||
} else {
|
||||
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSpeed();
|
||||
}
|
||||
if (player.hasEffect(MobEffects.MOVEMENT_SPEED)) {
|
||||
if (c.entityInfo != null && !c.entityInfo.playerName.isEmpty()) {
|
||||
playerSpeed = c.entityInfo.hasteSpeed;
|
||||
} else {
|
||||
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerHasteSpeed();
|
||||
}
|
||||
} else if (player.hasEffect(MobEffects.MOVEMENT_SLOWDOWN)) {
|
||||
if (c.entityInfo != null && !c.entityInfo.playerName.isEmpty()) {
|
||||
playerSpeed = c.entityInfo.slowSpeed;
|
||||
} else {
|
||||
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSlowSpeed();
|
||||
}
|
||||
}
|
||||
if (playerSpeed > fastestEnemySpeed) {
|
||||
fastestEnemySpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSpeed();
|
||||
}
|
||||
} else {
|
||||
if (c.entityInfo.speed > fastestEnemySpeed) {
|
||||
if (c.entity instanceof LivingEntity livingEntity) {
|
||||
if (livingEntity.hasEffect(MobEffects.MOVEMENT_SPEED)) {
|
||||
if (c.entityInfo.hasteSpeed > fastestEnemySpeed) {
|
||||
fastestEnemySpeed = c.entityInfo.hasteSpeed;
|
||||
}
|
||||
} else if (livingEntity.hasEffect(MobEffects.MOVEMENT_SLOWDOWN)) {
|
||||
if (c.entityInfo.slowSpeed > fastestEnemySpeed) {
|
||||
fastestEnemySpeed = c.entityInfo.slowSpeed;
|
||||
}
|
||||
} else if (c.entityInfo.speed > fastestEnemySpeed) {
|
||||
fastestEnemySpeed = c.entityInfo.speed;
|
||||
}
|
||||
} else if (c.entityInfo.speed > fastestEnemySpeed) {
|
||||
fastestEnemySpeed = c.entityInfo.speed;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
int fleeProbability = 0;
|
||||
if (next.entity instanceof Player) {
|
||||
int playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSpeed();
|
||||
if (((Player) next.entity).hasEffect(MobEffects.MOVEMENT_SPEED)) {
|
||||
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerHasteSpeed();
|
||||
} else if (((Player) next.entity).hasEffect(MobEffects.MOVEMENT_SLOWDOWN)) {
|
||||
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSlowSpeed();
|
||||
if (next.entity instanceof Player player) {
|
||||
int playerSpeed;
|
||||
if (next.entityInfo != null && !next.entityInfo.playerName.isEmpty()) {
|
||||
playerSpeed = next.entityInfo.speed;
|
||||
} else {
|
||||
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSpeed();
|
||||
}
|
||||
if (player.hasEffect(MobEffects.MOVEMENT_SPEED)) {
|
||||
if (next.entityInfo != null && !next.entityInfo.playerName.isEmpty()) {
|
||||
playerSpeed = next.entityInfo.hasteSpeed;
|
||||
} else {
|
||||
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerHasteSpeed();
|
||||
}
|
||||
} else if (player.hasEffect(MobEffects.MOVEMENT_SLOWDOWN)) {
|
||||
if (next.entityInfo != null && !next.entityInfo.playerName.isEmpty()) {
|
||||
playerSpeed = next.entityInfo.slowSpeed;
|
||||
} else {
|
||||
playerSpeed = TurnBasedMinecraftMod.proxy.getConfig().getPlayerSlowSpeed();
|
||||
}
|
||||
}
|
||||
if (fastestEnemySpeed >= playerSpeed) {
|
||||
fleeProbability = TurnBasedMinecraftMod.proxy.getConfig().getFleeBadProbability();
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -8,6 +8,7 @@ public class EditingInfo
|
|||
public EntityInfo entityInfo;
|
||||
public boolean isPendingEntitySelection;
|
||||
public boolean isEditingCustomName;
|
||||
public boolean isEditingPlayer;
|
||||
|
||||
public EditingInfo()
|
||||
{
|
||||
|
@ -15,6 +16,7 @@ public class EditingInfo
|
|||
entityInfo = null;
|
||||
isPendingEntitySelection = true;
|
||||
isEditingCustomName = false;
|
||||
isEditingPlayer = false;
|
||||
}
|
||||
|
||||
public EditingInfo(Player player)
|
||||
|
@ -23,5 +25,6 @@ public class EditingInfo
|
|||
entityInfo = null;
|
||||
isPendingEntitySelection = true;
|
||||
isEditingCustomName = false;
|
||||
isEditingPlayer = false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -20,11 +20,14 @@ public class EntityInfo
|
|||
public int defenseDamageProbability;
|
||||
public int evasion;
|
||||
public int speed;
|
||||
public int hasteSpeed;
|
||||
public int slowSpeed;
|
||||
public String category;
|
||||
public int decisionAttack;
|
||||
public int decisionDefend;
|
||||
public int decisionFlee;
|
||||
public String customName;
|
||||
public String playerName;
|
||||
|
||||
public enum Effect
|
||||
{
|
||||
|
@ -369,17 +372,20 @@ public class EntityInfo
|
|||
defenseDamageProbability = 0;
|
||||
evasion = 15;
|
||||
speed = 50;
|
||||
hasteSpeed = 80;
|
||||
slowSpeed = 20;
|
||||
category = "unknown";
|
||||
decisionAttack = 70;
|
||||
decisionDefend = 20;
|
||||
decisionFlee = 10;
|
||||
customName = new String();
|
||||
playerName = new String();
|
||||
}
|
||||
|
||||
public EntityInfo(Class classType, boolean ignoreBattle, int attackPower, int attackProbability, int attackVariance,
|
||||
Effect attackEffect, int attackEffectProbability, int defenseDamage, int defenseDamageProbability,
|
||||
int evasion, int speed, String category, int decisionAttack, int decisionDefend, int decisionFlee,
|
||||
String customName) {
|
||||
int evasion, int speed, int hasteSpeed, int slowSpeed, String category, int decisionAttack, int decisionDefend, int decisionFlee,
|
||||
String customName, String playerName) {
|
||||
this.classType = classType;
|
||||
this.ignoreBattle = ignoreBattle;
|
||||
this.attackPower = attackPower;
|
||||
|
@ -391,11 +397,14 @@ public class EntityInfo
|
|||
this.defenseDamageProbability = defenseDamageProbability;
|
||||
this.evasion = evasion;
|
||||
this.speed = speed;
|
||||
this.hasteSpeed = hasteSpeed;
|
||||
this.slowSpeed = slowSpeed;
|
||||
this.category = category;
|
||||
this.decisionAttack = decisionAttack;
|
||||
this.decisionDefend = decisionDefend;
|
||||
this.decisionFlee = decisionFlee;
|
||||
this.customName = customName;
|
||||
this.playerName = playerName;
|
||||
}
|
||||
|
||||
public EntityInfo clone()
|
||||
|
@ -412,11 +421,14 @@ public class EntityInfo
|
|||
newEntityInfo.defenseDamageProbability = defenseDamageProbability;
|
||||
newEntityInfo.evasion = evasion;
|
||||
newEntityInfo.speed = speed;
|
||||
newEntityInfo.hasteSpeed = hasteSpeed;
|
||||
newEntityInfo.slowSpeed = slowSpeed;
|
||||
newEntityInfo.category = category;
|
||||
newEntityInfo.decisionAttack = decisionAttack;
|
||||
newEntityInfo.decisionDefend = decisionDefend;
|
||||
newEntityInfo.decisionFlee = decisionFlee;
|
||||
newEntityInfo.customName = new String(customName);
|
||||
newEntityInfo.customName = customName;
|
||||
newEntityInfo.playerName = playerName;
|
||||
return newEntityInfo;
|
||||
}
|
||||
|
||||
|
@ -448,6 +460,8 @@ public class EntityInfo
|
|||
defenseDamageProbability = buffer.readInt();
|
||||
evasion = buffer.readInt();
|
||||
speed = buffer.readInt();
|
||||
hasteSpeed = buffer.readInt();
|
||||
slowSpeed = buffer.readInt();
|
||||
|
||||
int category_len = buffer.readInt();
|
||||
ByteBuf category_bytes = buffer.readBytes(category_len);
|
||||
|
@ -464,6 +478,14 @@ public class EntityInfo
|
|||
} else {
|
||||
customName = "";
|
||||
}
|
||||
|
||||
int player_len = buffer.readInt();
|
||||
if (player_len > 0) {
|
||||
ByteBuf player_bytes = buffer.readBytes(player_len);
|
||||
playerName = player_bytes.toString(StandardCharsets.UTF_8);
|
||||
} else {
|
||||
playerName = "";
|
||||
}
|
||||
}
|
||||
|
||||
public void encode(ByteBuf buffer) {
|
||||
|
@ -491,6 +513,8 @@ public class EntityInfo
|
|||
buffer.writeInt(defenseDamageProbability);
|
||||
buffer.writeInt(evasion);
|
||||
buffer.writeInt(speed);
|
||||
buffer.writeInt(hasteSpeed);
|
||||
buffer.writeInt(slowSpeed);
|
||||
|
||||
byte[] category_bytes = category.getBytes(StandardCharsets.UTF_8);
|
||||
buffer.writeInt(category_bytes.length);
|
||||
|
@ -507,5 +531,13 @@ public class EntityInfo
|
|||
buffer.writeInt(custom_bytes.length);
|
||||
buffer.writeBytes(custom_bytes);
|
||||
}
|
||||
|
||||
if (playerName.isEmpty()) {
|
||||
buffer.writeInt(0);
|
||||
} else {
|
||||
byte[] player_bytes = playerName.getBytes(StandardCharsets.UTF_8);
|
||||
buffer.writeInt(player_bytes.length);
|
||||
buffer.writeBytes(player_bytes);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -41,7 +41,7 @@ import org.apache.logging.log4j.Logger;
|
|||
public class TurnBasedMinecraftMod {
|
||||
public static final String MODID = "com_burnedkirby_turnbasedminecraft";
|
||||
public static final String NAME = "Turn Based Minecraft Mod";
|
||||
public static final String VERSION = "1.26.2";
|
||||
public static final String VERSION = "1.26.5-MC-1.21.1";
|
||||
public static final String CONFIG_FILENAME = "TBM_Config.toml";
|
||||
public static final String DEFAULT_CONFIG_FILENAME = "TBM_Config_DEFAULT.toml";
|
||||
public static final String CONFIG_DIRECTORY = "config/TurnBasedMinecraft/";
|
||||
|
@ -153,7 +153,6 @@ public class TurnBasedMinecraftMod {
|
|||
for (ServerPlayer player : c.getSource().getServer().getPlayerList().getPlayers()) {
|
||||
proxy.getConfig().addBattleIgnoringPlayer(player.getId());
|
||||
PacketDistributor.sendToPlayer(player, new PacketGeneralMessage("OP disabled turn-based-combat for everyone"));
|
||||
PacketDistributor.sendToPlayer(player, new PacketGeneralMessage("OP disabled turn-based-combat for everyone"));
|
||||
}
|
||||
return 1;
|
||||
}));
|
||||
|
@ -267,6 +266,30 @@ public class TurnBasedMinecraftMod {
|
|||
}
|
||||
return 1;
|
||||
}))
|
||||
.then(Commands.literal("player")
|
||||
.executes(c -> {
|
||||
ServerPlayer player = c.getSource().getPlayerOrException();
|
||||
PacketDistributor.sendToPlayer(player, new PacketEditingMessage(PacketEditingMessage.Type.PICK_PLAYER));
|
||||
return 1;
|
||||
})
|
||||
.then(Commands.argument("playerName", StringArgumentType.greedyString()).executes(c -> {
|
||||
String name = StringArgumentType.getString(c, "playerName");
|
||||
ServerPlayer player = c.getSource().getPlayerOrException();
|
||||
PacketDistributor.sendToPlayer(player, new PacketGeneralMessage("Editing player \"" + name + "\""));
|
||||
TurnBasedMinecraftMod.logger.info("Begin editing player \"" + name + "\"");
|
||||
proxy.setEditingPlayer(player);
|
||||
EditingInfo editInfo = proxy.getEditingInfo(player.getId());
|
||||
editInfo.isEditingPlayer = true;
|
||||
editInfo.entityInfo = TurnBasedMinecraftMod.proxy.getConfig().getPlayerInfo(name);
|
||||
if (editInfo.entityInfo == null) {
|
||||
editInfo.entityInfo = new EntityInfo();
|
||||
}
|
||||
editInfo.entityInfo.playerName = name;
|
||||
editInfo.isPendingEntitySelection = false;
|
||||
PacketDistributor.sendToPlayer(player, new PacketEditingMessage(PacketEditingMessage.Type.PICK_EDIT, editInfo.entityInfo));
|
||||
return 1;
|
||||
}))
|
||||
)
|
||||
.then(Commands.literal("edit")
|
||||
.executes(c -> {
|
||||
ServerPlayer player = c.getSource().getPlayerOrException();
|
||||
|
@ -590,11 +613,45 @@ public class TurnBasedMinecraftMod {
|
|||
}))
|
||||
)
|
||||
.then(Commands.literal("speed")
|
||||
.executes(c -> {
|
||||
ServerPlayer player = c.getSource().getPlayerOrException();
|
||||
EditingInfo editingInfo = TurnBasedMinecraftMod.proxy.getEditingInfo(player.getId());
|
||||
if (editingInfo != null && !editingInfo.isPendingEntitySelection) {
|
||||
PacketDistributor.sendToPlayer(player, new PacketEditingMessage(PacketEditingMessage.Type.EDIT_SPEED));
|
||||
} else if (editingInfo != null) {
|
||||
PacketDistributor.sendToPlayer(player, new PacketEditingMessage(PacketEditingMessage.Type.ATTACK_ENTITY));
|
||||
} else {
|
||||
Message exceptionMessage = new LiteralMessage("Cannot edit entity without starting editing (use \"/tbm-edit\").");
|
||||
throw new CommandSyntaxException(new SimpleCommandExceptionType(exceptionMessage), exceptionMessage);
|
||||
}
|
||||
return 1;
|
||||
})
|
||||
.then(Commands.argument("speed", IntegerArgumentType.integer())
|
||||
.executes(c -> {
|
||||
ServerPlayer player = c.getSource().getPlayerOrException();
|
||||
EditingInfo editingInfo = TurnBasedMinecraftMod.proxy.getEditingInfo(player.getId());
|
||||
int speed = IntegerArgumentType.getInteger(c, "speed");
|
||||
if (speed < 0) {
|
||||
speed = 0;
|
||||
}
|
||||
if (editingInfo != null && !editingInfo.isPendingEntitySelection) {
|
||||
editingInfo.entityInfo.speed = speed;
|
||||
PacketDistributor.sendToPlayer(player, new PacketEditingMessage(PacketEditingMessage.Type.PICK_EDIT, editingInfo.entityInfo));
|
||||
} else if (editingInfo != null) {
|
||||
PacketDistributor.sendToPlayer(player, new PacketEditingMessage(PacketEditingMessage.Type.ATTACK_ENTITY));
|
||||
} else {
|
||||
Message exceptionMessage = new LiteralMessage("Cannot edit entity without starting editing (use \"/tbm-edit\").");
|
||||
throw new CommandSyntaxException(new SimpleCommandExceptionType(exceptionMessage), exceptionMessage);
|
||||
}
|
||||
return 1;
|
||||
}))
|
||||
)
|
||||
.then(Commands.literal("hasteSpeed")
|
||||
.executes(c -> {
|
||||
ServerPlayer player = c.getSource().getPlayerOrException();
|
||||
EditingInfo editingInfo = TurnBasedMinecraftMod.proxy.getEditingInfo(player.getId());
|
||||
if (editingInfo != null && !editingInfo.isPendingEntitySelection) {
|
||||
PacketDistributor.sendToPlayer(player, new PacketEditingMessage(PacketEditingMessage.Type.EDIT_SPEED));
|
||||
PacketDistributor.sendToPlayer(player, new PacketEditingMessage(PacketEditingMessage.Type.EDIT_HASTE_SPEED));
|
||||
} else if (editingInfo != null) {
|
||||
PacketDistributor.sendToPlayer(player, new PacketEditingMessage(PacketEditingMessage.Type.ATTACK_ENTITY));
|
||||
} else {
|
||||
|
@ -603,16 +660,16 @@ public class TurnBasedMinecraftMod {
|
|||
}
|
||||
return 1;
|
||||
})
|
||||
.then(Commands.argument("speed", IntegerArgumentType.integer())
|
||||
.then(Commands.argument("hasteSpeed", IntegerArgumentType.integer())
|
||||
.executes(c -> {
|
||||
ServerPlayer player = c.getSource().getPlayerOrException();
|
||||
EditingInfo editingInfo = TurnBasedMinecraftMod.proxy.getEditingInfo(player.getId());
|
||||
int speed = IntegerArgumentType.getInteger(c, "speed");
|
||||
if (speed < 0) {
|
||||
speed = 0;
|
||||
int hasteSpeed = IntegerArgumentType.getInteger(c, "hasteSpeed");
|
||||
if (hasteSpeed < 0) {
|
||||
hasteSpeed = 0;
|
||||
}
|
||||
if (editingInfo != null && !editingInfo.isPendingEntitySelection) {
|
||||
editingInfo.entityInfo.speed = speed;
|
||||
editingInfo.entityInfo.hasteSpeed = hasteSpeed;
|
||||
PacketDistributor.sendToPlayer(player, new PacketEditingMessage(PacketEditingMessage.Type.PICK_EDIT, editingInfo.entityInfo));
|
||||
} else if (editingInfo != null) {
|
||||
PacketDistributor.sendToPlayer(player, new PacketEditingMessage(PacketEditingMessage.Type.ATTACK_ENTITY));
|
||||
|
@ -623,6 +680,40 @@ public class TurnBasedMinecraftMod {
|
|||
return 1;
|
||||
}))
|
||||
)
|
||||
.then(Commands.literal("slowSpeed")
|
||||
.executes(c -> {
|
||||
ServerPlayer player = c.getSource().getPlayerOrException();
|
||||
EditingInfo editingInfo = TurnBasedMinecraftMod.proxy.getEditingInfo(player.getId());
|
||||
if (editingInfo != null && !editingInfo.isPendingEntitySelection) {
|
||||
PacketDistributor.sendToPlayer(player, new PacketEditingMessage(PacketEditingMessage.Type.EDIT_SLOW_SPEED));
|
||||
} else if (editingInfo != null) {
|
||||
PacketDistributor.sendToPlayer(player, new PacketEditingMessage(PacketEditingMessage.Type.ATTACK_ENTITY));
|
||||
} else {
|
||||
Message exceptionMessage = new LiteralMessage("Cannot edit entity without starting editing (use \"/tbm-edit\").");
|
||||
throw new CommandSyntaxException(new SimpleCommandExceptionType(exceptionMessage), exceptionMessage);
|
||||
}
|
||||
return 1;
|
||||
})
|
||||
.then(Commands.argument("slowSpeed", IntegerArgumentType.integer())
|
||||
.executes(c -> {
|
||||
ServerPlayer player = c.getSource().getPlayerOrException();
|
||||
EditingInfo editingInfo = TurnBasedMinecraftMod.proxy.getEditingInfo(player.getId());
|
||||
int slowSpeed = IntegerArgumentType.getInteger(c, "slowSpeed");
|
||||
if (slowSpeed < 0) {
|
||||
slowSpeed = 0;
|
||||
}
|
||||
if (editingInfo != null && !editingInfo.isPendingEntitySelection) {
|
||||
editingInfo.entityInfo.slowSpeed = slowSpeed;
|
||||
PacketDistributor.sendToPlayer(player, new PacketEditingMessage(PacketEditingMessage.Type.PICK_EDIT, editingInfo.entityInfo));
|
||||
} else if (editingInfo != null) {
|
||||
PacketDistributor.sendToPlayer(player, new PacketEditingMessage(PacketEditingMessage.Type.ATTACK_ENTITY));
|
||||
} else {
|
||||
Message exceptionMessage = new LiteralMessage("Cannot edit entity without starting editing (use \"/tbm-edit\").");
|
||||
throw new CommandSyntaxException(new SimpleCommandExceptionType(exceptionMessage), exceptionMessage);
|
||||
}
|
||||
return 1;
|
||||
}))
|
||||
)
|
||||
.then(Commands.literal("category")
|
||||
.executes(c -> {
|
||||
ServerPlayer player = c.getSource().getPlayerOrException();
|
||||
|
|
|
@ -31,13 +31,12 @@ public record PacketBattlePing(int battleID, int remainingSeconds) implements Cu
|
|||
@Override
|
||||
public void handle(final @NotNull PacketBattlePing pkt, IPayloadContext ctx) {
|
||||
ctx.enqueueWork(() -> {
|
||||
if (TurnBasedMinecraftMod.proxy.getLocalBattle() == null) {
|
||||
TurnBasedMinecraftMod.proxy.createLocalBattle(pkt.battleID);
|
||||
if (TurnBasedMinecraftMod.proxy.getLocalBattle() != null) {
|
||||
TurnBasedMinecraftMod.proxy.setBattleGuiAsGui();
|
||||
TurnBasedMinecraftMod.proxy.setBattleGuiBattleChanged();
|
||||
TurnBasedMinecraftMod.proxy.setBattleGuiTime(pkt.remainingSeconds);
|
||||
TurnBasedMinecraftMod.proxy.pauseMCMusic();
|
||||
}
|
||||
TurnBasedMinecraftMod.proxy.setBattleGuiAsGui();
|
||||
TurnBasedMinecraftMod.proxy.setBattleGuiBattleChanged();
|
||||
TurnBasedMinecraftMod.proxy.setBattleGuiTime(pkt.remainingSeconds);
|
||||
TurnBasedMinecraftMod.proxy.pauseMCMusic();
|
||||
}).exceptionally(e -> {
|
||||
ctx.disconnect(Component.literal("Exception handling PacketBattlePing! " + e.getMessage()));
|
||||
return null;
|
||||
|
|
|
@ -48,11 +48,14 @@ public class PacketEditingMessage implements CustomPacketPayload
|
|||
EDIT_DEFENSE_DAMAGE_PROBABILITY(9),
|
||||
EDIT_EVASION(10),
|
||||
EDIT_SPEED(11),
|
||||
EDIT_HASTE_SPEED(18),
|
||||
EDIT_SLOW_SPEED(19),
|
||||
EDIT_CATEGORY(12),
|
||||
EDIT_DECISION_ATTACK(13),
|
||||
EDIT_DECISION_DEFEND(14),
|
||||
EDIT_DECISION_FLEE(15),
|
||||
SERVER_EDIT(16);
|
||||
SERVER_EDIT(16),
|
||||
PICK_PLAYER(17);
|
||||
|
||||
Type(int value)
|
||||
{
|
||||
|
|
|
@ -125,6 +125,8 @@ defense_damage = 0
|
|||
evasion = 5
|
||||
category = "monster"
|
||||
speed = 45
|
||||
haste_speed = 65
|
||||
slow_speed = 25
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -141,6 +143,8 @@ defense_damage = 0
|
|||
evasion = 10
|
||||
category = "monster"
|
||||
speed = 20
|
||||
haste_speed = 40
|
||||
slow_speed = 5
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -156,6 +160,8 @@ defense_damage = 0
|
|||
evasion = 45
|
||||
category = "monster"
|
||||
speed = 45
|
||||
haste_speed = 80
|
||||
slow_speed = 25
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -172,6 +178,8 @@ defense_damage = 0
|
|||
evasion = 35
|
||||
category = "monster"
|
||||
speed = 75
|
||||
haste_speed = 90
|
||||
slow_speed = 55
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -188,6 +196,8 @@ defense_damage = 0
|
|||
evasion = 5
|
||||
category = "monster"
|
||||
speed = 25
|
||||
haste_speed = 45
|
||||
slow_speed = 5
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -202,6 +212,8 @@ defense_damage = 0
|
|||
evasion = 5
|
||||
category = "monster"
|
||||
speed = 25
|
||||
haste_speed = 35
|
||||
slow_speed = 5
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -218,6 +230,8 @@ defense_damage_probability = 35
|
|||
evasion = 25
|
||||
category = "monster"
|
||||
speed = 45
|
||||
haste_speed = 65
|
||||
slow_speed = 25
|
||||
decision_attack_probability = 80
|
||||
decision_defend_probability = 20
|
||||
decision_flee_probability = 0
|
||||
|
@ -233,6 +247,8 @@ defense_damage = 0
|
|||
evasion = 40
|
||||
category = "monster"
|
||||
speed = 70
|
||||
haste_speed = 90
|
||||
slow_speed = 50
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -248,6 +264,8 @@ defense_damage = 0
|
|||
evasion = 40
|
||||
category = "monster"
|
||||
speed = 35
|
||||
haste_speed = 55
|
||||
slow_speed = 15
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -263,6 +281,8 @@ defense_damage = 0
|
|||
evasion = 35
|
||||
category = "monster"
|
||||
speed = 35
|
||||
haste_speed = 55
|
||||
slow_speed = 15
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -279,6 +299,8 @@ defense_damage = 0
|
|||
evasion = 35
|
||||
category = "monster"
|
||||
speed = 60
|
||||
haste_speed = 80
|
||||
slow_speed = 40
|
||||
decision_attack_probability = 75
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 25
|
||||
|
@ -293,6 +315,8 @@ defense_damage = 0
|
|||
evasion = 2
|
||||
category = "monster"
|
||||
speed = 45
|
||||
haste_speed = 65
|
||||
slow_speed = 25
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -309,6 +333,8 @@ defense_damage_probability = 30
|
|||
evasion = 25
|
||||
category = "monster"
|
||||
speed = 50
|
||||
haste_speed = 70
|
||||
slow_speed = 30
|
||||
decision_attack_probability = 80
|
||||
decision_defend_probability = 20
|
||||
decision_flee_probability = 0
|
||||
|
@ -324,6 +350,8 @@ defense_damage = 0
|
|||
evasion = 20
|
||||
category = "monster"
|
||||
speed = 40
|
||||
haste_speed = 60
|
||||
slow_speed = 20
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -340,6 +368,8 @@ defense_damage = 0
|
|||
evasion = 5
|
||||
category = "monster"
|
||||
speed = 25
|
||||
haste_speed = 55
|
||||
slow_speed = 5
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -355,6 +385,8 @@ defense_damage = 0
|
|||
evasion = 5
|
||||
category = "monster"
|
||||
speed = 35
|
||||
haste_speed = 55
|
||||
slow_speed = 15
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -370,6 +402,8 @@ defense_damage = 0
|
|||
evasion = 5
|
||||
category = "monster"
|
||||
speed = 45
|
||||
haste_speed = 65
|
||||
slow_speed = 25
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -385,6 +419,8 @@ defense_damage = 0
|
|||
evasion = 12
|
||||
category = "monster"
|
||||
speed = 35
|
||||
haste_speed = 55
|
||||
slow_speed = 15
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -400,6 +436,8 @@ defense_damage = 0
|
|||
evasion = 20
|
||||
category = "monster"
|
||||
speed = 25
|
||||
haste_speed = 45
|
||||
slow_speed = 10
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -415,6 +453,8 @@ defense_damage = 0
|
|||
evasion = 20
|
||||
category = "monster"
|
||||
speed = 28
|
||||
haste_speed = 48
|
||||
slow_speed = 10
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -430,6 +470,8 @@ defense_damage = 0
|
|||
evasion = 35
|
||||
category = "monster"
|
||||
speed = 65
|
||||
haste_speed = 85
|
||||
slow_speed = 45
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -445,6 +487,8 @@ defense_damage = 0
|
|||
evasion = 10
|
||||
category = "monster"
|
||||
speed = 30
|
||||
haste_speed = 50
|
||||
slow_speed = 10
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -460,6 +504,8 @@ defense_damage = 0
|
|||
evasion = 4
|
||||
category = "monster"
|
||||
speed = 35
|
||||
haste_speed = 55
|
||||
slow_speed = 15
|
||||
decision_attack_probability = 90
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -475,6 +521,8 @@ defense_damage = 0
|
|||
evasion = 15
|
||||
category = "monster"
|
||||
speed = 10
|
||||
haste_speed = 30
|
||||
slow_speed = 5
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -490,6 +538,8 @@ defense_damage = 0
|
|||
evasion = 37
|
||||
category = "monster"
|
||||
speed = 35
|
||||
haste_speed = 55
|
||||
slow_speed = 15
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -505,6 +555,8 @@ defense_damage = 0
|
|||
evasion = 13
|
||||
category = "monster"
|
||||
speed = 30
|
||||
haste_speed = 50
|
||||
slow_speed = 10
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -520,6 +572,8 @@ defense_damage = 0
|
|||
evasion = 10
|
||||
category = "monster"
|
||||
speed = 30
|
||||
haste_speed = 50
|
||||
slow_speed = 10
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -535,6 +589,8 @@ defense_damage = 0
|
|||
evasion = 25
|
||||
category = "monster"
|
||||
speed = 70
|
||||
haste_speed = 90
|
||||
slow_speed = 50
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -551,6 +607,8 @@ defense_damage = 0
|
|||
evasion = 13
|
||||
category = "monster"
|
||||
speed = 30
|
||||
haste_speed = 50
|
||||
slow_speed = 10
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -566,6 +624,8 @@ defense_damage = 0
|
|||
evasion = 30
|
||||
category = "monster"
|
||||
speed = 80
|
||||
haste_speed = 90
|
||||
slow_speed = 50
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -581,6 +641,8 @@ defense_damage = 0
|
|||
evasion = 10
|
||||
category = "monster"
|
||||
speed = 35
|
||||
haste_speed = 55
|
||||
slow_speed = 15
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -596,6 +658,8 @@ defense_damage = 0
|
|||
evasion = 7
|
||||
category = "monster"
|
||||
speed = 50
|
||||
haste_speed = 70
|
||||
slow_speed = 20
|
||||
decision_attack_probability = 95
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -611,6 +675,8 @@ defense_damage = 0
|
|||
evasion = 8
|
||||
category = "monster"
|
||||
speed = 35
|
||||
haste_speed = 55
|
||||
slow_speed = 15
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -627,6 +693,8 @@ defense_damage = 0
|
|||
evasion = 7
|
||||
category = "monster"
|
||||
speed = 65
|
||||
haste_speed = 85
|
||||
slow_speed = 40
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -642,6 +710,8 @@ defense_damage = 0
|
|||
evasion = 20
|
||||
category = "monster"
|
||||
speed = 40
|
||||
haste_speed = 60
|
||||
slow_speed = 20
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -657,6 +727,8 @@ defense_damage = 0
|
|||
evasion = 5
|
||||
category = "monster"
|
||||
speed = 25
|
||||
haste_speed = 45
|
||||
slow_speed = 10
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -672,6 +744,8 @@ defense_damage = 0
|
|||
evasion = 10
|
||||
category = "monster"
|
||||
speed = 50
|
||||
haste_speed = 65
|
||||
slow_speed = 20
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -687,6 +761,8 @@ defense_damage = 0
|
|||
evasion = 5
|
||||
category = "monster"
|
||||
speed = 25
|
||||
haste_speed = 45
|
||||
slow_speed = 10
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -702,6 +778,8 @@ defense_damage = 0
|
|||
evasion = 40
|
||||
category = "passive"
|
||||
speed = 50
|
||||
haste_speed = 80
|
||||
slow_speed = 30
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 100
|
||||
|
@ -717,6 +795,8 @@ defense_damage = 0
|
|||
evasion = 10
|
||||
category = "passive"
|
||||
speed = 20
|
||||
haste_speed = 40
|
||||
slow_speed = 10
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 50
|
||||
decision_flee_probability = 50
|
||||
|
@ -732,6 +812,8 @@ defense_damage = 0
|
|||
evasion = 25
|
||||
category = "passive"
|
||||
speed = 65
|
||||
haste_speed = 85
|
||||
slow_speed = 45
|
||||
decision_attack_probability = 70
|
||||
decision_defend_probability = 20
|
||||
decision_flee_probability = 10
|
||||
|
@ -747,6 +829,8 @@ defense_damage = 0
|
|||
evasion = 35
|
||||
category = "passive"
|
||||
speed = 75
|
||||
haste_speed = 95
|
||||
slow_speed = 50
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 90
|
||||
|
@ -761,6 +845,8 @@ defense_damage = 0
|
|||
evasion = 30
|
||||
category = "animal"
|
||||
speed = 20
|
||||
haste_speed = 50
|
||||
slow_speed = 10
|
||||
decision_attack_probability = 90
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -778,6 +864,8 @@ defense_damage = 0
|
|||
evasion = 30
|
||||
category = "passive"
|
||||
speed = 75
|
||||
haste_speed = 90
|
||||
slow_speed = 30
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 90
|
||||
|
@ -793,6 +881,8 @@ defense_damage = 0
|
|||
evasion = 10
|
||||
category = "passive"
|
||||
speed = 35
|
||||
haste_speed = 45
|
||||
slow_speed = 10
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 90
|
||||
|
@ -808,6 +898,8 @@ defense_damage = 0
|
|||
evasion = 1
|
||||
category = "passive"
|
||||
speed = 20
|
||||
haste_speed = 40
|
||||
slow_speed = 10
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 10
|
||||
decision_flee_probability = 80
|
||||
|
@ -823,6 +915,8 @@ defense_damage = 0
|
|||
evasion = 45
|
||||
category = "passive"
|
||||
speed = 75
|
||||
haste_speed = 90
|
||||
slow_speed = 55
|
||||
decision_attack_probability = 70
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 30
|
||||
|
@ -838,6 +932,8 @@ defense_damage = 0
|
|||
evasion = 65
|
||||
category = "animal"
|
||||
speed = 65
|
||||
haste_speed = 85
|
||||
slow_speed = 30
|
||||
decision_attack_probability = 70
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 25
|
||||
|
@ -853,6 +949,8 @@ defense_damage = 0
|
|||
evasion = 60
|
||||
category = "animal"
|
||||
speed = 70
|
||||
haste_speed = 80
|
||||
slow_speed = 20
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 100
|
||||
|
@ -868,6 +966,8 @@ defense_damage = 0
|
|||
evasion = 45
|
||||
category = "animal"
|
||||
speed = 50
|
||||
haste_speed = 60
|
||||
slow_speed = 15
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 100
|
||||
|
@ -883,6 +983,8 @@ defense_damage = 0
|
|||
evasion = 10
|
||||
category = "passive"
|
||||
speed = 65
|
||||
haste_speed = 80
|
||||
slow_speed = 20
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 90
|
||||
|
@ -898,6 +1000,8 @@ defense_damage = 0
|
|||
evasion = 10
|
||||
category = "passive"
|
||||
speed = 65
|
||||
haste_speed = 85
|
||||
slow_speed = 45
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 90
|
||||
|
@ -913,6 +1017,8 @@ defense_damage = 0
|
|||
evasion = 30
|
||||
category = "passive"
|
||||
speed = 60
|
||||
haste_speed = 80
|
||||
slow_speed = 40
|
||||
decision_attack_probability = 75
|
||||
decision_defend_probability = 20
|
||||
decision_flee_probability = 5
|
||||
|
@ -928,6 +1034,8 @@ defense_damage = 0
|
|||
evasion = 10
|
||||
category = "passive"
|
||||
speed = 50
|
||||
haste_speed = 70
|
||||
slow_speed = 30
|
||||
decision_attack_probability = 65
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 25
|
||||
|
@ -943,6 +1051,8 @@ defense_damage = 0
|
|||
evasion = 1
|
||||
category = "passive"
|
||||
speed = 20
|
||||
haste_speed = 40
|
||||
slow_speed = 10
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 10
|
||||
decision_flee_probability = 80
|
||||
|
@ -958,6 +1068,8 @@ defense_damage = 0
|
|||
evasion = 10
|
||||
category = "passive"
|
||||
speed = 50
|
||||
haste_speed = 70
|
||||
slow_speed = 30
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 90
|
||||
|
@ -973,6 +1085,8 @@ defense_damage = 0
|
|||
evasion = 30
|
||||
category = "passive"
|
||||
speed = 75
|
||||
haste_speed = 90
|
||||
slow_speed = 55
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 90
|
||||
|
@ -988,6 +1102,8 @@ defense_damage = 0
|
|||
evasion = 10
|
||||
category = "passive"
|
||||
speed = 30
|
||||
haste_speed = 50
|
||||
slow_speed = 10
|
||||
decision_attack_probability = 45
|
||||
decision_defend_probability = 25
|
||||
decision_flee_probability = 30
|
||||
|
@ -1003,6 +1119,8 @@ defense_damage = 0
|
|||
evasion = 35
|
||||
category = "passive"
|
||||
speed = 70
|
||||
haste_speed = 90
|
||||
slow_speed = 40
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 90
|
||||
|
@ -1018,6 +1136,8 @@ defense_damage = 0
|
|||
evasion = 10
|
||||
category = "passive"
|
||||
speed = 30
|
||||
haste_speed = 50
|
||||
slow_speed = 10
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 5
|
||||
decision_flee_probability = 85
|
||||
|
@ -1033,6 +1153,8 @@ defense_damage = 0
|
|||
evasion = 5
|
||||
category = "animal"
|
||||
speed = 35
|
||||
haste_speed = 70
|
||||
slow_speed = 20
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -1048,6 +1170,8 @@ defense_damage = 0
|
|||
evasion = 40
|
||||
category = "passive"
|
||||
speed = 75
|
||||
haste_speed = 90
|
||||
slow_speed = 35
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 100
|
||||
|
@ -1063,6 +1187,8 @@ defense_damage = 0
|
|||
evasion = 5
|
||||
category = "passive"
|
||||
speed = 30
|
||||
haste_speed = 40
|
||||
slow_speed = 20
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 90
|
||||
|
@ -1078,6 +1204,8 @@ defense_damage = 0
|
|||
evasion = 5
|
||||
category = "passive"
|
||||
speed = 65
|
||||
haste_speed = 85
|
||||
slow_speed = 35
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 90
|
||||
|
@ -1093,6 +1221,8 @@ defense_damage = 0
|
|||
evasion = 5
|
||||
category = "passive"
|
||||
speed = 60
|
||||
haste_speed = 70
|
||||
slow_speed = 45
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -1108,6 +1238,8 @@ defense_damage = 0
|
|||
evasion = 15
|
||||
category = "passive"
|
||||
speed = 40
|
||||
haste_speed = 70
|
||||
slow_speed = 25
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 90
|
||||
|
@ -1123,6 +1255,8 @@ defense_damage = 0
|
|||
evasion = 10
|
||||
category = "passive"
|
||||
speed = 50
|
||||
haste_speed = 70
|
||||
slow_speed = 35
|
||||
decision_attack_probability = 65
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 25
|
||||
|
@ -1138,6 +1272,8 @@ defense_damage = 0
|
|||
evasion = 5
|
||||
category = "passive"
|
||||
speed = 35
|
||||
haste_speed = 50
|
||||
slow_speed = 20
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 10
|
||||
decision_flee_probability = 80
|
||||
|
@ -1153,6 +1289,8 @@ defense_damage = 0
|
|||
evasion = 20
|
||||
category = "animal"
|
||||
speed = 70
|
||||
haste_speed = 85
|
||||
slow_speed = 45
|
||||
decision_attack_probability = 80
|
||||
decision_defend_probability = 15
|
||||
decision_flee_probability = 5
|
||||
|
@ -1168,6 +1306,8 @@ defense_damage = 0
|
|||
evasion = 8
|
||||
category = "passive"
|
||||
speed = 65
|
||||
haste_speed = 80
|
||||
slow_speed = 35
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 90
|
||||
|
@ -1183,6 +1323,8 @@ defense_damage = 0
|
|||
evasion = 50
|
||||
category = "passive"
|
||||
speed = 75
|
||||
haste_speed = 90
|
||||
slow_speed = 40
|
||||
decision_attack_probability = 25
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 75
|
||||
|
@ -1199,6 +1341,8 @@ defense_damage_probability = 75
|
|||
evasion = 25
|
||||
category = "passive"
|
||||
speed = 45
|
||||
haste_speed = 55
|
||||
slow_speed = 25
|
||||
decision_attack_probability = 35
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 65
|
||||
|
@ -1214,6 +1358,8 @@ defense_damage = 0
|
|||
evasion = 50
|
||||
category = "passive"
|
||||
speed = 75
|
||||
haste_speed = 90
|
||||
slow_speed = 40
|
||||
decision_attack_probability = 25
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 75
|
||||
|
@ -1229,6 +1375,8 @@ defense_damage = 0
|
|||
evasion = 35
|
||||
category = "passive"
|
||||
speed = 45
|
||||
haste_speed = 65
|
||||
slow_speed = 25
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 10
|
||||
decision_flee_probability = 90
|
||||
|
@ -1244,6 +1392,8 @@ defense_damage = 0
|
|||
evasion = 50
|
||||
category = "passive"
|
||||
speed = 75
|
||||
haste_speed = 90
|
||||
slow_speed = 40
|
||||
decision_attack_probability = 25
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 75
|
||||
|
@ -1259,6 +1409,8 @@ defense_damage = 0
|
|||
evasion = 35
|
||||
category = "passive"
|
||||
speed = 50
|
||||
haste_speed = 60
|
||||
slow_speed = 30
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 40
|
||||
decision_flee_probability = 60
|
||||
|
@ -1274,6 +1426,8 @@ defense_damage = 0
|
|||
evasion = 5
|
||||
category = "passive"
|
||||
speed = 35
|
||||
haste_speed = 50
|
||||
slow_speed = 25
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 10
|
||||
decision_flee_probability = 80
|
||||
|
@ -1289,6 +1443,8 @@ defense_damage = 0
|
|||
evasion = 27
|
||||
category = "boss"
|
||||
speed = 63
|
||||
haste_speed = 85
|
||||
slow_speed = 53
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -1305,6 +1461,8 @@ defense_damage = 0
|
|||
evasion = 20
|
||||
category = "boss"
|
||||
speed = 68
|
||||
haste_speed = 88
|
||||
slow_speed = 48
|
||||
decision_attack_probability = 100
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 0
|
||||
|
@ -1320,6 +1478,8 @@ defense_damage = 0
|
|||
evasion = 10
|
||||
category = "passive"
|
||||
speed = 55
|
||||
haste_speed = 75
|
||||
slow_speed = 35
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 90
|
||||
|
@ -1335,6 +1495,8 @@ defense_damage = 0
|
|||
evasion = 10
|
||||
category = "passive"
|
||||
speed = 15
|
||||
haste_speed = 20
|
||||
slow_speed = 10
|
||||
decision_attack_probability = 0
|
||||
decision_defend_probability = 0
|
||||
decision_flee_probability = 90
|
||||
|
|
12
update.json
12
update.json
|
@ -1,12 +1,20 @@
|
|||
{
|
||||
"homepage": "https://github.com/Stephen-Seo/TurnBasedMinecraftMod",
|
||||
"1.21.3": {
|
||||
"1.26.4": "Add player-specific config, NeoForge 21.3.6-beta.\n https://github.com/Stephen-Seo/TurnBasedMinecraftMod/blob/neoforge/Changelog.md",
|
||||
"1.26.3": "Ported to NeoForge 21.3.2-beta (MC 1.21.3), minor tweak to packet.\n https://github.com/Stephen-Seo/TurnBasedMinecraftMod/blob/neoforge/Changelog.md"
|
||||
},
|
||||
"1.21.1": {
|
||||
"1.26.4-MC-1.21.1": "Add player-specific config, NeoForge 21.1.73.\n https://github.com/Stephen-Seo/TurnBasedMinecraftMod/blob/neoforge/Changelog.md",
|
||||
"1.26.3-MC-1.21.1": "Minor tweak to packet.\n https://github.com/Stephen-Seo/TurnBasedMinecraftMod/blob/neoforge/Changelog.md",
|
||||
"1.26.2": "Display Entities on attack menu in BattleGUI.\n https://github.com/Stephen-Seo/TurnBasedMinecraftMod/blob/neoforge/Changelog.md",
|
||||
"1.26.1": "Ported to NeoForge 21.1.72, leave BattleGUI with Escape key, MC music paused in battle properly.\n https://github.com/Stephen-Seo/TurnBasedMinecraftMod/blob/neoforge/Changelog.md",
|
||||
"1.26.0": "Ported to NeoForge 21.1.69, client config.\n https://github.com/Stephen-Seo/TurnBasedMinecraftMod/blob/neoforge/Changelog.md"
|
||||
},
|
||||
"promos": {
|
||||
"1.21.1-latest": "1.26.2",
|
||||
"1.21.1-recommended": "1.26.2"
|
||||
"1.21.3-latest": "1.26.4",
|
||||
"1.21.3-recommended": "1.26.4",
|
||||
"1.21.1-latest": "1.26.4-MC-1.21.1",
|
||||
"1.21.1-recommended": "1.26.4-MC-1.21.1"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue