Removes, added missing resource packs, configured some rand mob sizes
This commit is contained in:
@ -6,7 +6,7 @@
|
|||||||
Precipitation_Particle_effect_rate = 0.7
|
Precipitation_Particle_effect_rate = 0.7
|
||||||
#Adjust amount of all weather2 based particles, works as a multiplier
|
#Adjust amount of all weather2 based particles, works as a multiplier
|
||||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||||
Particle_effect_rate = 1.0
|
Particle_effect_rate = 2.0
|
||||||
#If true, uses vanilla rain/snow non particle precipitation
|
#If true, uses vanilla rain/snow non particle precipitation
|
||||||
Particle_vanilla_precipitation = false
|
Particle_vanilla_precipitation = false
|
||||||
#If set to false, particles are spawned in using the vanilla particle renderer, may cause issues, performance seems worse
|
#If set to false, particles are spawned in using the vanilla particle renderer, may cause issues, performance seems worse
|
||||||
|
@ -6,10 +6,10 @@
|
|||||||
leavesVolume = 0.0
|
leavesVolume = 0.0
|
||||||
#
|
#
|
||||||
#Range: 0.0 ~ 5.0
|
#Range: 0.0 ~ 5.0
|
||||||
tornadoWindVolume = 1.0
|
tornadoWindVolume = 1.5
|
||||||
#
|
#
|
||||||
#Range: 0.0 ~ 5.0
|
#Range: 0.0 ~ 5.0
|
||||||
tornadoDamageVolume = 1.0
|
tornadoDamageVolume = 2.0
|
||||||
#
|
#
|
||||||
#Range: 0.0 ~ 5.0
|
#Range: 0.0 ~ 5.0
|
||||||
windyStormVolume = 1.0
|
windyStormVolume = 1.0
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
Storm_Tornado_maxFlyingEntityBlocks = 200
|
Storm_Tornado_maxFlyingEntityBlocks = 200
|
||||||
#-
|
#-
|
||||||
#Range: > -2147483648
|
#Range: > -2147483648
|
||||||
Storm_Tornado_maxBlocksGrabbedPerTick = 5
|
Storm_Tornado_maxBlocksGrabbedPerTick = 10
|
||||||
#Make tornados initial heading aimed towards closest player
|
#Make tornados initial heading aimed towards closest player
|
||||||
Storm_Tornado_aimAtPlayerOnSpawn = true
|
Storm_Tornado_aimAtPlayerOnSpawn = true
|
||||||
#Accuracy of tornado aimed at player
|
#Accuracy of tornado aimed at player
|
||||||
|
@ -9,7 +9,7 @@ splashes = true
|
|||||||
|
|
||||||
[rendering]
|
[rendering]
|
||||||
#Set this to false to disable the use of shaders for some of the mod's renders. (Requires game restart)
|
#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).
|
#Set this to false to disable the wireframe when looking a block bound to something (spreaders, flowers, etc).
|
||||||
boundBlockWireframe = true
|
boundBlockWireframe = true
|
||||||
#Set this to false to disable rendering of accessories in the player.
|
#Set this to false to disable rendering of accessories in the player.
|
||||||
|
@ -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.
|
||||||
|
|
@ -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
|
||||||
|
}
|
@ -70,6 +70,15 @@
|
|||||||
"scale_damage": "normal",
|
"scale_damage": "normal",
|
||||||
"scale_speed": "none"
|
"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": {
|
"alexscaves:tremorzilla": {
|
||||||
"type": "static",
|
"type": "static",
|
||||||
"scaling": 5.0,
|
"scaling": 5.0,
|
||||||
@ -78,10 +87,19 @@
|
|||||||
"scale_health": "normal",
|
"scale_health": "normal",
|
||||||
"scale_damage": "normal",
|
"scale_damage": "normal",
|
||||||
"scale_speed": "normal"
|
"scale_speed": "normal"
|
||||||
}
|
},
|
||||||
"magma_monsters:magma_monster": {
|
"arphex:spider_brood": {
|
||||||
"type": "static",
|
"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_loot": true,
|
||||||
"scale_xp": true,
|
"scale_xp": true,
|
||||||
"scale_health": "normal",
|
"scale_health": "normal",
|
||||||
|
@ -79,14 +79,23 @@
|
|||||||
"scale_damage": "normal",
|
"scale_damage": "normal",
|
||||||
"scale_speed": "normal"
|
"scale_speed": "normal"
|
||||||
},
|
},
|
||||||
"alexscaves:tremorzilla": {
|
"os:the_molten": {
|
||||||
"type": "static",
|
"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_loot": true,
|
||||||
"scale_xp": true,
|
"scale_xp": true,
|
||||||
"scale_health": "normal",
|
"scale_health": "normal",
|
||||||
"scale_damage": "normal",
|
"scale_damage": "normal",
|
||||||
"scale_speed": "normal"
|
"scale_speed": "none"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
BIN
1.20.1-FearFactoryTest/minecraft/mods/Cardinal Sins 1.0.3.jar
(Stored with Git LFS)
BIN
1.20.1-FearFactoryTest/minecraft/mods/Cardinal Sins 1.0.3.jar
(Stored with Git LFS)
Binary file not shown.
BIN
1.20.1-FearFactoryTest/minecraft/mods/Gamma_creatures-1.2.1_forge_1.20.1.jar
(Stored with Git LFS)
BIN
1.20.1-FearFactoryTest/minecraft/mods/Gamma_creatures-1.2.1_forge_1.20.1.jar
(Stored with Git LFS)
Binary file not shown.
BIN
1.20.1-FearFactoryTest/minecraft/mods/bygonenether-1.3.2-1.20.x.jar
(Stored with Git LFS)
BIN
1.20.1-FearFactoryTest/minecraft/mods/bygonenether-1.3.2-1.20.x.jar
(Stored with Git LFS)
Binary file not shown.
BIN
1.20.1-FearFactoryTest/minecraft/mods/deep-1.05b.jar
(Stored with Git LFS)
BIN
1.20.1-FearFactoryTest/minecraft/mods/deep-1.05b.jar
(Stored with Git LFS)
Binary file not shown.
BIN
1.20.1-FearFactoryTest/minecraft/mods/ominous_offerings-1.0.0-forge-1.20.1.jar
(Stored with Git LFS)
BIN
1.20.1-FearFactoryTest/minecraft/mods/ominous_offerings-1.0.0-forge-1.20.1.jar
(Stored with Git LFS)
Binary file not shown.
@ -42,8 +42,8 @@ ao:true
|
|||||||
prioritizeChunkUpdates:0
|
prioritizeChunkUpdates:0
|
||||||
biomeBlendRadius:2
|
biomeBlendRadius:2
|
||||||
renderClouds:"true"
|
renderClouds:"true"
|
||||||
resourcePacks:["vanilla","mod_resources","Moonlight Mods Dynamic Assets","fabric","file/VanillaTweaks_LowerFire.zip","file/boss-refreshed-v1.2.zip","file/MoreMobVariants_FreshAnimations_1.3.1-1.9.2.zip","file/GhastFelisAstra.zip","file/Myuu_s_Dark_Ambiance.zip"]
|
resourcePacks:["vanilla","mod_resources","Moonlight Mods Dynamic Assets","fabric","file/VanillaTweaks_LowerFire.zip","file/boss-refreshed-v1.2.zip","file/FreshAnimations_v1.9.2.zip","file/MoreMobVariants_FreshAnimations_1.3.1-1.9.2.zip","file/GhastFelisAstra.zip","file/Myuu_s_Dark_Ambiance.zip","file/AL\u0027s Spiders Revamped+FA 1.3.zip"]
|
||||||
incompatibleResourcePacks:["file/boss-refreshed-v1.2.zip","file/GhastFelisAstra.zip","file/Myuu_s_Dark_Ambiance.zip"]
|
incompatibleResourcePacks:["file/boss-refreshed-v1.2.zip","file/GhastFelisAstra.zip","file/Myuu_s_Dark_Ambiance.zip","file/AL\u0027s Spiders Revamped+FA 1.3.zip"]
|
||||||
lastServer:
|
lastServer:
|
||||||
lang:en_us
|
lang:en_us
|
||||||
soundDevice:""
|
soundDevice:""
|
||||||
@ -123,7 +123,6 @@ key_key.dragon_strike:key.keyboard.g
|
|||||||
key_key.dragon_down:key.keyboard.x
|
key_key.dragon_down:key.keyboard.x
|
||||||
key_key.dragon_change_view:key.keyboard.f7
|
key_key.dragon_change_view:key.keyboard.f7
|
||||||
key_key.hammerlib.render_item:key.keyboard.unknown
|
key_key.hammerlib.render_item:key.keyboard.unknown
|
||||||
key_key.zoniex.zoniex_jump:key.keyboard.space
|
|
||||||
key_key.evilcraft.fart:key.keyboard.p
|
key_key.evilcraft.fart:key.keyboard.p
|
||||||
key_key.evilcraft.exaltedCrafting:key.keyboard.c
|
key_key.evilcraft.exaltedCrafting:key.keyboard.c
|
||||||
key_key.apotheosis.toggle_radial_mining:key.keyboard.o:CONTROL
|
key_key.apotheosis.toggle_radial_mining:key.keyboard.o:CONTROL
|
||||||
@ -132,7 +131,6 @@ key_key.exposure.camera_controls:key.keyboard.unknown
|
|||||||
key_key.solapplepie.open_food_book:key.keyboard.unknown
|
key_key.solapplepie.open_food_book:key.keyboard.unknown
|
||||||
key_key.corpse.death_history:key.keyboard.u
|
key_key.corpse.death_history:key.keyboard.u
|
||||||
key_key.botania_corporea_request:key.keyboard.c
|
key_key.botania_corporea_request:key.keyboard.c
|
||||||
key_key.curios.open.desc:key.keyboard.g
|
|
||||||
key_iris.keybind.reload:key.keyboard.r
|
key_iris.keybind.reload:key.keyboard.r
|
||||||
key_iris.keybind.toggleShaders:key.keyboard.k
|
key_iris.keybind.toggleShaders:key.keyboard.k
|
||||||
key_iris.keybind.shaderPackSelection:key.keyboard.o
|
key_iris.keybind.shaderPackSelection:key.keyboard.o
|
||||||
@ -141,9 +139,6 @@ key_key.the_deep_void.armor_ability:key.keyboard.v
|
|||||||
key_key.the_deep_void.armor_toggle:key.keyboard.c
|
key_key.the_deep_void.armor_toggle:key.keyboard.c
|
||||||
key_key.the_deep_void.mother_call_out:key.keyboard.x
|
key_key.the_deep_void.mother_call_out:key.keyboard.x
|
||||||
key_key.the_deep_void.weaver_boots_no_gravity:key.keyboard.left.shift
|
key_key.the_deep_void.weaver_boots_no_gravity:key.keyboard.left.shift
|
||||||
key_key.sweet_calamity.flying_entity_upward_movement:key.keyboard.space
|
|
||||||
key_key.sweet_calamity.rebound:key.keyboard.r
|
|
||||||
key_ponder.keyinfo.ponder:key.keyboard.w
|
|
||||||
key_key.occultism.backpack:key.keyboard.b
|
key_key.occultism.backpack:key.keyboard.b
|
||||||
key_key.occultism.storage_remote:key.keyboard.n
|
key_key.occultism.storage_remote:key.keyboard.n
|
||||||
key_key.occultism.familiar.greedy_familiar:key.keyboard.unknown
|
key_key.occultism.familiar.greedy_familiar:key.keyboard.unknown
|
||||||
@ -163,72 +158,81 @@ key_key.occultism.familiar.beholder_familiar:key.keyboard.unknown
|
|||||||
key_key.occultism.familiar.fairy_familiar:key.keyboard.unknown
|
key_key.occultism.familiar.fairy_familiar:key.keyboard.unknown
|
||||||
key_key.occultism.familiar.mummy_familiar:key.keyboard.unknown
|
key_key.occultism.familiar.mummy_familiar:key.keyboard.unknown
|
||||||
key_key.occultism.familiar.beaver_familiar:key.keyboard.unknown
|
key_key.occultism.familiar.beaver_familiar:key.keyboard.unknown
|
||||||
key_key.scythes.copperscytheswitch:key.keyboard.left.shift
|
|
||||||
key_cos.key.opencosarmorinventory:key.keyboard.unknown
|
key_cos.key.opencosarmorinventory:key.keyboard.unknown
|
||||||
key_key.hexerei.broomDescend:key.keyboard.left.control
|
|
||||||
key_key.hexerei.book_hovering_uses:key.keyboard.u
|
|
||||||
key_key.hexerei.book_hovering_recipe:key.keyboard.r
|
|
||||||
key_key.hexerei.glasses_zoom:key.keyboard.z
|
|
||||||
key_key.cardinal_sins.armourability:key.keyboard.v
|
key_key.cardinal_sins.armourability:key.keyboard.v
|
||||||
key_placebo.toggleTrails:key.keyboard.keypad.9
|
key_placebo.toggleTrails:key.keyboard.keypad.9
|
||||||
key_placebo.toggleWings:key.keyboard.keypad.8
|
key_placebo.toggleWings:key.keyboard.keypad.8
|
||||||
key_key.gamma_creatures.jump:key.keyboard.space
|
|
||||||
key_key.gamma_creatures.up:key.keyboard.w
|
|
||||||
key_key.gamma_creatures.backward:key.keyboard.s
|
|
||||||
key_key.gamma_creatures.run:key.keyboard.left.control
|
|
||||||
key_key.gamma_creatures.ability:key.keyboard.b
|
|
||||||
key_key.gamma_creatures.attack:key.keyboard.v
|
|
||||||
key_keybind.sophisticatedbackpacks.open_backpack:key.mouse.4
|
key_keybind.sophisticatedbackpacks.open_backpack:key.mouse.4
|
||||||
key_keybind.sophisticatedbackpacks.inventory_interaction:key.keyboard.c
|
key_keybind.sophisticatedbackpacks.inventory_interaction:key.keyboard.c
|
||||||
key_keybind.sophisticatedbackpacks.tool_swap:key.keyboard.unknown
|
key_keybind.sophisticatedbackpacks.tool_swap:key.keyboard.unknown
|
||||||
key_keybind.sophisticatedbackpacks.sort:key.mouse.middle
|
key_keybind.sophisticatedbackpacks.sort:key.mouse.middle
|
||||||
key_keybind.sophisticatedbackpacks.toggle_upgrade_4:key.keyboard.unknown
|
|
||||||
key_keybind.sophisticatedbackpacks.toggle_upgrade_3:key.keyboard.unknown
|
key_keybind.sophisticatedbackpacks.toggle_upgrade_3:key.keyboard.unknown
|
||||||
key_keybind.sophisticatedbackpacks.toggle_upgrade_2:key.keyboard.x:ALT
|
key_keybind.sophisticatedbackpacks.toggle_upgrade_2:key.keyboard.x:ALT
|
||||||
key_keybind.sophisticatedbackpacks.toggle_upgrade_1:key.keyboard.z:ALT
|
key_keybind.sophisticatedbackpacks.toggle_upgrade_1:key.keyboard.z:ALT
|
||||||
key_keybind.sophisticatedbackpacks.toggle_upgrade_5:key.keyboard.unknown
|
key_keybind.sophisticatedbackpacks.toggle_upgrade_5:key.keyboard.unknown
|
||||||
|
key_keybind.sophisticatedbackpacks.toggle_upgrade_4:key.keyboard.unknown
|
||||||
key_key.cataclysm.ability:key.keyboard.x
|
key_key.cataclysm.ability:key.keyboard.x
|
||||||
key_key.cataclysm.helmet_ability:key.keyboard.c
|
key_key.cataclysm.helmet_ability:key.keyboard.c
|
||||||
key_key.cataclysm.chestplate_ability:key.keyboard.y
|
key_key.cataclysm.chestplate_ability:key.keyboard.y
|
||||||
key_key.cataclysm.boots_ability:key.keyboard.v
|
key_key.cataclysm.boots_ability:key.keyboard.v
|
||||||
key_key.ultimine_addition.show_progression_bar:key.keyboard.left.alt
|
|
||||||
key_key.ultimine_addition.open_skills_record:key.keyboard.r
|
|
||||||
key_key.fog.toggle:key.keyboard.unknown
|
|
||||||
key_key.ftbultimine:key.mouse.5
|
|
||||||
key_key.ftbteams.open_gui:key.keyboard.unknown
|
|
||||||
key_chunkloaders.keys.open_screen:key.keyboard.c
|
|
||||||
key_key.biomancy.item_default:key.keyboard.v
|
key_key.biomancy.item_default:key.keyboard.v
|
||||||
key_key.jei.nextPage:key.keyboard.unknown
|
key_dsurround.text.keybind.modConfigurationMenu:key.keyboard.equal
|
||||||
key_key.jei.nextRecipePage:key.keyboard.page.down
|
key_dsurround.text.keybind.individualSoundConfig:key.keyboard.unknown
|
||||||
key_key.jei.transferRecipeBookmark:key.mouse.left:SHIFT
|
key_dsurround.text.keybind.diagnosticHud:key.keyboard.unknown
|
||||||
key_key.jei.nextSearch:key.keyboard.down
|
key_key.cbb.launcher:key.keyboard.f7
|
||||||
key_key.jei.clearSearchBar:key.mouse.right
|
key_keyinfo.copycats.fill_copycat:key.keyboard.left.alt
|
||||||
key_key.jei.previousRecipePage:key.keyboard.page.up
|
key_key.map_atlases.open_minimap:key.keyboard.m
|
||||||
key_key.jei.focusSearch:key.keyboard.f:CONTROL
|
key_key.map_atlases.zoom_out_minimap:key.keyboard.keypad.subtract
|
||||||
key_key.jei.recipeBack:key.keyboard.backspace
|
key_key.map_atlases.zoom_in_minimap:key.keyboard.keypad.add
|
||||||
key_key.jei.cheatOneItem2:key.mouse.right
|
key_key.map_atlases.place_pin:key.keyboard.b
|
||||||
key_key.jei.toggleOverlay:key.keyboard.o:CONTROL
|
key_key.map_atlases.increase_slice:key.keyboard.unknown
|
||||||
key_key.jei.maxTransferRecipeBookmark:key.mouse.left:CONTROL
|
key_key.map_atlases.decrease_slice:key.keyboard.unknown
|
||||||
key_key.jei.toggleEditMode:key.keyboard.unknown
|
key_key.azurelib.reload:key.keyboard.r
|
||||||
key_key.jei.previousSearch:key.keyboard.up
|
key_key.azurelib.scope:key.keyboard.left.alt
|
||||||
key_key.jei.cheatOneItem:key.mouse.left
|
key_key.azurelib.fire:key.keyboard.unknown
|
||||||
key_key.jei.cheatItemStack:key.mouse.left:SHIFT
|
key_key.avaritia.filter:key.keyboard.h
|
||||||
key_key.jei.previousCategory:key.keyboard.page.up:SHIFT
|
key_key.avaritia.neutron_ring:key.keyboard.n
|
||||||
key_key.jei.toggleCheatMode:key.keyboard.unknown
|
key_ponder.keyinfo.ponder:key.keyboard.w
|
||||||
key_key.jei.copy.recipe.id:key.keyboard.unknown
|
key_key.zoniex.zoniex_jump:key.keyboard.space
|
||||||
key_key.jei.toggleHideIngredient:key.mouse.left:CONTROL
|
key_key.curios.open.desc:key.keyboard.g
|
||||||
key_key.jei.closeRecipeGui:key.keyboard.escape
|
|
||||||
key_key.jei.showUses:key.keyboard.u
|
|
||||||
key_key.jei.toggleBookmarkOverlay:key.keyboard.unknown
|
|
||||||
key_key.jei.showRecipe2:key.mouse.left
|
|
||||||
key_key.jei.showRecipe:key.keyboard.r
|
|
||||||
key_key.jei.toggleCheatModeConfigButton:key.mouse.left:CONTROL
|
|
||||||
key_key.jei.previousPage:key.keyboard.unknown
|
|
||||||
key_key.jei.showUses2:key.mouse.right
|
key_key.jei.showUses2:key.mouse.right
|
||||||
key_key.jei.bookmark:key.keyboard.a
|
key_key.jei.cheatOneItem:key.mouse.left
|
||||||
key_key.jei.toggleWildcardHideIngredient:key.mouse.right:CONTROL
|
key_key.jei.toggleWildcardHideIngredient:key.mouse.right:CONTROL
|
||||||
key_key.jei.cheatItemStack2:key.mouse.middle
|
key_key.jei.focusSearch:key.keyboard.f:CONTROL
|
||||||
|
key_key.jei.previousPage:key.keyboard.unknown
|
||||||
|
key_key.jei.showUses:key.keyboard.u
|
||||||
|
key_key.jei.transferRecipeBookmark:key.mouse.left:SHIFT
|
||||||
|
key_key.jei.previousRecipePage:key.keyboard.page.up
|
||||||
|
key_key.jei.nextSearch:key.keyboard.down
|
||||||
|
key_key.jei.recipeBack:key.keyboard.backspace
|
||||||
|
key_key.jei.previousCategory:key.keyboard.page.up:SHIFT
|
||||||
|
key_key.jei.showRecipe:key.keyboard.r
|
||||||
|
key_key.jei.cheatOneItem2:key.mouse.right
|
||||||
|
key_key.jei.toggleBookmarkOverlay:key.keyboard.unknown
|
||||||
|
key_key.jei.clearSearchBar:key.mouse.right
|
||||||
|
key_key.jei.closeRecipeGui:key.keyboard.escape
|
||||||
|
key_key.jei.copy.recipe.id:key.keyboard.unknown
|
||||||
|
key_key.jei.toggleEditMode:key.keyboard.unknown
|
||||||
|
key_key.jei.showRecipe2:key.mouse.left
|
||||||
|
key_key.jei.toggleCheatMode:key.keyboard.unknown
|
||||||
key_key.jei.nextCategory:key.keyboard.page.down:SHIFT
|
key_key.jei.nextCategory:key.keyboard.page.down:SHIFT
|
||||||
|
key_key.jei.nextPage:key.keyboard.unknown
|
||||||
|
key_key.jei.cheatItemStack:key.mouse.left:SHIFT
|
||||||
|
key_key.jei.toggleCheatModeConfigButton:key.mouse.left:CONTROL
|
||||||
|
key_key.jei.bookmark:key.keyboard.a
|
||||||
|
key_key.jei.cheatItemStack2:key.mouse.middle
|
||||||
|
key_key.jei.maxTransferRecipeBookmark:key.mouse.left:CONTROL
|
||||||
|
key_key.jei.nextRecipePage:key.keyboard.page.down
|
||||||
|
key_key.jei.toggleHideIngredient:key.mouse.left:CONTROL
|
||||||
|
key_key.jei.toggleOverlay:key.keyboard.o:CONTROL
|
||||||
|
key_key.jei.previousSearch:key.keyboard.up
|
||||||
|
key_key.sweet_calamity.flying_entity_upward_movement:key.keyboard.space
|
||||||
|
key_key.sweet_calamity.rebound:key.keyboard.r
|
||||||
|
key_key.scythes.copperscytheswitch:key.keyboard.left.shift
|
||||||
|
key_key.hexerei.broomDescend:key.keyboard.left.control
|
||||||
|
key_key.hexerei.book_hovering_uses:key.keyboard.u
|
||||||
|
key_key.hexerei.book_hovering_recipe:key.keyboard.r
|
||||||
|
key_key.hexerei.glasses_zoom:key.keyboard.z
|
||||||
key_key.ars_nouveau.open_book:key.keyboard.c
|
key_key.ars_nouveau.open_book:key.keyboard.c
|
||||||
key_key.ars_nouveau.selection_hud:key.keyboard.v
|
key_key.ars_nouveau.selection_hud:key.keyboard.v
|
||||||
key_key.ars_nouveau.next_slot:key.keyboard.x
|
key_key.ars_nouveau.next_slot:key.keyboard.x
|
||||||
@ -245,34 +249,31 @@ key_key.ars_nouveau.qc8:key.keyboard.unknown
|
|||||||
key_key.ars_nouveau.qc9:key.keyboard.unknown
|
key_key.ars_nouveau.qc9:key.keyboard.unknown
|
||||||
key_key.ars_nouveau.qc10:key.keyboard.unknown
|
key_key.ars_nouveau.qc10:key.keyboard.unknown
|
||||||
key_key.ars_nouveau.familiar_toggle:key.keyboard.unknown
|
key_key.ars_nouveau.familiar_toggle:key.keyboard.unknown
|
||||||
|
key_key.ars_elemental.open_pouch:key.keyboard.j
|
||||||
|
key_key.gamma_creatures.jump:key.keyboard.space
|
||||||
|
key_key.gamma_creatures.up:key.keyboard.w
|
||||||
|
key_key.gamma_creatures.backward:key.keyboard.s
|
||||||
|
key_key.gamma_creatures.run:key.keyboard.left.control
|
||||||
|
key_key.gamma_creatures.ability:key.keyboard.b
|
||||||
|
key_key.gamma_creatures.attack:key.keyboard.v
|
||||||
key_key.ars_additions.open_lectern:key.keyboard.unknown
|
key_key.ars_additions.open_lectern:key.keyboard.unknown
|
||||||
key_dsurround.text.keybind.modConfigurationMenu:key.keyboard.equal
|
key_key.fog.toggle:key.keyboard.unknown
|
||||||
key_dsurround.text.keybind.individualSoundConfig:key.keyboard.unknown
|
key_key.ultimine_addition.show_progression_bar:key.keyboard.left.alt
|
||||||
key_dsurround.text.keybind.diagnosticHud:key.keyboard.unknown
|
key_key.ultimine_addition.open_skills_record:key.keyboard.r
|
||||||
key_key.cbb.launcher:key.keyboard.f7
|
key_key.ftbultimine:key.mouse.5
|
||||||
|
key_key.ftbteams.open_gui:key.keyboard.unknown
|
||||||
|
key_chunkloaders.keys.open_screen:key.keyboard.c
|
||||||
key_key.trashslot.toggle:key.keyboard.t
|
key_key.trashslot.toggle:key.keyboard.t
|
||||||
key_key.trashslot.toggleLock:key.keyboard.unknown
|
key_key.trashslot.toggleLock:key.keyboard.unknown
|
||||||
key_key.trashslot.delete:key.keyboard.delete
|
key_key.trashslot.delete:key.keyboard.delete
|
||||||
key_key.trashslot.deleteAll:key.keyboard.delete:SHIFT
|
key_key.trashslot.deleteAll:key.keyboard.delete:SHIFT
|
||||||
key_keyinfo.copycats.fill_copycat:key.keyboard.left.alt
|
|
||||||
key_key.map_atlases.open_minimap:key.keyboard.m
|
|
||||||
key_key.map_atlases.zoom_out_minimap:key.keyboard.keypad.subtract
|
|
||||||
key_key.map_atlases.zoom_in_minimap:key.keyboard.keypad.add
|
|
||||||
key_key.map_atlases.place_pin:key.keyboard.b
|
|
||||||
key_key.map_atlases.increase_slice:key.keyboard.unknown
|
|
||||||
key_key.map_atlases.decrease_slice:key.keyboard.unknown
|
|
||||||
key_create.keyinfo.toolmenu:key.keyboard.left.alt
|
key_create.keyinfo.toolmenu:key.keyboard.left.alt
|
||||||
key_create.keyinfo.toolbelt:key.keyboard.left.alt
|
key_create.keyinfo.toolbelt:key.keyboard.left.alt
|
||||||
key_create.keyinfo.rotate_menu:key.keyboard.unknown
|
key_create.keyinfo.rotate_menu:key.keyboard.unknown
|
||||||
key_key.azurelib.reload:key.keyboard.r
|
|
||||||
key_key.azurelib.scope:key.keyboard.left.alt
|
|
||||||
key_key.azurelib.fire:key.keyboard.unknown
|
|
||||||
key_bloodmagic.keybind.open_holding:key.keyboard.unknown
|
key_bloodmagic.keybind.open_holding:key.keyboard.unknown
|
||||||
key_bloodmagic.keybind.cycle_holding_pos:key.keyboard.unknown:SHIFT
|
key_bloodmagic.keybind.cycle_holding_pos:key.keyboard.unknown:SHIFT
|
||||||
key_bloodmagic.keybind.cycle_holding_neg:key.keyboard.unknown:SHIFT
|
key_bloodmagic.keybind.cycle_holding_neg:key.keyboard.unknown:SHIFT
|
||||||
key_key.special_ability:key.keyboard.g
|
key_key.special_ability:key.keyboard.g
|
||||||
key_key.avaritia.filter:key.keyboard.h
|
|
||||||
key_key.avaritia.neutron_ring:key.keyboard.n
|
|
||||||
key_quark.keybind.autorun:key.keyboard.unknown
|
key_quark.keybind.autorun:key.keyboard.unknown
|
||||||
key_quark.keybind.back:key.keyboard.unknown
|
key_quark.keybind.back:key.keyboard.unknown
|
||||||
key_quark.keybind.camera_mode:key.keyboard.f12
|
key_quark.keybind.camera_mode:key.keyboard.f12
|
||||||
@ -305,10 +306,9 @@ key_quark.keybind.narrator_readout:key.keyboard.unknown
|
|||||||
key_quark.keybind.narrator_full_readout:key.keyboard.unknown
|
key_quark.keybind.narrator_full_readout:key.keyboard.unknown
|
||||||
key_quark.keybind.variant_selector:key.keyboard.r
|
key_quark.keybind.variant_selector:key.keyboard.r
|
||||||
key_supplementaries.keybind.quiver:key.keyboard.v
|
key_supplementaries.keybind.quiver:key.keyboard.v
|
||||||
key_key.ars_elemental.open_pouch:key.keyboard.j
|
|
||||||
key_key.entityculling.toggle:key.keyboard.unknown
|
key_key.entityculling.toggle:key.keyboard.unknown
|
||||||
soundCategory_master:0.5055230753311258
|
soundCategory_master:0.5055230753311258
|
||||||
soundCategory_music:0.0
|
soundCategory_music:0.3985420334507043
|
||||||
soundCategory_record:1.0
|
soundCategory_record:1.0
|
||||||
soundCategory_weather:1.0
|
soundCategory_weather:1.0
|
||||||
soundCategory_block:1.0
|
soundCategory_block:1.0
|
||||||
|
BIN
1.20.1-FearFactoryTest/minecraft/resourcepacks/AL's Spiders Revamped+FA 1.3.zip
(Stored with Git LFS)
Normal file
BIN
1.20.1-FearFactoryTest/minecraft/resourcepacks/AL's Spiders Revamped+FA 1.3.zip
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
1.20.1-FearFactoryTest/minecraft/resourcepacks/EvenBetterEnchants_v2_r1.zip
(Stored with Git LFS)
Normal file
BIN
1.20.1-FearFactoryTest/minecraft/resourcepacks/EvenBetterEnchants_v2_r1.zip
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
1.20.1-FearFactoryTest/minecraft/resourcepacks/FreshAnimations_v1.9.2.zip
(Stored with Git LFS)
Normal file
BIN
1.20.1-FearFactoryTest/minecraft/resourcepacks/FreshAnimations_v1.9.2.zip
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -3,6 +3,8 @@ born_in_chaos_v1:fallen_chaos_knight: nether, biome?
|
|||||||
born_in_chaos_v1:felsteed: 1.3 scale, undergarden
|
born_in_chaos_v1:felsteed: 1.3 scale, undergarden
|
||||||
born_in_chaos_v1:gluttonfish 1.3 scale, ocean dim
|
born_in_chaos_v1:gluttonfish 1.3 scale, ocean dim
|
||||||
magma_monster:magma_monster 10 scale, 0.1 spawn weight
|
magma_monster:magma_monster 10 scale, 0.1 spawn weight
|
||||||
|
cataclysm:leviathan 2 scale
|
||||||
|
|
||||||
Alex's Caves
|
Alex's Caves
|
||||||
Forsaken 1.3x
|
Forsaken 1.3x
|
||||||
Caniac 1.5x
|
Caniac 1.5x
|
||||||
@ -44,24 +46,45 @@ Aquamirae
|
|||||||
Maw
|
Maw
|
||||||
|
|
||||||
Arthropodphobia
|
Arthropodphobia
|
||||||
Arthropleura_Abomination 10x
|
|
||||||
Butterfly_Bewitcher_Giant 1.5x
|
|
||||||
Centipede_Evictor 1.5x
|
Centipede_Evictor 1.5x
|
||||||
Spider_Moth 2x
|
Spider_Moth 1.2x
|
||||||
Hornet_Harbinger Giant 3x
|
Hornet_Harbinger Giant 3x
|
||||||
Scorpion_Bloodluster 1.5x
|
|
||||||
Scorpion_Striker 2x
|
Scorpion_Striker 2x
|
||||||
Spider_Brood 10x
|
|
||||||
Spider_Larvae_Tiny 10x
|
|
||||||
Spider Snatcher 2x
|
Spider Snatcher 2x
|
||||||
|
|
||||||
add spawns for
|
add spawns for
|
||||||
centipede evictor
|
centipede evictor
|
||||||
crab constrictor
|
crab constrictor
|
||||||
|
|
||||||
|
Deep void:
|
||||||
|
amalgam 1.5x add loot
|
||||||
|
alpha_bone_crawler 1.5x
|
||||||
|
big_overseer loot
|
||||||
|
the_deep_void:chained_weaver 1.5x
|
||||||
|
the_deep_void:weaver 1.5x
|
||||||
|
the_deep_void:death_maw 1.5x
|
||||||
|
the_deep_void:death_maw_hidden 1.5x
|
||||||
|
the_deep_void:death_vulture 1.5x
|
||||||
|
the_deep_void:devourer 2x
|
||||||
|
the_deep_void:everhunger 1.3x
|
||||||
|
the_deep_void:mother_bone_crawler 1.5x
|
||||||
|
|
||||||
|
Hate flesh:
|
||||||
|
ihfr:gorebat 1.5x
|
||||||
|
ihfr:gutworm 2x
|
||||||
|
ihfr:hulker 3x
|
||||||
|
|
||||||
|
Legendary_monsters:
|
||||||
|
legendary_monsters:ambusher 2x
|
||||||
|
legendary_monsters:ancient_guardian 2x
|
||||||
|
legendary_monsters:chorusling 1.5x
|
||||||
|
legendary_monsters:cloud_golem 2x
|
||||||
|
legendary_monsters:frostbitten_golem 2x
|
||||||
|
legendary_monsters:lava_eater 2x
|
||||||
|
legendary_monsters:overgrown_colossus 2x
|
||||||
|
legendary_monsters:mossy_golem 2x
|
||||||
|
legendary_monsters:skeletosaurus 2x
|
||||||
|
|
||||||
|
|
||||||
------------Tweaks------------
|
------------Tweaks------------
|
||||||
Require hullbreaker (caves) drop for dimensional sea key recipe
|
Require hullbreaker (caves) drop for dimensional sea key recipe
|
||||||
|
Reference in New Issue
Block a user