Compare commits

...

4 commits

Author SHA1 Message Date
b9d128a647 Version NeoForge-1.26.0
All checks were successful
Build TurnBasedMC and create Release / check-release-exists (push) Successful in 0s
Build TurnBasedMC and create Release / build-and-create-release (push) Successful in 3m24s
2024-10-15 10:55:03 +09:00
606d5cf575 Minor tweak to action/workflow release build 2024-10-15 10:54:26 +09:00
25e503ddfa Update Changelog.md 2024-10-15 10:52:55 +09:00
3f36931e0e Add new mobs to config list, bump config version 2024-10-15 10:52:22 +09:00
3 changed files with 52 additions and 2 deletions

View file

@ -23,7 +23,7 @@ jobs:
steps: steps:
- run: git clone --depth=1 --no-single-branch https://git.seodisparate.com/stephenseo/TurnBasedMinecraftMod.git TurnBasedMinecraftMod - run: git clone --depth=1 --no-single-branch https://git.seodisparate.com/stephenseo/TurnBasedMinecraftMod.git TurnBasedMinecraftMod
- run: cd TurnBasedMinecraftMod && git checkout ${GITHUB_REF_NAME} - run: cd TurnBasedMinecraftMod && git checkout ${GITHUB_REF_NAME}
- run: cd TurnBasedMinecraftMod && sed -i '/org.gradle.jvmargs/s/Xmx[0-9]\+m/Xmx1024m/' gradle.properties && echo 'neogradle.subsystems.decompiler.maxThreads=1' >> gradle.properties - run: cd TurnBasedMinecraftMod && sed -i '/org.gradle.jvmargs/s/Xmx[0-9]\+[mMgG]/Xmx1024m/' gradle.properties && echo 'neogradle.subsystems.decompiler.maxThreads=1' >> gradle.properties
- run: cd TurnBasedMinecraftMod && ./gradlew --console=plain build - run: cd TurnBasedMinecraftMod && ./gradlew --console=plain build
- run: cd TurnBasedMinecraftMod/build/libs && find . -type f -regex '.*all.jar$' -exec sha256sum '{}' ';' -exec bash -c 'sha256sum {} >> sha256sums.txt' ';' && java --version >> javaVersion.txt && javac --version >> javaVersion.txt - run: cd TurnBasedMinecraftMod/build/libs && find . -type f -regex '.*all.jar$' -exec sha256sum '{}' ';' -exec bash -c 'sha256sum {} >> sha256sums.txt' ';' && java --version >> javaVersion.txt && javac --version >> javaVersion.txt
- name: Create release and attach jar - name: Create release and attach jar

View file

@ -1,5 +1,7 @@
# Upcoming changes # Upcoming changes
# Version NeoForge-1.26.0
Make it possible to open the client-config from the Mod-list GUI. Make it possible to open the client-config from the Mod-list GUI.
Port to NeoForge 21.1.69 (Minecraft 1.21.1). Port to NeoForge 21.1.69 (Minecraft 1.21.1).
@ -15,6 +17,8 @@ Add option in client-config to set battle/silly music volume, and an option for
whether or not battle/silly music volume is affected by global music volume whether or not battle/silly music volume is affected by global music volume
setting and whether or not it is affected by master volume setting. setting and whether or not it is affected by master volume setting.
Added Armadillo, Bogged, and Breeze to mob list in config.
# Version NeoForge-1.25.2 # Version NeoForge-1.25.2
Fix invalid use of throwable potions. (Previously, the Player would "drink" Fix invalid use of throwable potions. (Previously, the Player would "drink"

View file

@ -1,6 +1,6 @@
# Please do not change this option, the mod uses this to keep track of what new # Please do not change this option, the mod uses this to keep track of what new
# changes to add to the config. # changes to add to the config.
version = 10 version = 11
# Change this to "true" if you want the config to never be replaced. This means # Change this to "true" if you want the config to never be replaced. This means
# that you will not get new mob listings from future updates unless this remains # that you will not get new mob listings from future updates unless this remains
# "false"! # "false"!
@ -130,6 +130,37 @@ decision_defend_probability = 0
decision_flee_probability = 0 decision_flee_probability = 0
ignore_battle = false ignore_battle = false
[[server_config.entity]]
name = "net.minecraft.world.entity.monster.Bogged"
attack_power = 3
attack_probability = 75
attack_variance = 1
attack_effect = "poison"
attack_effect_probability = 50
defense_damage = 0
evasion = 10
category = "monster"
speed = 20
decision_attack_probability = 100
decision_defend_probability = 0
decision_flee_probability = 0
ignore_battle = false
[[server_config.entity]]
name = "net.minecraft.world.entity.monster.breeze.Breeze"
attack_power = 1
attack_probability = 50
attack_effect = "unknown"
attack_variance = 0
defense_damage = 0
evasion = 45
category = "monster"
speed = 45
decision_attack_probability = 100
decision_defend_probability = 0
decision_flee_probability = 0
ignore_battle = false
[[server_config.entity]] [[server_config.entity]]
name = "net.minecraft.world.entity.monster.CaveSpider" name = "net.minecraft.world.entity.monster.CaveSpider"
attack_power = 2 attack_power = 2
@ -676,6 +707,21 @@ decision_defend_probability = 0
decision_flee_probability = 100 decision_flee_probability = 100
ignore_battle = false ignore_battle = false
[[server_config.entity]]
name = "net.minecraft.world.entity.animal.armadillo.Armadillo"
attack_power = 0
attack_probability = 0
attack_variance = 0
attack_effect = "unknown"
defense_damage = 0
evasion = 10
category = "passive"
speed = 20
decision_attack_probability = 0
decision_defend_probability = 50
decision_flee_probability = 50
ignore_battle = false
[[server_config.entity]] [[server_config.entity]]
name = "net.minecraft.world.entity.animal.axolotl.Axolotl" name = "net.minecraft.world.entity.animal.axolotl.Axolotl"
attack_power = 2 attack_power = 2