Update to new libzontreck

This commit is contained in:
zontreck 2024-01-15 21:27:58 -07:00
parent 2fd88b1eaa
commit 32a61e7925
11 changed files with 2626 additions and 33 deletions

View file

@ -1,4 +1,4 @@
Only The Essentials Mod
Thresholds Mod
=====
Hello! We're still in alpha. Ignore the dust.
@ -7,3 +7,9 @@ Compiling
-----
In a terminal simply run the command `gradlew jar` to compile.
About
======
Thresholds is a mod about machines, and the spaces in between spaces.

View file

@ -3,7 +3,7 @@
org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false
libzontreck=1.10.011024.0312
libzontreck=1.10.011524.0045
## Environment Properties
@ -43,13 +43,13 @@ mapping_version=2023.09.03-1.20.1
# The unique mod identifier for the mod. Must be lowercase in English locale. Must fit the regex [a-z][a-z0-9_]{1,63}
# Must match the String constant located in the main mod class annotated with @Mod.
mod_id=otemod
mod_id=thresholds
# The human-readable display name for the mod.
mod_name=OTEMod
mod_name=Thresholds
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=GPLv3
# The mod version. See https://semver.org/
mod_version=1.4.011224.0030
mod_version=1.4.011524.2056
# 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

View file

@ -72,7 +72,7 @@ public class CompressionChamberMenu extends AbstractContainerMenu
if(progress != 0 && max != 0)
{
int percent = progress * max / progressArrow;
int percent = progress * progressArrow / max;
return percent;
}

View file

@ -63,7 +63,7 @@ public class ItemScrubberMenu extends AbstractContainerMenu
if(progress != 0 && max != 0)
{
int percent = progress * max / progressArrow;
int percent = progress * progressArrow / max;
return percent;
}

View file

@ -63,7 +63,7 @@ public class MagicalScrubberMenu extends AbstractContainerMenu
if(progress != 0 && max != 0)
{
int percent = progress * max / progressArrow;
int percent = progress * progressArrow / max;
return percent;
}

View file

@ -2,6 +2,7 @@
"values": [
"otemod:aurora_block",
"otemod:aurora_door",
"otemod:eternium_block",
"otemod:ilusium_block",
"otemod:item_scrubber",
"otemod:magical_scrubber",

View file

@ -0,0 +1,11 @@
{
"type": "otemod:threshold",
"generator": {
"type": "minecraft:noise",
"settings": "otemod:threshold",
"biome_source": {
"type": "minecraft:multi_noise",
"biomes": []
}
}
}

View file

@ -1,25 +1,25 @@
{
"ultrawarm": false,
"natural": true,
"piglin_safe": false,
"respawn_anchor_works": false,
"bed_works": false,
"has_raids": true,
"has_skylight": false,
"has_ceiling": false,
"coordinate_scale": 1,
"ambient_light": 0,
"logical_height": 384,
"effects": "minecraft:the_end",
"infiniburn": "#minecraft:infiniburn_overworld",
"min_y": -64,
"height": 384,
"monster_spawn_light_level": {
"type": "minecraft:uniform",
"value": {
"min_inclusive": 0,
"max_inclusive": 7
}
},
"monster_spawn_block_light_limit": 0
}
{
"ultrawarm": false,
"natural": true,
"piglin_safe": true,
"respawn_anchor_works": false,
"bed_works": false,
"has_raids": false,
"has_skylight": true,
"has_ceiling": false,
"coordinate_scale": 16,
"ambient_light": 0,
"logical_height": 384,
"effects": "minecraft:end",
"infiniburn": "#minecraft:infiniburn_overworld",
"min_y": -64,
"height": 384,
"monster_spawn_light_level": {
"type": "minecraft:uniform",
"value": {
"min_inclusive": 0,
"max_inclusive": 7
}
},
"monster_spawn_block_light_limit": 0
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "otemod:eternium_block"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View file

@ -0,0 +1,13 @@
{
"type": "create:sandpaper_polishing",
"ingredients": [
{
"item": "biomesoplenty:rose_quartz_chunk"
}
],
"results": [
{
"item": "create:polished_rose_quartz"
}
]
}

File diff suppressed because it is too large Load diff