Update to new libzontreck
This commit is contained in:
parent
2fd88b1eaa
commit
32a61e7925
11 changed files with 2626 additions and 33 deletions
|
@ -1,4 +1,4 @@
|
||||||
Only The Essentials Mod
|
Thresholds Mod
|
||||||
=====
|
=====
|
||||||
|
|
||||||
Hello! We're still in alpha. Ignore the dust.
|
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.
|
In a terminal simply run the command `gradlew jar` to compile.
|
||||||
|
|
||||||
|
|
||||||
|
About
|
||||||
|
======
|
||||||
|
|
||||||
|
Thresholds is a mod about machines, and the spaces in between spaces.
|
|
@ -3,7 +3,7 @@
|
||||||
org.gradle.jvmargs=-Xmx3G
|
org.gradle.jvmargs=-Xmx3G
|
||||||
org.gradle.daemon=false
|
org.gradle.daemon=false
|
||||||
|
|
||||||
libzontreck=1.10.011024.0312
|
libzontreck=1.10.011524.0045
|
||||||
|
|
||||||
## Environment Properties
|
## 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}
|
# 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.
|
# 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.
|
# 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.
|
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
|
||||||
mod_license=GPLv3
|
mod_license=GPLv3
|
||||||
# The mod version. See https://semver.org/
|
# 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.
|
# 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.
|
# This should match the base package used for the mod sources.
|
||||||
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
|
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||||
|
|
|
@ -72,7 +72,7 @@ public class CompressionChamberMenu extends AbstractContainerMenu
|
||||||
|
|
||||||
if(progress != 0 && max != 0)
|
if(progress != 0 && max != 0)
|
||||||
{
|
{
|
||||||
int percent = progress * max / progressArrow;
|
int percent = progress * progressArrow / max;
|
||||||
return percent;
|
return percent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -63,7 +63,7 @@ public class ItemScrubberMenu extends AbstractContainerMenu
|
||||||
|
|
||||||
if(progress != 0 && max != 0)
|
if(progress != 0 && max != 0)
|
||||||
{
|
{
|
||||||
int percent = progress * max / progressArrow;
|
int percent = progress * progressArrow / max;
|
||||||
return percent;
|
return percent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -63,7 +63,7 @@ public class MagicalScrubberMenu extends AbstractContainerMenu
|
||||||
|
|
||||||
if(progress != 0 && max != 0)
|
if(progress != 0 && max != 0)
|
||||||
{
|
{
|
||||||
int percent = progress * max / progressArrow;
|
int percent = progress * progressArrow / max;
|
||||||
return percent;
|
return percent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
"values": [
|
"values": [
|
||||||
"otemod:aurora_block",
|
"otemod:aurora_block",
|
||||||
"otemod:aurora_door",
|
"otemod:aurora_door",
|
||||||
|
"otemod:eternium_block",
|
||||||
"otemod:ilusium_block",
|
"otemod:ilusium_block",
|
||||||
"otemod:item_scrubber",
|
"otemod:item_scrubber",
|
||||||
"otemod:magical_scrubber",
|
"otemod:magical_scrubber",
|
||||||
|
|
11
src/main/resources/data/otemod/dimension/threshold.json
Normal file
11
src/main/resources/data/otemod/dimension/threshold.json
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"type": "otemod:threshold",
|
||||||
|
"generator": {
|
||||||
|
"type": "minecraft:noise",
|
||||||
|
"settings": "otemod:threshold",
|
||||||
|
"biome_source": {
|
||||||
|
"type": "minecraft:multi_noise",
|
||||||
|
"biomes": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,25 +1,25 @@
|
||||||
{
|
{
|
||||||
"ultrawarm": false,
|
"ultrawarm": false,
|
||||||
"natural": true,
|
"natural": true,
|
||||||
"piglin_safe": false,
|
"piglin_safe": true,
|
||||||
"respawn_anchor_works": false,
|
"respawn_anchor_works": false,
|
||||||
"bed_works": false,
|
"bed_works": false,
|
||||||
"has_raids": true,
|
"has_raids": false,
|
||||||
"has_skylight": false,
|
"has_skylight": true,
|
||||||
"has_ceiling": false,
|
"has_ceiling": false,
|
||||||
"coordinate_scale": 1,
|
"coordinate_scale": 16,
|
||||||
"ambient_light": 0,
|
"ambient_light": 0,
|
||||||
"logical_height": 384,
|
"logical_height": 384,
|
||||||
"effects": "minecraft:the_end",
|
"effects": "minecraft:end",
|
||||||
"infiniburn": "#minecraft:infiniburn_overworld",
|
"infiniburn": "#minecraft:infiniburn_overworld",
|
||||||
"min_y": -64,
|
"min_y": -64,
|
||||||
"height": 384,
|
"height": 384,
|
||||||
"monster_spawn_light_level": {
|
"monster_spawn_light_level": {
|
||||||
"type": "minecraft:uniform",
|
"type": "minecraft:uniform",
|
||||||
"value": {
|
"value": {
|
||||||
"min_inclusive": 0,
|
"min_inclusive": 0,
|
||||||
"max_inclusive": 7
|
"max_inclusive": 7
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"monster_spawn_block_light_limit": 0
|
"monster_spawn_block_light_limit": 0
|
||||||
}
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:block",
|
||||||
|
"pools": [
|
||||||
|
{
|
||||||
|
"rolls": 1,
|
||||||
|
"entries": [
|
||||||
|
{
|
||||||
|
"type": "minecraft:item",
|
||||||
|
"name": "otemod:eternium_block"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"conditions": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:survives_explosion"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
|
@ -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
Reference in a new issue