Removes, added missing resource packs, configured some rand mob sizes

This commit is contained in:
2025-05-26 14:05:06 -05:00
parent 4507337cc3
commit abab9430fa
18 changed files with 319 additions and 104 deletions

View File

@ -6,7 +6,7 @@
Precipitation_Particle_effect_rate = 0.7
#Adjust amount of all weather2 based particles, works as a multiplier
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
Particle_effect_rate = 1.0
Particle_effect_rate = 2.0
#If true, uses vanilla rain/snow non particle precipitation
Particle_vanilla_precipitation = false
#If set to false, particles are spawned in using the vanilla particle renderer, may cause issues, performance seems worse

View File

@ -6,10 +6,10 @@
leavesVolume = 0.0
#
#Range: 0.0 ~ 5.0
tornadoWindVolume = 1.0
tornadoWindVolume = 1.5
#
#Range: 0.0 ~ 5.0
tornadoDamageVolume = 1.0
tornadoDamageVolume = 2.0
#
#Range: 0.0 ~ 5.0
windyStormVolume = 1.0

View File

@ -32,7 +32,7 @@
Storm_Tornado_maxFlyingEntityBlocks = 200
#-
#Range: > -2147483648
Storm_Tornado_maxBlocksGrabbedPerTick = 5
Storm_Tornado_maxBlocksGrabbedPerTick = 10
#Make tornados initial heading aimed towards closest player
Storm_Tornado_aimAtPlayerOnSpawn = true
#Accuracy of tornado aimed at player

View File

@ -9,7 +9,7 @@ splashes = true
[rendering]
#Set this to false to disable the use of shaders for some of the mod's renders. (Requires game restart)
shaders = true
shaders = false
#Set this to false to disable the wireframe when looking a block bound to something (spreaders, flowers, etc).
boundBlockWireframe = true
#Set this to false to disable rendering of accessories in the player.

View File

@ -0,0 +1,139 @@
# Config Generator
If you are confused about all parameters and terrain generation, you can try our [Config Generator](https://viola-siemens.github.io/pages/tools/oceanworld-config.html) to generate config and see the preview of the config you make.
# Temperature
## Description
The temperature values MUST BE ASCENDING!
Temperature in [-1.0, FROZEN_TEMPERATURE] will be filled with frozen biomes (eg. Snowy Plains, Frozen Ocean), [FROZEN_TEMPERATURE, COOL_TEMPERATURE] is for cold biomes (eg. Taiga, Cold Ocean), [COOL_TEMPERATURE, WARM_TEMPERATURE] is for neutral biomes (eg. Plains, Forests), [WARM_TEMPERATURE, HOT_TEMPERATURE] is for warm biomes (eg. savanna, jungle), and [HOT_TEMPERATURE, 1.0] is for hot biomes (eg. badlands, desert).
## Presets
### Vanilla
```json
{
"FROZEN_TEMPERATURE": -0.45,
"COOL_TEMPERATURE": -0.15,
"WARM_TEMPERATURE": 0.2,
"HOT_TEMPERATURE": 0.55,
"OCTAVE_TEMPERATURE_ADDER": 0
}
```
# Humidity
## Description
The humidity values MUST BE ASCENDING!
Temperature in [-1.0, ARID_HUMIDITY] will be filled with arid biomes (eg. ice spikes, savanna), [ARID_HUMIDITY, DRY_HUMIDITY] is for dry biomes (eg. plains, windswept gravelly hills), [DRY_HUMIDITY, WET_HUMIDITY] is for neutral biomes (eg. meadows, forests), [WET_HUMIDITY, HUMID_HUMIDITY] is for wet biomes (eg. taiga, wooded badlands), and [HUMID_HUMIDITY, 1.0] is for humid biomes (eg. dark forests, jungle).
## Presets
### Vanilla
```json
{
"ARID_HUMIDITY": -0.35,
"DRY_HUMIDITY": -0.1,
"WET_HUMIDITY": 0.1,
"HUMID_HUMIDITY": 0.3,
"OCTAVE_HUMIDITY_ADDER": 0
}
```
# Continentalness
## Description
The continentalness values and shaper values MUST BE ASCENDING!
If you modify these continentalness values, please remember to modify shaper values under the guide.
## Presets
### Default Values in Ocean World Mod
```json
{
"MUSHROOM_FIELDS_TO_DEEP_OCEAN_CONTINENTALNESS": -1.01,
"DEEP_OCEAN_TO_OCEAN_CONTINENTALNESS": 0.29,
"OCEAN_TO_COAST_CONTINENTALNESS": 0.42,
"COAST_TO_INLAND_CONTINENTALNESS": 0.51,
"NEAR_INLAND_TO_MID_INLAND_CONTINENTALNESS": 0.62,
"MID_INLAND_TO_MOUNTAINS_CONTINENTALNESS": 0.785,
"PEAKS_CONTINENTALNESS": 0.9,
"MUSHROOM_FIELDS_TO_DEEP_OCEAN_SHAPER": -0.99,
"DEEP_OCEAN_TO_OCEAN_SHAPER": 0.25,
"OCEAN_TO_COAST_SHAPER": 0.325,
"COAST_WATER_SHAPER": 0.43,
"COAST_BANK_SHAPER": 0.47,
"COAST_LAND_SHAPER": 0.48,
"NEAR_INLAND_SHAPER": 0.52,
"INLAND_EROSION_SHAPER": 0.64,
"MID_INLAND_SHAPER": 0.76,
"PEAKS_EROSION_SHAPER": 0.92,
"OCTAVE_CONTINENTALNESS_ADDER": 1
}
```
Notice that the larger gap between two neighbor values, the more frequently it will generate. The example given above means deep ocean (-1.01~0.29) will generate most frequently.
### Vanilla
```json
{
"MUSHROOM_FIELDS_TO_DEEP_OCEAN_CONTINENTALNESS": -1.05,
"DEEP_OCEAN_TO_OCEAN_CONTINENTALNESS": -0.455,
"OCEAN_TO_COAST_CONTINENTALNESS": -0.19,
"COAST_TO_INLAND_CONTINENTALNESS": -0.11,
"NEAR_INLAND_TO_MID_INLAND_CONTINENTALNESS": 0.03,
"MID_INLAND_TO_MOUNTAINS_CONTINENTALNESS": 0.3,
"PEAKS_CONTINENTALNESS": 0.55,
"MUSHROOM_FIELDS_TO_DEEP_OCEAN_SHAPER": -1.02,
"DEEP_OCEAN_TO_OCEAN_SHAPER": -0.51,
"OCEAN_TO_COAST_SHAPER": -0.44,
"COAST_WATER_SHAPER": -0.18,
"COAST_BANK_SHAPER": -0.16,
"COAST_LAND_SHAPER": -0.15,
"NEAR_INLAND_SHAPER": -0.1,
"INLAND_EROSION_SHAPER": 0.06,
"MID_INLAND_SHAPER": 0.25,
"PEAKS_EROSION_SHAPER": 0.65,
"OCTAVE_CONTINENTALNESS_ADDER": 0
}
```
## Comments
Here are some constructive comments for you to modify the shaper values:
- MUSHROOM_FIELDS_TO_DEEP_OCEAN_SHAPER should be greater than MUSHROOM_FIELDS_TO_DEEP_OCEAN_CONTINENTALNESS.
- DEEP_OCEAN_TO_OCEAN_SHAPER should be a little less than DEEP_OCEAN_TO_OCEAN_CONTINENTALNESS.
- OCEAN_TO_COAST_SHAPER should be between DEEP_OCEAN_TO_OCEAN_CONTINENTALNESS and OCEAN_TO_COAST_CONTINENTALNESS.
- COAST_WATER_SHAPER should be close to OCEAN_TO_COAST_CONTINENTALNESS.
- COAST_BANK_SHAPER should be between OCEAN_TO_COAST_CONTINENTALNESS and COAST_TO_INLAND_CONTINENTALNESS.
- COAST_LAND_SHAPER should be a little greater than COAST_BANK_SHAPER.
- NEAR_INLAND_SHAPER should be a little greater than COAST_TO_INLAND_CONTINENTALNESS.
- INLAND_EROSION_SHAPER should be a little greater than NEAR_INLAND_TO_MID_INLAND_CONTINENTALNESS.
- MID_INLAND_SHAPER should be a little less than MID_INLAND_TO_MOUNTAINS_CONTINENTALNESS.
- PEAKS_EROSION_SHAPER should be a little greater than PEAKS_CONTINENTALNESS.
# Others
## STRUCTURE_DENSITY_MULTIPLIER
The higher, the denser the structures will be. The lower, the less chance you can find structures in your world.
## ENABLE_MUSHROOM_FIELDS_SPAWN
If true, players can spawn at mushroom fields.

View File

@ -0,0 +1,32 @@
{
"FROZEN_TEMPERATURE": -0.45,
"COOL_TEMPERATURE": -0.15,
"WARM_TEMPERATURE": 0.2,
"HOT_TEMPERATURE": 0.55,
"ARID_HUMIDITY": -0.35,
"DRY_HUMIDITY": -0.1,
"WET_HUMIDITY": 0.1,
"HUMID_HUMIDITY": 0.3,
"MUSHROOM_FIELDS_TO_DEEP_OCEAN_CONTINENTALNESS": -1.05,
"DEEP_OCEAN_TO_OCEAN_CONTINENTALNESS": -0.455,
"OCEAN_TO_COAST_CONTINENTALNESS": -0.19,
"COAST_TO_INLAND_CONTINENTALNESS": -0.11,
"NEAR_INLAND_TO_MID_INLAND_CONTINENTALNESS": 0.03,
"MID_INLAND_TO_MOUNTAINS_CONTINENTALNESS": 0.3,
"PEAKS_CONTINENTALNESS": 0.55,
"MUSHROOM_FIELDS_TO_DEEP_OCEAN_SHAPER": -1.02,
"DEEP_OCEAN_TO_OCEAN_SHAPER": -0.51,
"OCEAN_TO_COAST_SHAPER": -0.44,
"COAST_WATER_SHAPER": -0.18,
"COAST_BANK_SHAPER": -0.16,
"COAST_LAND_SHAPER": -0.15,
"NEAR_INLAND_SHAPER": -0.1,
"INLAND_EROSION_SHAPER": 0.06,
"MID_INLAND_SHAPER": 0.25,
"PEAKS_EROSION_SHAPER": 0.65,
"OCTAVE_TEMPERATURE_ADDER": 0.0,
"OCTAVE_HUMIDITY_ADDER": 0.0,
"OCTAVE_CONTINENTALNESS_ADDER": 0.0,
"STRUCTURE_DENSITY_MULTIPLIER": 1.0,
"ENABLE_MUSHROOM_FIELDS_SPAWN": false
}

View File

@ -70,6 +70,15 @@
"scale_damage": "normal",
"scale_speed": "none"
},
"magma_monsters:magma_monster": {
"type": "static",
"scaling": 3.0,
"scale_loot": true,
"scale_xp": true,
"scale_health": "normal",
"scale_damage": "normal",
"scale_speed": "normal"
},
"alexscaves:tremorzilla": {
"type": "static",
"scaling": 5.0,
@ -78,10 +87,19 @@
"scale_health": "normal",
"scale_damage": "normal",
"scale_speed": "normal"
}
"magma_monsters:magma_monster": {
},
"arphex:spider_brood": {
"type": "static",
"scaling": 3.0,
"scaling": 10.0,
"scale_loot": true,
"scale_xp": true,
"scale_health": "normal",
"scale_damage": "normal",
"scale_speed": "normal"
}
"arphex:spider_larvae_tiny": {
"type": "static",
"scaling": 10.0,
"scale_loot": true,
"scale_xp": true,
"scale_health": "normal",

View File

@ -79,14 +79,23 @@
"scale_damage": "normal",
"scale_speed": "normal"
},
"alexscaves:tremorzilla": {
"os:the_molten": {
"type": "static",
"scaling": 5.0,
"scaling": 10.0,
"scale_loot": false,
"scale_xp": false,
"scale_health": "normal",
"scale_damage": "normal",
"scale_speed": "normal"
},
"the_deep_void:wanderer": {
"type": "static",
"scaling": 1.5,
"scale_loot": true,
"scale_xp": true,
"scale_health": "normal",
"scale_damage": "normal",
"scale_speed": "normal"
"scale_speed": "none"
}
}
}