Upload files to "/"

This commit is contained in:
NTCat 2024-05-04 01:57:46 -07:00
parent 730208f2fa
commit b9be06a7c3
122 changed files with 6845 additions and 0 deletions

View File

@ -0,0 +1,6 @@
[general]
#Number of ticks to skip to check achievements [0 for disable skip]
#Range: > 0
skipTicksAdvancements = 5

10
General.toml Normal file
View File

@ -0,0 +1,10 @@
#General mod settings
[general]
#logging
useLoggingLog = true
#-
useLoggingDebug = false
#-
useLoggingError = true

26
README.txt Normal file
View File

@ -0,0 +1,26 @@
######################################
# itemframes.json #
######################################
This file contains ItemRandomizers describing the probability distribution of items in item frames.
Item frames only spawn in certain rooms and hallway pieces.
For information on ItemRandomizers, see the bottom of this README.
######################################
# ItemRandomizers #
######################################
Describes a set of items and the probability of each item being chosen.
- entries: An object where each entry's key is an item, and each value is that item's probability of being chosen.
The total sum of all probabilities SHOULD NOT exceed 1.0!
- defaultItem: The item used for any leftover probability ranges.
For example, if the total sum of all the probabilities of the entries is 0.6, then
there is a 0.4 chance of the defaultItem being selected.
Here's an example ItemRandomizer:
{
"entries": {
"minecraft:cobblestone": 0.25,
"minecraft:air": 0.2,
"minecraft:stone_sword": 0.1
},
"defaultItem": "minecraft:iron_axe"
}
This randomizer has a 25% chance of returning cobblestone, 20% chance of choosing air,
10% chance of choosing a stone sword, and a 100 - (25 + 20 + 10) = 45% chance of choosing iron axe (since it's the default item).

BIN
allay_example.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 B

View File

@ -0,0 +1,42 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_swamp"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:mangrove_swamp"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:tundra_bog"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:ice_marsh"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:orchid_swamp"
}
]
]
}

58
anaconda_spawns.json Normal file
View File

@ -0,0 +1,58 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_swamp"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:mangrove_swamp"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:ice_marsh"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:orchid_swamp"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:amethyst_rainforest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:tropical_jungle"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_summer"
}
]
]
}

63
anteater_spawns.json Normal file
View File

@ -0,0 +1,63 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_jungle"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:bamboo_jungle"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:amethyst_canyon"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:amethyst_rainforest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:jungle_mountains"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:rocky_jungle"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:tropical_jungle"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_summer"
}
]
]
}

60
armorstands.json Normal file
View File

@ -0,0 +1,60 @@
{
"commonHelmets": {
"entries": {
"leather_helmet": 0.1,
"chainmail_helmet": 0.3,
"carved_pumpkin": 0.01,
"iron_helmet": 0.3
},
"defaultItem": "air"
},
"rareHelmets": {
"entries": {
"diamond_helmet": 0.3,
"carved_pumpkin": 0.2
},
"defaultItem": "air"
},
"commonChestplates": {
"entries": {
"chainmail_chestplate": 0.3,
"leather_chestplate": 0.1,
"iron_chestplate": 0.3
},
"defaultItem": "air"
},
"rareChestplates": {
"entries": {
"diamond_chestplate": 0.3
},
"defaultItem": "air"
},
"commonLeggings": {
"entries": {
"leather_leggings": 0.1,
"iron_leggings": 0.3,
"chainmail_leggings": 0.3
},
"defaultItem": "air"
},
"rareLeggings": {
"entries": {
"diamond_leggings": 0.3
},
"defaultItem": "air"
},
"commonBoots": {
"entries": {
"leather_boots": 0.1,
"iron_boots": 0.3,
"chainmail_boots": 0.3
},
"defaultItem": "air"
},
"rareBoots": {
"entries": {
"diamond_boots": 0.3
},
"defaultItem": "air"
}
}

BIN
background.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 943 KiB

147
bald_eagle_spawns.json Normal file
View File

@ -0,0 +1,147 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_hill"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_coniferous"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:windswept_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:blooming_plateau"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:blooming_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:bryce_canyon"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_autumn"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_spring"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_winter"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:lavender_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:lavender_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:moonlight_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:moonlight_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sakura_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sakura_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:haze_mountain"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:temperate_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:alpine_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:jade_cliffs"
}
]
]
}

91
banana_slug_spawns.json Normal file
View File

@ -0,0 +1,91 @@
{
"biomes": [
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:old_growth_pine_taiga"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:old_growth_spruce_taiga"
}
],
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_taiga"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_dense/overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_rare"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:forested_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:shield"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_autumn"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:yosemite_lowlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:redwood_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:coniferous_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:fir_clearing"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "autumnity:maple_forest"
}
]
]
}

96
bison_spawns.json Normal file
View File

@ -0,0 +1,96 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_plains"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "minecraft:is_savanna"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "forge:is_hot/overworld"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:meadow"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:field"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:forested_field"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:grassland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:pasture"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:prairie"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cold_shrubland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:rocky_shrubland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:steppe"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:valley_clearing"
}
]
]
}

11
blobfish_spawns.json Normal file
View File

@ -0,0 +1,11 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_deep_ocean"
}
]
]
}

215
blue_jay_spawns.json Normal file
View File

@ -0,0 +1,215 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_forest"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:sparse_jungle"
}
],
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_taiga"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:alpine_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:blooming_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:lavender_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:lavender_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:moonlight_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:moonlight_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sakura_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sakura_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:shield_clearing"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:valley_clearing"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:alpine_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cloud_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:forested_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:lush_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:shield"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:snowy_maple_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:snowy_shield"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:temperate_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:wintry_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:yosemite_lowlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:bryce_canyon"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_autumn"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:redwood_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:cherry_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:snowblossom_grove"
}
]
]
}

11
bone_serpent_spawns.json Normal file
View File

@ -0,0 +1,11 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_nether"
}
]
]
}

14
bountiful.json Normal file
View File

@ -0,0 +1,14 @@
{
"boardUpdateFrequency": 45,
"boardGenFrequency": 2,
"flatBonusTimePerBounty": 0,
"shouldBountiesHaveTimersAndExpire": true,
"dataPackExclusions": [
"bounty_pools/bountiful/example_pool",
"bounty_pools/*/another_example",
"bounty_decrees/other/*"
],
"objectiveModifier": 0,
"maxNumRewards": 2,
"showCompletionToast": true
}

28
bunfungus_spawns.json Normal file
View File

@ -0,0 +1,28 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_mushroom"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_rare"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:mirage_isles"
}
]
]
}

View File

@ -0,0 +1,37 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_beach"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:gravel_beach"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:dune_beach"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:stony_shore"
}
]
]
}

View File

@ -0,0 +1,42 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_ocean"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_cold/overworld"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:lukewarm_ocean"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:deep_ocean"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:deep_lukewarm_ocean"
}
]
]
}

18
caiman_spawns.json Normal file
View File

@ -0,0 +1,18 @@
{
"biomes": [
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:mangrove_swamp"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/underground_jungle"
}
]
]
}

View File

@ -0,0 +1,65 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_jungle"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:bamboo_jungle"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:mangrove_swamp"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:amethyst_canyon"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:amethyst_rainforest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:jungle_mountains"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:rocky_jungle"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:tropical_jungle"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_summer"
}
]
]
}

59
catfish_spawns.json Normal file
View File

@ -0,0 +1,59 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_swamp"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:mangrove_swamp"
}
],
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_river"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "forge:is_cold/overworld"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:orchid_swamp"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:ice_marsh"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:warm_river"
}
]
]
}

110
cave_centipede_spawns.json Normal file
View File

@ -0,0 +1,110 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "minecraft:is_ocean"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "forge:is_mushroom"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:deep_dark"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/andesite_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/desert_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/diorite_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/granite_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/ice_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/infested_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/thermal_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/crystal_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/frostfire_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/mantle_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/deep_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/tuff_caves"
}
]
]
}

11
client.json5 Normal file
View File

@ -0,0 +1,11 @@
{
"playCooldownSound": true,
"playCooldownFlash": true,
"playRollSound": true,
"hudArrowColor": 5540067,
"hudBackgroundOpacity": 50,
"showWhenFull": true,
"showHUDInCreative": false,
"showKeybinding": false,
"keybindingLabelPosition": "LEFT"
}

110
cockroach_spawns.json Normal file
View File

@ -0,0 +1,110 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "minecraft:is_ocean"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "forge:is_mushroom"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:deep_dark"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/andesite_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/desert_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/diorite_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/granite_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/ice_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/infested_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/thermal_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/crystal_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/frostfire_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/mantle_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/deep_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/tuff_caves"
}
]
]
}

18
comb_jelly_spawns.json Normal file
View File

@ -0,0 +1,18 @@
{
"biomes": [
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:frozen_ocean"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:deep_frozen_ocean"
}
]
]
}

10
config.cfg Normal file
View File

@ -0,0 +1,10 @@
##[general]
B:early_fade_out_elements = 'true';
B:allow_universal_layouts = 'false';
##[forge]
[If you disable this, Drippy will force-disable Forge's early loading screen. This could cause issues with some mods, so if you experience crashes, please turn it back on.]
B:enable_early_loading = 'true';

21
cosmaw_spawns.json Normal file
View File

@ -0,0 +1,21 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_end"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:the_end"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:small_end_islands"
}
]
]
}

11
cosmic_cod_spawns.json Normal file
View File

@ -0,0 +1,11 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_end"
}
]
]
}

View File

@ -0,0 +1,39 @@
{
"biomes": [
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:crimson_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "byg:crimson_gardens"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:visceral_heap"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "incendium:ash_barrens"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "incendium:infernal_dunes"
}
]
]
}

58
crocodile_spawns.json Normal file
View File

@ -0,0 +1,58 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_swamp"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:mangrove_swamp"
}
],
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_river"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "forge:is_cold"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:tropic_beach"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:orchid_swamp"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:red_oasis"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:warm_river"
}
]
]
}

276
crow_spawns.json Normal file
View File

@ -0,0 +1,276 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "minecraft:is_savanna"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_plains"
}
],
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_forest"
}
],
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_taiga"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cold_shrubland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:hot_shrubland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:rocky_shrubland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:shield_clearing"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:steppe"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:valley_clearing"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:alpine_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:birch_taiga"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:blooming_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:lavender_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:lavender_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:moonlight_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:moonlight_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sakura_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sakura_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:shield_clearing"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:alpine_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:forested_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:lush_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:shield"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:snowy_maple_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:temperate_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:wintry_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:yosemite_lowlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_autumn"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_spring"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_winter"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:mirage_isles"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cloud_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:cherry_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:snowblossom_grove"
}
]
]
}

View File

@ -0,0 +1,11 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
}
]
]
}

18
dropbear_spawns.json Normal file
View File

@ -0,0 +1,18 @@
{
"biomes": [
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:nether_wastes"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:crystalline_chasm"
}
]
]
}

235
easy_npc-common.toml Normal file
View File

@ -0,0 +1,235 @@
["[Main Configuration]"]
#Enable main configuration.
mainConfigurationEnabled = true
#Allow main configuration in creative mode.
mainConfigurationAllowInCreative = true
#main configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
mainConfigurationPermissionLevel = 0
["[Action Configuration] Basic Action"]
#Enable basic action configuration.
basicActionConfigurationEnabled = true
#Allow basic action configuration in creative mode.
basicActionConfigurationAllowInCreative = true
#basic action configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
basicActionConfigurationPermissionLevel = 1
["[Action Configuration] Dialog Action"]
#Enable dialog action configuration.
dialogActionConfigurationEnabled = true
#Allow dialog action configuration in creative mode.
dialogActionConfigurationAllowInCreative = true
#dialog action configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
dialogActionConfigurationPermissionLevel = 1
["[Action Configuration] Distance Action"]
#Enable distance action configuration.
distanceActionConfigurationEnabled = true
#Allow distance action configuration in creative mode.
distanceActionConfigurationAllowInCreative = true
#distance action configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
distanceActionConfigurationPermissionLevel = 1
["[Dialog Configuration] None Dialog"]
#Enable none dialog configuration.
noneDialogConfigurationEnabled = true
#Allow none dialog configuration in creative mode.
noneDialogConfigurationAllowInCreative = true
#none dialog configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
noneDialogConfigurationPermissionLevel = 0
["[Dialog Configuration] Basic Dialog"]
#Enable basic dialog configuration.
basicDialogConfigurationEnabled = true
#Allow basic dialog configuration in creative mode.
basicDialogConfigurationAllowInCreative = true
#basic dialog configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
basicDialogConfigurationPermissionLevel = 0
["[Dialog Configuration] Yes/No Dialog"]
#Enable yes/no dialog configuration.
yesNoDialogConfigurationEnabled = true
#Allow yes/no dialog configuration in creative mode.
yesNoDialogConfigurationAllowInCreative = true
#yes/no dialog configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
yesNoDialogConfigurationPermissionLevel = 0
["[Skin Configuration] Default Skin"]
#Enable default skin configuration.
defaultSkinConfigurationEnabled = true
#Allow default skin configuration in creative mode.
defaultSkinConfigurationAllowInCreative = true
#default skin configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
defaultSkinConfigurationPermissionLevel = 0
["[Skin Configuration] Player Skin"]
#Enable player skin configuration.
playerSkinConfigurationEnabled = true
#Allow player skin configuration in creative mode.
playerSkinConfigurationAllowInCreative = true
#player skin configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
playerSkinConfigurationPermissionLevel = 1
["[Skin Configuration] Custom Skin"]
#Enable custom skin configuration.
customSkinConfigurationEnabled = true
#Allow custom skin configuration in creative mode.
customSkinConfigurationAllowInCreative = true
#custom skin configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
customSkinConfigurationPermissionLevel = 2
["[Pose Configuration] Default Pose"]
#Enable default pose configuration.
defaultPoseConfigurationEnabled = true
#Allow default pose configuration in creative mode.
defaultPoseConfigurationAllowInCreative = true
#default pose configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
defaultPoseConfigurationPermissionLevel = 0
["[Pose Configuration] Advanced Pose"]
#Enable advanced pose configuration.
advancedPoseConfigurationEnabled = true
#Allow advanced pose configuration in creative mode.
advancedPoseConfigurationAllowInCreative = true
#advanced pose configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
advancedPoseConfigurationPermissionLevel = 0
["[Pose Configuration] Advanced Pose"."[Pose Configuration] Custom Pose"]
#Enable custom pose configuration.
customPoseConfigurationEnabled = true
#Allow custom pose configuration in creative mode.
customPoseConfigurationAllowInCreative = true
#custom pose configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
customPoseConfigurationPermissionLevel = 0
["[Pose Configuration] Advanced Pose"."[Equipment Configuration]"]
#Enable equipment configuration.
equipmentConfigurationEnabled = true
#Allow equipment configuration in creative mode.
equipmentConfigurationAllowInCreative = true
#equipment configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
equipmentConfigurationPermissionLevel = 0
["[Pose Configuration] Advanced Pose"."[Position Configuration]"]
#Enable position configuration.
defaultPositionConfigurationEnabled = true
#Allow position configuration in creative mode.
defaultPositionConfigurationAllowInCreative = true
#position configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
defaultPositionConfigurationPermissionLevel = 0
["[Pose Configuration] Advanced Pose"."[Rotation Configuration]"]
#Enable rotation configuration.
defaultRotationConfigurationEnabled = true
#Allow rotation configuration in creative mode.
defaultRotationConfigurationAllowInCreative = true
#rotation configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
defaultRotationConfigurationPermissionLevel = 0
["[Pose Configuration] Advanced Pose"."[Scale Configuration]"]
#Enable scale configuration.
scaleConfigurationEnabled = true
#Allow scale configuration in creative mode.
scaleConfigurationAllowInCreative = true
#scale configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
scaleConfigurationPermissionLevel = 0
["[Pose Configuration] Advanced Pose"."[Export Configuration] Export Custom Preset"]
#Enable custom export preset configuration.
customExportPresetConfigurationEnabled = true
#Allow custom export preset configuration in creative mode.
customExportPresetConfigurationAllowInCreative = true
#custom export preset configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
customExportPresetConfigurationPermissionLevel = 0
["[Pose Configuration] Advanced Pose"."[Export Configuration] Export World Preset"]
#Enable world export preset configuration.
worldExportPresetConfigurationEnabled = true
#Allow world export preset configuration in creative mode.
worldExportPresetConfigurationAllowInCreative = true
#world export preset configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
worldExportPresetConfigurationPermissionLevel = 0
["[Pose Configuration] Advanced Pose"."[Import Configuration] Import Default Preset"]
#Enable default import preset configuration.
defaultImportPresetConfigurationEnabled = true
#Allow default import preset configuration in creative mode.
defaultImportPresetConfigurationAllowInCreative = true
#default import preset configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
defaultImportPresetConfigurationPermissionLevel = 0
["[Pose Configuration] Advanced Pose"."[Import Configuration] Import Custom Preset"]
#Enable custom import preset configuration.
customImportPresetConfigurationEnabled = true
#Allow custom import preset configuration in creative mode.
customImportPresetConfigurationAllowInCreative = true
#custom import preset configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
customImportPresetConfigurationPermissionLevel = 0
["[Pose Configuration] Advanced Pose"."[Import Configuration] Import Server Preset"]
#Enable world import preset configuration.
worldImportPresetConfigurationEnabled = true
#Allow world import preset configuration in creative mode.
worldImportPresetConfigurationAllowInCreative = true
#world import preset configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
worldImportPresetConfigurationPermissionLevel = 0
["[Pose Configuration] Advanced Pose"."[Trading Configuration] Default Trading"]
#Enable none trading configuration.
noneTradingConfigurationEnabled = true
#Allow none trading configuration in creative mode.
noneTradingConfigurationAllowInCreative = true
#none trading configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
noneTradingConfigurationPermissionLevel = 0
["[Pose Configuration] Advanced Pose"."[Trading Configuration] Basic Trading"]
#Enable basic trading configuration.
basicTradingConfigurationEnabled = true
#Allow basic trading configuration in creative mode.
basicTradingConfigurationAllowInCreative = true
#basic trading configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
basicTradingConfigurationPermissionLevel = 0
["[Pose Configuration] Advanced Pose"."[Trading Configuration] Advanced Trading"]
#Enable advanced trading configuration.
advancedTradingConfigurationEnabled = true
#Allow advanced trading configuration in creative mode.
advancedTradingConfigurationAllowInCreative = true
#advanced trading configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
advancedTradingConfigurationPermissionLevel = 0
["[Pose Configuration] Advanced Pose"."[Trading Configuration] Custom Trading"]
#Enable custom trading configuration.
customTradingConfigurationEnabled = true
#Allow custom trading configuration in creative mode.
customTradingConfigurationAllowInCreative = true
#custom trading configuration permission level. (0 = everyone, 1 = moderator, 2 = gamemaster, 3 = admin, 4 = owner)
#Range: 0 ~ 4
customTradingConfigurationPermissionLevel = 0

65
elephant_spawns.json Normal file
View File

@ -0,0 +1,65 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_savanna"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:arid_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:brushland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:fractured_savanna"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:savanna_badlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:savanna_slopes"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:shrubland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:red_oasis"
}
]
]
}

91
emu_spawns.json Normal file
View File

@ -0,0 +1,91 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_badlands"
}
],
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_savanna"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:arid_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:brushland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:fractured_savanna"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:savanna_badlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:savanna_slopes"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:warped_mesa"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:white_mesa"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:red_oasis"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:lush_desert"
}
]
]
}

23
enchantments.json Normal file
View File

@ -0,0 +1,23 @@
{
"longfooted": {
"enabled": true,
"max_level": 5,
"min_cost": 12,
"step_cost": 12,
"bonus_per_level": 1.0
},
"acrobat": {
"enabled": true,
"max_level": 10,
"min_cost": 15,
"step_cost": 14,
"bonus_per_level": 0.1
},
"multi_roll": {
"enabled": true,
"max_level": 4,
"min_cost": 15,
"step_cost": 17,
"bonus_per_level": 1.0
}
}

16
endergrade_spawns.json Normal file
View File

@ -0,0 +1,16 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_end"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:the_end"
}
]
]
}

31
enderiophage_spawns.json Normal file
View File

@ -0,0 +1,31 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_end"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:the_end"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:end_barrens"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:end_highlands"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:small_end_islands"
}
]
]
}

BIN
fairy_example.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 434 B

106
fallback_compatibility.json Normal file
View File

@ -0,0 +1,106 @@
{
"schema_version": 1,
"blacklist_item_id_regex": "pickaxe",
"fallback_compatibility": [
{
"item_id_regex": "claymore|great_sword|greatsword",
"weapon_attributes": "bettercombat:claymore"
},
{
"item_id_regex": "great_hammer|greathammer|war_hammer|warhammer|maul",
"weapon_attributes": "bettercombat:hammer"
},
{
"item_id_regex": "double_axe|doubleaxe|war_axe|waraxe|great_axe|greataxe",
"weapon_attributes": "bettercombat:double_axe"
},
{
"item_id_regex": "scythe|whip",
"weapon_attributes": "bettercombat:scythe"
},
{
"item_id_regex": "halberd",
"weapon_attributes": "bettercombat:halberd"
},
{
"item_id_regex": "glaive",
"weapon_attributes": "bettercombat:glaive"
},
{
"item_id_regex": "spear|trident",
"weapon_attributes": "bettercombat:spear"
},
{
"item_id_regex": "lance",
"weapon_attributes": "bettercombat:lance"
},
{
"item_id_regex": "anchor",
"weapon_attributes": "bettercombat:anchor"
},
{
"item_id_regex": "battlestaff|battle_staff|staff",
"weapon_attributes": "bettercombat:staff"
},
{
"item_id_regex": "claw",
"weapon_attributes": "bettercombat:claw"
},
{
"item_id_regex": "fist|gauntlet",
"weapon_attributes": "bettercombat:fist"
},
{
"item_id_regex": "impaled",
"weapon_attributes": "bettercombat:trident"
},
{
"item_id_regex": "katana",
"weapon_attributes": "bettercombat:katana"
},
{
"item_id_regex": "rapier",
"weapon_attributes": "bettercombat:rapier"
},
{
"item_id_regex": "sickle",
"weapon_attributes": "bettercombat:sickle"
},
{
"item_id_regex": "soul_knife",
"weapon_attributes": "bettercombat:soul_knife"
},
{
"item_id_regex": "dagger|knife",
"weapon_attributes": "bettercombat:dagger"
},
{
"item_id_regex": "wand|sceptre|scepter|stave|rod",
"weapon_attributes": "bettercombat:wand"
},
{
"item_id_regex": "mace|hammer|flail|skillet",
"weapon_attributes": "bettercombat:mace"
},
{
"item_id_regex": "axe|cleaver|hatchet",
"weapon_attributes": "bettercombat:axe"
},
{
"item_id_regex": "coral_blade",
"weapon_attributes": "bettercombat:coral_blade"
},
{
"item_id_regex": "twin_blade|twinblade",
"weapon_attributes": "bettercombat:twin_blade"
},
{
"item_id_regex": "cutlass|scimitar|machete",
"weapon_attributes": "bettercombat:cutlass"
},
{
"item_id_regex": "sword|blade",
"weapon_attributes": "bettercombat:sword"
}
]
}

16
farseer.json Normal file
View File

@ -0,0 +1,16 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_end"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:the_end"
}
]
]
}

11
flutter_spawns.json Normal file
View File

@ -0,0 +1,11 @@
{
"biomes": [
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:lush_caves"
}
]
]
}

11
fly_spawns.json Normal file
View File

@ -0,0 +1,11 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
}
]
]
}

36
flying_fish_spawns.json Normal file
View File

@ -0,0 +1,36 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_ocean"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "forge:is_cold/overworld"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "forge:is_hot/overworld"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:deep_ocean"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:deep_lukewarm_ocean"
}
]
]
}

11
frilled_shark_spawns.json Normal file
View File

@ -0,0 +1,11 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_deep_ocean"
}
]
]
}

53
froststalker_spawns.json Normal file
View File

@ -0,0 +1,53 @@
{
"biomes": [
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:ice_spikes"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:frozen_peaks"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/frostfire_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:frozen_cliffs"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:glacial_chasm"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:snowy_badlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:gravel_desert"
}
]
]
}

60
gazelle_spawns.json Normal file
View File

@ -0,0 +1,60 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_savanna"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:arid_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:brushland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:fractured_savanna"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:savanna_badlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:savanna_slopes"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:shrubland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:red_oasis"
}
]
]
}

56
gelada_monkey_spawns.json Normal file
View File

@ -0,0 +1,56 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_plains"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_plateau"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:hot_shrubland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:rocky_shrubland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:steppe"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:valley_clearing"
}
]
]
}

11
giant_squid_spawns.json Normal file
View File

@ -0,0 +1,11 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_deep_ocean"
}
]
]
}

58
gorilla_spawns.json Normal file
View File

@ -0,0 +1,58 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_jungle"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:bamboo_jungle"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:amethyst_canyon"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:amethyst_rainforest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:jungle_mountains"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:rocky_jungle"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:tropical_jungle"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_summer"
}
]
]
}

215
grizzly_bear_spawns.json Normal file
View File

@ -0,0 +1,215 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_forest"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:sparse_jungle"
}
],
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_taiga"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:alpine_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:blooming_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:lavender_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:lavender_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:moonlight_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:moonlight_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sakura_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sakura_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:shield_clearing"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:valley_clearing"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:alpine_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cloud_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:forested_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:lush_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:shield"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:snowy_maple_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:snowy_shield"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:temperate_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:wintry_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:yosemite_lowlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:bryce_canyon"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_autumn"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:redwood_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:cherry_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:snowblossom_grove"
}
]
]
}

56
guster_spawns.json Normal file
View File

@ -0,0 +1,56 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_hot/overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_dry/overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_sandy"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:ancient_sands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:desert_canyon"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:desert_spires"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:ashen_savanna"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/desert_caves"
}
]
]
}

View File

@ -0,0 +1,16 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_ocean"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_hot/overworld"
}
]
]
}

9
hud_config.json Normal file
View File

@ -0,0 +1,9 @@
{
"rollWidget": {
"origin": "BOTTOM",
"offset": {
"f_82470_": 108.0,
"f_82471_": -12.0
}
}
}

BIN
humanoid_example.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 360 B

BIN
humanoid_slim_example.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 384 B

165
hummingbird_spawns.json Normal file
View File

@ -0,0 +1,165 @@
{
"biomes": [
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:flower_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:sunflower_plains"
}
],
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_jungle"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:meadow"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:blooming_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:lavender_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:lavender_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:moonlight_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:moonlight_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sakura_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sakura_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:amethyst_canyon"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:amethyst_rainforest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:jungle_mountains"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:rocky_jungle"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:tropical_jungle"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:blooming_plateau"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:valley_clearing"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:orchid_swamp"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_autumn"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_spring"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_summer"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:cherry_grove"
}
]
]
}

BIN
illager_example.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 300 B

BIN
iron_golem_example.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 451 B

48
itemframes.json Normal file
View File

@ -0,0 +1,48 @@
{
"weaponItems": {
"entries": {
"shield": 0.025,
"stone_sword": 0.025,
"golden_axe": 0.05,
"iron_axe": 0.025,
"netherite_sword": 0.005,
"golden_sword": 0.05,
"stone_axe": 0.025,
"iron_sword": 0.025
},
"defaultItem": "air"
},
"lootItems": {
"entries": {
"nether_wart": 0.1,
"gold_nugget": 0.2,
"gold_ingot": 0.1
},
"defaultItem": "air"
},
"studyItems": {
"entries": {
"paper": 0.1,
"book": 0.4,
"enchanted_book": 0.1,
"writable_book": 0.1
},
"defaultItem": "air"
},
"messHallItems": {
"entries": {
"cooked_porkchop": 0.3,
"porkchop": 0.3,
"gold_ingot": 0.2
},
"defaultItem": "air"
},
"alchemyItems": {
"entries": {
"magma_cream": 0.3,
"quartz": 0.3,
"fire_charge": 0.2
},
"defaultItem": "air"
}
}

68
jerboa_spawns.json Normal file
View File

@ -0,0 +1,68 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_dry/overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_hot/overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_sandy"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "minecraft:is_badlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:ancient_sands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:desert_canyon"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:desert_oasis"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:desert_spires"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sandstone_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:red_oasis"
}
]
]
}

91
kangaroo_spawns.json Normal file
View File

@ -0,0 +1,91 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_badlands"
}
],
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_savanna"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:arid_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:brushland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:fractured_savanna"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:savanna_badlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:savanna_slopes"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:warped_mesa"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:white_mesa"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:red_oasis"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:lush_desert"
}
]
]
}

237
keybindings.txt Normal file
View File

@ -0,0 +1,237 @@
key_key.attack:key.mouse.left:NONE
key_key.use:key.mouse.right:NONE
key_key.forward:key.keyboard.w:NONE
key_key.left:key.keyboard.a:NONE
key_key.back:key.keyboard.s:NONE
key_key.right:key.keyboard.d:NONE
key_key.jump:key.keyboard.space:NONE
key_key.sneak:key.keyboard.left.shift:NONE
key_key.sprint:key.keyboard.left.control:NONE
key_key.drop:key.keyboard.q:NONE
key_key.inventory:key.keyboard.e:NONE
key_key.chat:key.keyboard.t:NONE
key_key.playerlist:key.keyboard.tab:NONE
key_key.pickItem:key.mouse.middle:NONE
key_key.command:key.keyboard.slash:NONE
key_key.socialInteractions:key.keyboard.unknown:NONE
key_key.screenshot:key.keyboard.f2:NONE
key_key.togglePerspective:key.keyboard.f5:NONE
key_key.smoothCamera:key.keyboard.unknown:NONE
key_key.fullscreen:key.keyboard.f11:NONE
key_key.spectatorOutlines:key.keyboard.unknown:NONE
key_key.swapOffhand:key.keyboard.x:NONE
key_key.saveToolbarActivator:key.keyboard.c:NONE
key_key.loadToolbarActivator:key.keyboard.x:NONE
key_key.advancements:key.keyboard.l:NONE
key_key.hotbar.1:key.keyboard.1:NONE
key_key.hotbar.2:key.keyboard.2:NONE
key_key.hotbar.3:key.keyboard.3:NONE
key_key.hotbar.4:key.keyboard.4:NONE
key_key.hotbar.5:key.keyboard.5:NONE
key_key.hotbar.6:key.keyboard.6:NONE
key_key.hotbar.7:key.keyboard.7:NONE
key_key.hotbar.8:key.keyboard.8:NONE
key_key.hotbar.9:key.keyboard.9:NONE
key_simplemagnets.keys.toggle:key.keyboard.i:NONE
key_key.mimi.midi.gui.filecaster:key.keyboard.period:NONE
key_key.mimi.midi.gui.transmitter:key.keyboard.comma:NONE
key_key.mimi.midi.gui.settings:key.keyboard.home:NONE
key_key.mimi.midi.alloff:key.keyboard.end:NONE
key_key.mimi.midi.gui.main:key.keyboard.j:NONE
key_key.mimi.midi.gui.off:key.keyboard.k:NONE
key_key.mimi.midi.gui.seat:key.keyboard.l:NONE
key_key.modernfix.config:key.keyboard.unknown:NONE
key_key.zume.zoom:key.keyboard.unknown:NONE
key_key.zume.zoom_in:key.keyboard.unknown:NONE
key_key.zume.zoom_out:key.keyboard.unknown:NONE
key_key.paraglider.paragliderSettings:key.keyboard.p:CONTROL
key_supplementaries.keybind.quiver:key.keyboard.unknown:NONE
key_info.structure_gel.building_tool.undo:key.keyboard.z:CONTROL
key_info.structure_gel.building_tool.redo:key.keyboard.y:CONTROL
key_key.structure_gel.open_building_tool_gui:key.keyboard.r:NONE
key_key.solapplepie.open_food_book:key.keyboard.k:NONE
key_key.curios.open.desc:key.keyboard.unknown:NONE
key_iris.keybind.reload:key.keyboard.unknown:NONE
key_iris.keybind.toggleShaders:key.keyboard.unknown:NONE
key_iris.keybind.shaderPackSelection:key.keyboard.unknown:NONE
key_Options Gui:key.keyboard.unknown:NONE
key_hub_screen:key.keyboard.g:NONE
key_hotbar_toggle:key.keyboard.caps.lock:NONE
key_spell_1:key.keyboard.f:NONE
key_spell_2:key.keyboard.c:NONE
key_spell_3:key.keyboard.v:NONE
key_spell_4:key.keyboard.r:NONE
key_key.jei.toggleOverlay:key.keyboard.o:CONTROL
key_key.jei.cheatOneItem2:key.mouse.right:NONE
key_key.jei.bookmark:key.keyboard.a:NONE
key_key.jei.copy.recipe.id:key.keyboard.unknown:NONE
key_key.jei.showRecipe2:key.mouse.left:NONE
key_key.jei.showUses:key.keyboard.u:NONE
key_key.jei.nextCategory:key.keyboard.page.down:SHIFT
key_key.jei.toggleCheatMode:key.keyboard.unknown:NONE
key_key.jei.previousRecipePage:key.keyboard.page.up:NONE
key_key.jei.closeRecipeGui:key.keyboard.escape:NONE
key_key.jei.toggleEditMode:key.keyboard.unknown:NONE
key_key.jei.previousSearch:key.keyboard.up:NONE
key_key.jei.cheatItemStack2:key.mouse.middle:NONE
key_key.jei.showUses2:key.mouse.right:NONE
key_key.jei.cheatOneItem:key.mouse.left:NONE
key_key.jei.nextSearch:key.keyboard.down:NONE
key_key.jei.previousPage:key.keyboard.unknown:NONE
key_key.jei.showRecipe:key.keyboard.r:NONE
key_key.jei.cheatItemStack:key.mouse.left:SHIFT
key_key.jei.previousCategory:key.keyboard.page.up:SHIFT
key_key.jei.toggleBookmarkOverlay:key.keyboard.unknown:NONE
key_key.jei.clearSearchBar:key.mouse.right:NONE
key_key.jei.nextPage:key.keyboard.unknown:NONE
key_key.jei.toggleWildcardHideIngredient:key.mouse.right:CONTROL
key_key.jei.nextRecipePage:key.keyboard.page.down:NONE
key_key.jei.recipeBack:key.keyboard.backspace:NONE
key_key.jei.focusSearch:key.keyboard.f:CONTROL
key_key.jei.toggleCheatModeConfigButton:key.mouse.left:CONTROL
key_key.jei.toggleHideIngredient:key.mouse.left:CONTROL
key_key.wallet:key.keyboard.period:NONE
key_key.portable_terminal:key.keyboard.backslash:NONE
key_key.portable_atm:key.keyboard.equal:NONE
key_keybinds.bettercombat.feint:key.keyboard.unknown:NONE
key_keybinds.bettercombat.toggle_mine_with_weapons:key.keyboard.unknown:NONE
key_keybinds.combatroll.roll:key.keyboard.left.alt:NONE
key_Camera left:key.keyboard.left:NONE
key_Camera right:key.keyboard.right:NONE
key_Camera closer:key.keyboard.up:NONE
key_Camera farther:key.keyboard.down:NONE
key_Camera up:key.keyboard.page.up:NONE
key_Camera down:key.keyboard.page.down:NONE
key_Swap shoulder:key.keyboard.o:NONE
key_Toggle perspective:key.keyboard.unknown:NONE
key_gui.xaero_switch_waypoint_set:key.keyboard.unknown:NONE
key_gui.xaero_instant_waypoint:key.keyboard.keypad.add:NONE
key_gui.xaero_toggle_slime:key.keyboard.unknown:NONE
key_gui.xaero_toggle_grid:key.keyboard.unknown:NONE
key_gui.xaero_toggle_waypoints:key.keyboard.unknown:NONE
key_gui.xaero_toggle_map_waypoints:key.keyboard.unknown:NONE
key_gui.xaero_toggle_map:key.keyboard.unknown:NONE
key_gui.xaero_enlarge_map:key.keyboard.unknown:NONE
key_gui.xaero_waypoints_key:key.keyboard.comma:NONE
key_gui.xaero_zoom_in:key.keyboard.unknown:NONE
key_gui.xaero_zoom_out:key.keyboard.unknown:NONE
key_gui.xaero_new_waypoint:key.keyboard.n:NONE
key_gui.xaero_display_all_sets:key.keyboard.unknown:NONE
key_gui.xaero_toggle_light_overlay:key.keyboard.unknown:NONE
key_gui.xaero_toggle_entity_radar:key.keyboard.unknown:NONE
key_gui.xaero_reverse_entity_radar:key.keyboard.unknown:NONE
key_gui.xaero_toggle_manual_cave_mode:key.keyboard.unknown:NONE
key_gui.xaero_alternative_list_players:key.keyboard.unknown:NONE
key_gui.xaero_toggle_tracked_players:key.keyboard.unknown:NONE
key_gui.xaero_toggle_pac_chunk_claims:key.keyboard.unknown:NONE
key_gui.xaero_minimap_settings:key.keyboard.j:NONE
key_key.structurize.teleport:key.keyboard.unknown:NONE
key_key.structurize.move_forward:key.keyboard.up:NONE
key_key.structurize.move_back:key.keyboard.down:NONE
key_key.structurize.move_left:key.keyboard.left:NONE
key_key.structurize.move_right:key.keyboard.right:NONE
key_key.structurize.move_up:key.keyboard.keypad.add:NONE
key_key.structurize.move_down:key.keyboard.keypad.subtract:NONE
key_key.structurize.rotate_cw:key.keyboard.right:SHIFT
key_key.structurize.rotate_ccw:key.keyboard.left:SHIFT
key_key.structurize.mirror:key.keyboard.m:NONE
key_key.structurize.place:key.keyboard.enter:NONE
key_key.showcaseitem.showcaseitem:key.keyboard.t:SHIFT
key_key.modernui.openCenter:key.keyboard.k:CONTROL
key_key.modernui.zoom:key.keyboard.z:NONE
key_key.open_menu:key.keyboard.h:NONE
key_cos.key.opencosarmorinventory:key.keyboard.unknown:NONE
key_key.whistle.1:key.keyboard.1:SHIFT
key_key.whistle.2:key.keyboard.2:SHIFT
key_key.whistle.3:key.keyboard.3:SHIFT
key_key.whistle.4:key.keyboard.4:SHIFT
key_gui.xaero_open_map:key.keyboard.m:NONE
key_gui.xaero_open_settings:key.keyboard.unknown:NONE
key_gui.xaero_map_zoom_in:key.keyboard.unknown:NONE
key_gui.xaero_map_zoom_out:key.keyboard.unknown:NONE
key_gui.xaero_quick_confirm:key.keyboard.right.shift:NONE
key_gui.xaero_toggle_dimension:key.keyboard.unknown:NONE
key_placebo.toggleTrails:key.keyboard.unknown:NONE
key_placebo.toggleWings:key.keyboard.unknown:NONE
key_keybind.sophisticatedbackpacks.open_backpack:key.keyboard.b:NONE
key_keybind.sophisticatedbackpacks.inventory_interaction:key.keyboard.c:NONE
key_keybind.sophisticatedbackpacks.tool_swap:key.keyboard.unknown:NONE
key_keybind.sophisticatedbackpacks.sort:key.mouse.middle:NONE
key_keybind.sophisticatedbackpacks.toggle_upgrade_1:key.keyboard.unknown:NONE
key_keybind.sophisticatedbackpacks.toggle_upgrade_2:key.keyboard.unknown:NONE
key_keybind.sophisticatedbackpacks.toggle_upgrade_3:key.keyboard.unknown:NONE
key_keybind.sophisticatedbackpacks.toggle_upgrade_4:key.keyboard.unknown:NONE
key_keybind.sophisticatedbackpacks.toggle_upgrade_5:key.keyboard.unknown:NONE
key_equipmentcompare.key.showTooltips:key.keyboard.left.shift:NONE
key_crashutils.openscreen:key.keyboard.f12:NONE
key_crashutils.copycontainer:key.keyboard.unknown:NONE
key_crashutils.slottooltips:key.keyboard.unknown:NONE
key_key.ftbultimine:key.keyboard.grave.accent:NONE
key_key.findme.search:key.keyboard.y:NONE
key_key.findme.pull_one:key.keyboard.keypad.0:NONE
key_key.findme.pull_stack:key.keyboard.keypad.1:NONE
key_key.ftbteams.open_gui:key.keyboard.minus:NONE
key_key.ftbquests.quests:key.keyboard.u:NONE
key_key.moreoverlays.lightoverlay.desc:key.keyboard.f7:NONE
key_key.moreoverlays.chunkbounds.desc:key.keyboard.f9:NONE
key_chunkloaders.keys.open_screen:key.keyboard.f8:NONE
key_key.inventoryessentials.single_transfer:key.mouse.left:CONTROL
key_key.inventoryessentials.bulk_transfer:key.mouse.left:SHIFT
key_key.inventoryessentials.bulk_transfer_modifier:key.keyboard.left.control:NONE
key_key.inventoryessentials.bulk_transfer_all:key.mouse.left:NONE
key_key.inventoryessentials.bulk_transfer_all_modifier:key.keyboard.space:NONE
key_key.inventoryessentials.bulk_drop:key.keyboard.q:SHIFT
key_key.inventoryessentials.bulk_drop_modifier:key.keyboard.left.control:NONE
key_key.inventoryessentials.screen_bulk_drop:key.mouse.left:SHIFT
key_key.inventoryessentials.drag_transfer:key.keyboard.left.shift:NONE
key_key.inventorysorter.itemin:key.mouse.100:NONE
key_key.inventorysorter.sort:key.mouse.middle:NONE
key_key.inventorysorter.itemout:key.mouse.102:NONE
key_key.trashslot.toggle:key.keyboard.apostrophe:NONE
key_key.trashslot.toggleLock:key.keyboard.unknown:NONE
key_key.trashslot.delete:key.keyboard.delete:NONE
key_key.trashslot.deleteAll:key.keyboard.delete:SHIFT
key_keybind.sophisticatedstorage.sort:key.mouse.middle:NONE
key_dropoff.key.dump:key.keyboard.unknown:NONE
key_dropoff.key.deposit:key.keyboard.unknown:NONE
key_create.keyinfo.toolmenu:key.keyboard.backslash:NONE
key_create.keyinfo.toolbelt:key.keyboard.backslash:NONE
key_key.toastcontrol.clear:key.keyboard.unknown:NONE
key_key.craftingtweaks.rotate:key.keyboard.unknown:NONE
key_key.craftingtweaks.rotate_counter_clockwise:key.keyboard.unknown:NONE
key_key.craftingtweaks.balance:key.keyboard.unknown:NONE
key_key.craftingtweaks.spread:key.keyboard.unknown:NONE
key_key.craftingtweaks.clear:key.keyboard.unknown:NONE
key_key.craftingtweaks.force_clear:key.keyboard.unknown:NONE
key_key.craftingtweaks.compressOne:key.keyboard.k:CONTROL
key_key.craftingtweaks.compressStack:key.keyboard.k:NONE
key_key.craftingtweaks.compressAll:key.keyboard.k:SHIFT
key_key.craftingtweaks.decompressOne:key.keyboard.unknown:NONE
key_key.craftingtweaks.decompressStack:key.keyboard.unknown:NONE
key_key.craftingtweaks.decompressAll:key.keyboard.unknown:NONE
key_key.craftingtweaks.refill_last:key.keyboard.tab:CONTROL
key_key.craftingtweaks.refill_last_stack:key.keyboard.tab:NONE
key_key.craftingtweaks.transfer_stack:key.keyboard.unknown:NONE
key_key.refinedstorage.focusSearchBar:key.keyboard.tab:NONE
key_key.refinedstorage.clearGridCraftingMatrix:key.keyboard.x:CONTROL
key_key.refinedstorage.openWirelessGrid:key.keyboard.unknown:NONE
key_key.refinedstorage.openWirelessFluidGrid:key.keyboard.unknown:NONE
key_key.refinedstorage.openWirelessCraftingMonitor:key.keyboard.unknown:NONE
key_key.refinedstorage.openPortableGrid:key.keyboard.unknown:NONE
key_key.jade.config:key.keyboard.semicolon:NONE
key_key.jade.show_overlay:key.keyboard.keypad.1:NONE
key_key.jade.toggle_liquid:key.keyboard.keypad.2:NONE
key_key.jade.show_recipes:key.keyboard.keypad.3:NONE
key_key.jade.show_uses:key.keyboard.keypad.4:NONE
key_key.jade.narrate:key.keyboard.unknown:NONE
key_key.jade.show_details:key.keyboard.left.shift:NONE
key_key.inventoryhud.toggle:key.keyboard.unknown:NONE
key_key.inventoryhud.openconfig:key.keyboard.insert:NONE
key_key.inventoryhud.togglepot:key.keyboard.unknown:NONE
key_key.inventoryhud.togglearm:key.keyboard.unknown:NONE
key_key.inventoryhud.toggleall:key.keyboard.unknown:NONE
key_Reload Menu | CTRL + ALT + :key.keyboard.r:NONE
key_Toggle Customization Overlay | CTRL + ALT + :key.keyboard.c:NONE
key_key.minecolonies.toggle_goggles:key.keyboard.unknown:NONE
key_key.craftpresence.config_keycode.name:scancode.0:NONE
key_key.entityculling.toggle:key.keyboard.unknown:NONE

44
komodo_dragon_spawns.json Normal file
View File

@ -0,0 +1,44 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_jungle"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "forge:is_dense/overworld"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sandstone_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:red_oasis"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_summer"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:tropics"
}
]
]
}

11
laviathan_spawns.json Normal file
View File

@ -0,0 +1,11 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_nether"
}
]
]
}

View File

@ -0,0 +1,63 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_jungle"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:bamboo_jungle"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:amethyst_canyon"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:amethyst_rainforest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:jungle_mountains"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:rocky_jungle"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:tropical_jungle"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_summer"
}
]
]
}

25
lobster_spawns.json Normal file
View File

@ -0,0 +1,25 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_beach"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:gravel_beach"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:stony_shore"
}
]
]
}

58
maned_wolf_spawns.json Normal file
View File

@ -0,0 +1,58 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_savanna"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:arid_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:brushland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:fractured_savanna"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:savanna_badlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:savanna_slopes"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:shrubland"
}
]
]
}

23
mantis_shrimp_spawns.json Normal file
View File

@ -0,0 +1,23 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_ocean"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_hot/overworld"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:mangrove_swamp"
}
]
]
}

21
mimic_octopus_spawns.json Normal file
View File

@ -0,0 +1,21 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_hot/overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_ocean"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:deep_warm_ocean"
}
]
]
}

16
mimicube_spawns.json Normal file
View File

@ -0,0 +1,16 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_end"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:the_end"
}
]
]
}

122
moose_spawns.json Normal file
View File

@ -0,0 +1,122 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_snowy"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_wasteland"
}
],
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_snowy"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_taiga"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:snowy_coniferous_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:snowy_fir_clearing"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "snowy_maple_woods"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:alpine_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:snowy_badlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:snowy_maple_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:snowy_shield"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:wintry_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:wintry_lowlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:gravel_desert"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_winter"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:snowblossom_grove"
}
]
]
}

18
mudskipper_spawns.json Normal file
View File

@ -0,0 +1,18 @@
{
"biomes": [
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:mangrove_swamp"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/underground_jungle"
}
]
]
}

28
mungus_spawns.json Normal file
View File

@ -0,0 +1,28 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_mushroom"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_rare"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:mirage_isles"
}
]
]
}

110
murmur.json Normal file
View File

@ -0,0 +1,110 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "minecraft:is_ocean"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "forge:is_mushroom"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:deep_dark"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/andesite_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/desert_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/diorite_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/granite_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/ice_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/infested_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/thermal_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/crystal_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/frostfire_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/mantle_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/deep_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/tuff_caves"
}
]
]
}

103
options.txt Normal file
View File

@ -0,0 +1,103 @@
version:3465
autoJump:false
operatorItemsTab:false
autoSuggestions:true
chatColors:true
chatLinks:true
chatLinksPrompt:true
enableVsync:false
entityShadows:true
forceUnicodeFont:false
discrete_mouse_scroll:false
invertYMouse:false
realmsNotifications:false
reducedDebugInfo:false
showSubtitles:false
directionalAudio:false
touchscreen:false
fullscreen:false
bobView:true
toggleCrouch:false
toggleSprint:false
darkMojangStudiosBackground:false
hideLightningFlashes:false
mouseSensitivity:0.5
fov:0.0
screenEffectScale:1.0
fovEffectScale:1.0
darknessEffectScale:1.0
glintSpeed:0.5
glintStrength:0.75
damageTiltStrength:1.0
highContrast:false
gamma:0.5
renderDistance:12
simulationDistance:12
entityDistanceScaling:1.0
guiScale:2
particles:0
maxFps:120
graphicsMode:1
ao:true
prioritizeChunkUpdates:0
biomeBlendRadius:2
renderClouds:"true"
resourcePacks:[]
incompatibleResourcePacks:[]
lastServer:
lang:en_us
soundDevice:""
chatVisibility:0
chatOpacity:1.0
chatLineSpacing:0.0
textBackgroundOpacity:0.5
backgroundForChatOnly:true
hideServerAddress:false
advancedItemTooltips:false
pauseOnLostFocus:true
overrideWidth:0
overrideHeight:0
chatHeightFocused:1.0
chatDelay:0.0
chatHeightUnfocused:0.4375
chatScale:1.0
chatWidth:1.0
notificationDisplayTime:1.0
mipmapLevels:4
useNativeTransport:true
mainHand:"right"
attackIndicator:1
narrator:0
tutorialStep:none
mouseWheelSensitivity:1.0
rawMouseInput:true
glDebugVerbosity:1
skipMultiplayerWarning:true
skipRealms32bitWarning:false
hideMatchedNames:true
joinedFirstServer:true
hideBundleTutorial:false
syncChunkWrites:false
showAutosaveIndicator:true
allowServerListing:true
onlyShowSecureChat:false
panoramaScrollSpeed:1.0
telemetryOptInExtra:false
onboardAccessibility:false
soundCategory_master:0.5
soundCategory_music:0.35563380281690143
soundCategory_record:1.0
soundCategory_weather:1.0
soundCategory_block:1.0
soundCategory_hostile:1.0
soundCategory_neutral:1.0
soundCategory_player:1.0
soundCategory_ambient:0.25704225352112675
soundCategory_voice:1.0
modelPart_cape:true
modelPart_jacket:true
modelPart_left_sleeve:true
modelPart_right_sleeve:true
modelPart_left_pants_leg:true
modelPart_right_pants_leg:true
modelPart_hat:true

315
options_defaults.txt Normal file
View File

@ -0,0 +1,315 @@
version:3465
autoJump:false
operatorItemsTab:false
autoSuggestions:true
chatColors:true
chatLinks:true
chatLinksPrompt:true
enableVsync:false
entityShadows:true
forceUnicodeFont:false
discrete_mouse_scroll:false
invertYMouse:false
realmsNotifications:false
reducedDebugInfo:false
showSubtitles:false
directionalAudio:false
touchscreen:false
fullscreen:false
bobView:true
toggleCrouch:false
toggleSprint:false
darkMojangStudiosBackground:false
hideLightningFlashes:false
mouseSensitivity:0.5
fov:0.0
screenEffectScale:1.0
fovEffectScale:1.0
darknessEffectScale:1.0
glintSpeed:0.5
glintStrength:0.75
damageTiltStrength:1.0
highContrast:false
gamma:0.5
renderDistance:12
simulationDistance:12
entityDistanceScaling:1.0
guiScale:2
particles:0
maxFps:120
graphicsMode:1
ao:true
prioritizeChunkUpdates:0
biomeBlendRadius:2
renderClouds:"true"
resourcePacks:["vanilla","mod_resources","builtin/towntalk","resources/resources.zip","Moonlight Mods Dynamic Assets","file/Pixelated_v1.3.2_EnhancedVisuals(nox_cgt).zip"]
incompatibleResourcePacks:["builtin/towntalk","file/Pixelated_v1.3.2_EnhancedVisuals(nox_cgt).zip"]
lastServer:
lang:en_us
soundDevice:""
chatVisibility:0
chatOpacity:1.0
chatLineSpacing:0.0
textBackgroundOpacity:0.5
backgroundForChatOnly:true
hideServerAddress:false
advancedItemTooltips:false
pauseOnLostFocus:true
overrideWidth:0
overrideHeight:0
chatHeightFocused:1.0
chatDelay:0.0
chatHeightUnfocused:0.4375
chatScale:1.0
chatWidth:1.0
notificationDisplayTime:1.0
mipmapLevels:4
useNativeTransport:true
mainHand:"right"
attackIndicator:1
narrator:0
tutorialStep:none
mouseWheelSensitivity:1.0
rawMouseInput:true
glDebugVerbosity:1
skipMultiplayerWarning:true
skipRealms32bitWarning:false
hideMatchedNames:true
joinedFirstServer:true
hideBundleTutorial:false
syncChunkWrites:false
showAutosaveIndicator:true
allowServerListing:true
onlyShowSecureChat:false
panoramaScrollSpeed:1.0
telemetryOptInExtra:false
onboardAccessibility:false
key_key.attack:key.mouse.left
key_key.use:key.mouse.right
key_key.forward:key.keyboard.w
key_key.left:key.keyboard.a
key_key.back:key.keyboard.s
key_key.right:key.keyboard.d
key_key.jump:key.keyboard.space
key_key.sneak:key.keyboard.left.shift
key_key.sprint:key.keyboard.left.control
key_key.drop:key.keyboard.q
key_key.inventory:key.keyboard.e
key_key.chat:key.keyboard.t
key_key.playerlist:key.keyboard.tab
key_key.pickItem:key.mouse.middle
key_key.command:key.keyboard.slash
key_key.socialInteractions:key.keyboard.unknown
key_key.screenshot:key.keyboard.f2
key_key.togglePerspective:key.keyboard.f5
key_key.smoothCamera:key.keyboard.unknown
key_key.fullscreen:key.keyboard.f11
key_key.spectatorOutlines:key.keyboard.unknown
key_key.swapOffhand:key.keyboard.x
key_key.saveToolbarActivator:key.keyboard.c
key_key.loadToolbarActivator:key.keyboard.x
key_key.advancements:key.keyboard.l
key_key.hotbar.1:key.keyboard.1
key_key.hotbar.2:key.keyboard.2
key_key.hotbar.3:key.keyboard.3
key_key.hotbar.4:key.keyboard.4
key_key.hotbar.5:key.keyboard.5
key_key.hotbar.6:key.keyboard.6
key_key.hotbar.7:key.keyboard.7
key_key.hotbar.8:key.keyboard.8
key_key.hotbar.9:key.keyboard.9
key_simplemagnets.keys.toggle:key.keyboard.i
key_key.modernfix.config:key.keyboard.unknown
key_supplementaries.keybind.quiver:key.keyboard.unknown
key_info.structure_gel.building_tool.undo:key.keyboard.z:CONTROL
key_info.structure_gel.building_tool.redo:key.keyboard.y:CONTROL
key_key.structure_gel.open_building_tool_gui:key.keyboard.r
key_key.solapplepie.open_food_book:key.keyboard.k
key_key.curios.open.desc:key.keyboard.unknown
key_iris.keybind.reload:key.keyboard.unknown
key_iris.keybind.toggleShaders:key.keyboard.unknown
key_iris.keybind.shaderPackSelection:key.keyboard.unknown
key_Options Gui:key.keyboard.unknown
key_key.wi_zoom.zoom:key.keyboard.z
key_hub_screen:key.keyboard.g
key_hotbar_toggle:key.keyboard.caps.lock
key_spell_1:key.keyboard.f
key_spell_2:key.keyboard.c
key_spell_3:key.keyboard.v
key_spell_4:key.keyboard.r
key_key.jei.nextRecipePage:key.keyboard.page.down
key_key.jei.copy.recipe.id:key.keyboard.unknown
key_key.jei.showRecipe2:key.mouse.left
key_key.jei.showUses:key.keyboard.u
key_key.jei.showUses2:key.mouse.right
key_key.jei.nextPage:key.keyboard.unknown
key_key.jei.showRecipe:key.keyboard.r
key_key.jei.toggleHideIngredient:key.mouse.left:CONTROL
key_key.jei.previousCategory:key.keyboard.page.up:SHIFT
key_key.jei.cheatItemStack2:key.mouse.middle
key_key.jei.clearSearchBar:key.mouse.right
key_key.jei.cheatItemStack:key.mouse.left:SHIFT
key_key.jei.bookmark:key.keyboard.a
key_key.jei.recipeBack:key.keyboard.backspace
key_key.jei.toggleOverlay:key.keyboard.o:CONTROL
key_key.jei.toggleBookmarkOverlay:key.keyboard.unknown
key_key.jei.closeRecipeGui:key.keyboard.escape
key_key.jei.toggleCheatModeConfigButton:key.mouse.left:CONTROL
key_key.jei.cheatOneItem2:key.mouse.right
key_key.jei.nextSearch:key.keyboard.down
key_key.jei.previousSearch:key.keyboard.up
key_key.jei.previousPage:key.keyboard.unknown
key_key.jei.previousRecipePage:key.keyboard.page.up
key_key.jei.toggleWildcardHideIngredient:key.mouse.right:CONTROL
key_key.jei.focusSearch:key.keyboard.f:CONTROL
key_key.jei.toggleCheatMode:key.keyboard.unknown
key_key.jei.cheatOneItem:key.mouse.left
key_key.jei.toggleEditMode:key.keyboard.unknown
key_key.jei.nextCategory:key.keyboard.page.down:SHIFT
key_key.wallet:key.keyboard.period
key_key.portable_terminal:key.keyboard.backslash
key_key.portable_atm:key.keyboard.equal
key_keybinds.bettercombat.feint:key.keyboard.unknown
key_keybinds.bettercombat.toggle_mine_with_weapons:key.keyboard.unknown
key_keybinds.combatroll.roll:key.keyboard.left.alt
key_Camera left:key.keyboard.left
key_Camera right:key.keyboard.right
key_Camera closer:key.keyboard.up
key_Camera farther:key.keyboard.down
key_Camera up:key.keyboard.page.up
key_Camera down:key.keyboard.page.down
key_Swap shoulder:key.keyboard.o
key_Toggle perspective:key.keyboard.unknown
key_gui.xaero_switch_waypoint_set:key.keyboard.unknown
key_gui.xaero_instant_waypoint:key.keyboard.keypad.add
key_gui.xaero_toggle_slime:key.keyboard.unknown
key_gui.xaero_toggle_grid:key.keyboard.unknown
key_gui.xaero_toggle_waypoints:key.keyboard.unknown
key_gui.xaero_toggle_map_waypoints:key.keyboard.unknown
key_gui.xaero_toggle_map:key.keyboard.unknown
key_gui.xaero_enlarge_map:key.keyboard.unknown
key_gui.xaero_waypoints_key:key.keyboard.comma
key_gui.xaero_zoom_in:key.keyboard.unknown
key_gui.xaero_zoom_out:key.keyboard.unknown
key_gui.xaero_new_waypoint:key.keyboard.n
key_gui.xaero_display_all_sets:key.keyboard.unknown
key_gui.xaero_toggle_light_overlay:key.keyboard.unknown
key_gui.xaero_toggle_entity_radar:key.keyboard.unknown
key_gui.xaero_reverse_entity_radar:key.keyboard.unknown
key_gui.xaero_toggle_manual_cave_mode:key.keyboard.unknown
key_gui.xaero_alternative_list_players:key.keyboard.unknown
key_gui.xaero_toggle_tracked_players:key.keyboard.unknown
key_gui.xaero_toggle_pac_chunk_claims:key.keyboard.unknown
key_gui.xaero_minimap_settings:key.keyboard.j
key_key.structurize.teleport:key.keyboard.unknown
key_key.structurize.move_forward:key.keyboard.up
key_key.structurize.move_back:key.keyboard.down
key_key.structurize.move_left:key.keyboard.left
key_key.structurize.move_right:key.keyboard.right
key_key.structurize.move_up:key.keyboard.keypad.add
key_key.structurize.move_down:key.keyboard.keypad.subtract
key_key.structurize.rotate_cw:key.keyboard.right:SHIFT
key_key.structurize.rotate_ccw:key.keyboard.left:SHIFT
key_key.structurize.mirror:key.keyboard.m
key_key.structurize.place:key.keyboard.enter
key_key.showcaseitem.showcaseitem:key.keyboard.t:SHIFT
key_key.open_menu:key.keyboard.h
key_cos.key.opencosarmorinventory:key.keyboard.unknown
key_giacomos_hud_conf.toggle_config:key.keyboard.home
key_key.whistle.1:key.keyboard.1:SHIFT
key_key.whistle.2:key.keyboard.2:SHIFT
key_key.whistle.3:key.keyboard.3:SHIFT
key_key.whistle.4:key.keyboard.4:SHIFT
key_gui.xaero_open_map:key.keyboard.m
key_gui.xaero_open_settings:key.keyboard.unknown
key_gui.xaero_map_zoom_in:key.keyboard.unknown
key_gui.xaero_map_zoom_out:key.keyboard.unknown
key_gui.xaero_quick_confirm:key.keyboard.right.shift
key_placebo.toggleTrails:key.keyboard.unknown
key_placebo.toggleWings:key.keyboard.unknown
key_keybind.sophisticatedbackpacks.open_backpack:key.keyboard.b
key_keybind.sophisticatedbackpacks.inventory_interaction:key.keyboard.c
key_keybind.sophisticatedbackpacks.tool_swap:key.keyboard.unknown
key_keybind.sophisticatedbackpacks.sort:key.mouse.middle
key_keybind.sophisticatedbackpacks.toggle_upgrade_5:key.keyboard.unknown
key_keybind.sophisticatedbackpacks.toggle_upgrade_4:key.keyboard.unknown
key_keybind.sophisticatedbackpacks.toggle_upgrade_3:key.keyboard.unknown
key_keybind.sophisticatedbackpacks.toggle_upgrade_2:key.keyboard.unknown
key_keybind.sophisticatedbackpacks.toggle_upgrade_1:key.keyboard.unknown
key_fpsreducer.key.openGui:key.keyboard.end
key_fpsreducer.key.forceIdle:key.keyboard.unknown
key_equipmentcompare.key.showTooltips:key.keyboard.left.shift
key_crashutils.openscreen:key.keyboard.f12
key_crashutils.copycontainer:key.keyboard.unknown
key_crashutils.slottooltips:key.keyboard.unknown
key_keys.reblured.toggle:key.keyboard.f10
key_key.ftbultimine:key.keyboard.grave.accent
key_key.findme.search:key.keyboard.y
key_key.ftbteams.open_gui:key.keyboard.minus
key_key.ftbquests.quests:key.keyboard.u
key_key.moreoverlays.lightoverlay.desc:key.keyboard.f7
key_key.moreoverlays.chunkbounds.desc:key.keyboard.f9
key_key.trashslot.toggle:key.keyboard.apostrophe
key_key.trashslot.toggleLock:key.keyboard.unknown
key_key.trashslot.delete:key.keyboard.delete
key_key.trashslot.deleteAll:key.keyboard.delete:SHIFT
key_keybind.sophisticatedstorage.sort:key.mouse.middle
key_dropoff.key.dump:key.keyboard.unknown
key_dropoff.key.deposit:key.keyboard.unknown
key_create.keyinfo.toolmenu:key.keyboard.backslash
key_create.keyinfo.toolbelt:key.keyboard.backslash
key_key.toastcontrol.clear:key.keyboard.unknown
key_key.craftingtweaks.rotate:key.keyboard.unknown
key_key.craftingtweaks.rotate_counter_clockwise:key.keyboard.unknown
key_key.craftingtweaks.balance:key.keyboard.unknown
key_key.craftingtweaks.spread:key.keyboard.unknown
key_key.craftingtweaks.clear:key.keyboard.unknown
key_key.craftingtweaks.force_clear:key.keyboard.unknown
key_key.craftingtweaks.compressOne:key.keyboard.k:CONTROL
key_key.craftingtweaks.compressStack:key.keyboard.k
key_key.craftingtweaks.compressAll:key.keyboard.k:SHIFT
key_key.craftingtweaks.decompressOne:key.keyboard.unknown
key_key.craftingtweaks.decompressStack:key.keyboard.unknown
key_key.craftingtweaks.decompressAll:key.keyboard.unknown
key_key.craftingtweaks.refill_last:key.keyboard.tab:CONTROL
key_key.craftingtweaks.refill_last_stack:key.keyboard.tab
key_key.craftingtweaks.transfer_stack:key.keyboard.unknown
key_key.refinedstorage.focusSearchBar:key.keyboard.tab
key_key.refinedstorage.clearGridCraftingMatrix:key.keyboard.x:CONTROL
key_key.refinedstorage.openWirelessGrid:key.keyboard.unknown
key_key.refinedstorage.openWirelessFluidGrid:key.keyboard.unknown
key_key.refinedstorage.openWirelessCraftingMonitor:key.keyboard.unknown
key_key.refinedstorage.openPortableGrid:key.keyboard.unknown
key_key.jade.config:key.keyboard.semicolon
key_key.jade.show_overlay:key.keyboard.keypad.1
key_key.jade.toggle_liquid:key.keyboard.keypad.2
key_key.jade.show_recipes:key.keyboard.keypad.3
key_key.jade.show_uses:key.keyboard.keypad.4
key_key.jade.narrate:key.keyboard.unknown
key_key.jade.show_details:key.keyboard.left.shift
key_key.inventoryhud.toggle:key.keyboard.unknown
key_key.inventoryhud.openconfig:key.keyboard.insert
key_key.inventoryhud.togglepot:key.keyboard.unknown
key_key.inventoryhud.togglearm:key.keyboard.unknown
key_key.inventoryhud.toggleall:key.keyboard.unknown
key_Reload Menu | CTRL + ALT + :key.keyboard.r
key_Toggle Customization Overlay | CTRL + ALT + :key.keyboard.c
key_key.craftpresence.config_keycode.name:key.keyboard.unknown
key_key.entityculling.toggle:key.keyboard.unknown
soundCategory_master:0.5
soundCategory_music:0.35563380281690143
soundCategory_record:1.0
soundCategory_weather:1.0
soundCategory_block:1.0
soundCategory_hostile:1.0
soundCategory_neutral:1.0
soundCategory_player:1.0
soundCategory_ambient:0.25704225352112675
soundCategory_voice:1.0
modelPart_cape:true
modelPart_jacket:true
modelPart_left_sleeve:true
modelPart_right_sleeve:true
modelPart_left_pants_leg:true
modelPart_right_pants_leg:true
modelPart_hat:true

16
orca_spawns.json Normal file
View File

@ -0,0 +1,16 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_ocean"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_cold/overworld"
}
]
]
}

14
ores.json Normal file
View File

@ -0,0 +1,14 @@
{
"oreChances": {
"entries": {
"minecraft:diamond_ore": 0.05,
"minecraft:redstone_ore[lit=false]": 0.15,
"minecraft:gold_ore": 0.2,
"minecraft:lapis_ore": 0.15,
"minecraft:emerald_ore": 0.05,
"minecraft:iron_ore": 0.2,
"minecraft:coal_ore": 0.2
},
"defaultBlock": "minecraft:coal_ore"
}
}

35
platypus_spawns.json Normal file
View File

@ -0,0 +1,35 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_river"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "forge:is_cold/overworld"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:tundra_bog"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:warm_river"
}
]
]
}

11
potoo_spawns.json Normal file
View File

@ -0,0 +1,11 @@
{
"biomes": [
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:dark_forest"
}
]
]
}

199
raccoon_spawns.json Normal file
View File

@ -0,0 +1,199 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_forest"
}
],
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "minecraft:is_savanna"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_plains"
}
],
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_taiga"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:alpine_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:birch_taiga"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:blooming_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:lavender_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:lavender_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:moonlight_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:moonlight_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sakura_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sakura_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cold_shrubland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:hot_shrubland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:rocky_shrubland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:shield_clearing"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:steppe"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:valley_clearing"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:temperate_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_autumn"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:mirage_isles"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:redwood_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:cherry_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:snowblossom_grove"
}
]
]
}

68
rain_frog_spawns.json Normal file
View File

@ -0,0 +1,68 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_dry/overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_hot/overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_sandy"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "minecraft:is_badlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:ancient_sands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:desert_canyon"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:desert_oasis"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:desert_spires"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sandstone_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:red_oasis"
}
]
]
}

11
rareblocks.json Normal file
View File

@ -0,0 +1,11 @@
{
"blockChances": {
"entries": {
"minecraft:diamond_block": 0.1,
"minecraft:quartz_block": 0.3,
"minecraft:iron_block": 0.3,
"minecraft:gold_block": 0.3
},
"defaultBlock": "minecraft:iron_block"
}
}

91
rattlesnake_spawns.json Normal file
View File

@ -0,0 +1,91 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_badlands"
}
],
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_dry/overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_hot/overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_sandy"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:ancient_sands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:desert_canyon"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:desert_oasis"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:desert_spires"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:red_oasis"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sandstone_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:warped_mesa"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:white_mesa"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:red_oasis"
}
]
]
}

1
readme.txt Normal file
View File

@ -0,0 +1 @@
If custom keybinds are not applying, you can copy options_default.txt into your modpack folder, rename it to options.txt and overwrite the existing one. You can also hit "reset keybinds" in the keybinds menu in Minecraft.

60
rhinoceros_spawns.json Normal file
View File

@ -0,0 +1,60 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_savanna"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:arid_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:brushland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:fractured_savanna"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:savanna_badlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:savanna_slopes"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:shrubland"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:red_oasis"
}
]
]
}

91
roadrunner_spawns.json Normal file
View File

@ -0,0 +1,91 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_badlands"
}
],
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_dry/overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_hot/overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_sandy"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:ancient_sands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:desert_canyon"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:desert_oasis"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:desert_spires"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:red_oasis"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sandstone_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:warped_mesa"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:white_mesa"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:red_oasis"
}
]
]
}

32
rocky_roller_spawns.json Normal file
View File

@ -0,0 +1,32 @@
{
"biomes": [
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:dripstone_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/andesite_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/diorite_caves"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:cave/granite_caves"
}
]
]
}

72
seagull_spawns.json Normal file
View File

@ -0,0 +1,72 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_beach"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:basalt_cliffs"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:granite_cliffs"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:gravel_beach"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:white_cliffs"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_autumn"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:skylands_spring"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:dune_beach"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:stony_shore"
}
]
]
}

49
seal_spawns.json Normal file
View File

@ -0,0 +1,49 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_beach"
}
],
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_ocean"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_cold/overworld"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:gravel_beach"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "biomesoplenty:dune_beach"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:stony_shore"
}
]
]
}

93
server.json5 Normal file
View File

@ -0,0 +1,93 @@
{
/* Upswing (aka windup) is the first phase of the attack (between clicking and performing the damage).
Typical duration of upswing is `weapon cooldown * 0.5`. (Weapon specific upswing values can be defined in weapon attributes)
This config allows you to change upswing duration.
Example values:
- `0.5` (default, fast paced attack initiation) upswing typically lasts 25% of the attack cooldown
- `1.0` (classic setting, realistic attack initiation) upswing typically lasts 50% of the attack cooldown
*/
"upswing_multiplier": 0.5,
// Bypass damage receive throttling of LivingEntity from player attacks.
"allow_fast_attacks": true,
// Allows client-side target search and server-side attack request execution against currently mounted entity of the player
"allow_attacking_mount": false,
// The minimum number of ticks between two attacks
"attack_interval_cap": 0,
/* Blacklist for entities that are acting as vehicle but should not be treated as protected mounts.
Classical example is an alexsmobs:crocodile attempting a death spin.
(Note all hostile mobs hittable by default, this config is to fix faulty mobs)
*/
"hostile_player_vehicles": [
"alexsmobs:crocodile"
],
// Allows vanilla sweeping mechanic to work and Sweeping Edge enchantment
"allow_vanilla_sweeping": false,
// Allows new sweeping mechanic (by Better Combat) to work, including Sweeping Edge enchantment
"allow_reworked_sweeping": false,
/* The more additional targets a weapon swing hits, the weaker it will get.
Entities struck (+1) in a swing more than this, won't get weakened any further.
*/
"reworked_sweeping_extra_target_count": 4,
/* Determines how weak the attack becomes when striking `reworked_sweeping_extra_target_count + 1` targets.
Example values:
- `0.5` -50% damage
*/
"reworked_sweeping_maximum_damage_penalty": 0.5,
/* The maximum level Sweeping Edge enchantment applied to the attackers weapon will restore this amount of penalty.
Example values:
- `0.5` restores 50% damage penalty when 3 levels are applied, so 16.66% when 1 level is applied
*/
"reworked_sweeping_enchant_restores": 0.5,
"reworked_sweeping_plays_sound": true,
"reworked_sweeping_emits_particles": true,
"reworked_sweeping_sound_and_particles_only_for_swords": true,
// Allows client-side target search to ignore obstacles. WARNING! Setting this to `false` significantly increases the load on clients.
"allow_attacking_thru_walls": false,
// Applies movement speed multiplier while attacking. (Min: 0, Max: 1). Use `0` for a full stop while attacking. Use `1` for no movement speed penalty
"movement_speed_while_attacking": 0.5,
// Determines if applying the movement speed multiplier while attacking is done smoothly or instantly
"movement_speed_applied_smoothly": true,
// Determines whether or not to apply movement speed reduction while attacking mounted
"movement_speed_effected_while_mounting": false,
// Attacks faster than a vanilla sword will do smaller knockback, proportionally.
"knockback_reduced_for_fast_attacks": true,
// Combo is reset after idling `combo_reset_rate * weapon_cooldown`
"combo_reset_rate": 3.0,
// Multiplier for `attack_range`, during target lookup on both sides. Large sized entities may be colliding with weapon hitbox, but center of entities can have bigger distance than `attack_range`
"target_search_range_multiplier": 2.0,
// Total multiplier, (examples: +30% = 1.3, -30% = 0.7)
"dual_wielding_attack_speed_multiplier": 1.2000000476837158,
// Total multiplier, (examples: +30% = 1.3, -30% = 0.7)
"dual_wielding_main_hand_damage_multiplier": 1.0,
// Total multiplier, (examples: +30% = 1.3, -30% = 0.7)
"dual_wielding_off_hand_damage_multiplier": 1.0,
/* Relations determine when players' undirected weapon swings (cleaves) will hurt another entity (target).
- `FRIENDLY` - The target can never be damaged by the player.
- `NEUTRAL` - The target can be damaged only if the player is directly looking at it.
- `HOSTILE` - The target can be damaged if located within the weapon swing area.
(NOTE: Vanilla sweeping can still hit targets, if not disabled via `allow_sweeping`)
The various relation related configs are being checked in the following order:
- `player_relations`
- `player_relation_to_passives`
- `player_relation_to_hostiles`
- `player_relation_to_other`
(The first relation to be found for the target will be applied.)
*/
"player_relations": {
"minecraft:player": "NEUTRAL",
"minecraft:villager": "NEUTRAL",
"minecraft:iron_golem": "NEUTRAL",
"guardvillagers:guard": "NEUTRAL"
},
// Relation to unspecified entities those are instance of PassiveEntity(Yarn)
"player_relation_to_passives": "HOSTILE",
// Relation to unspecified entities those are instance of HostileEntity(Yarn)
"player_relation_to_hostiles": "HOSTILE",
// Fallback relation
"player_relation_to_other": "HOSTILE",
// Try to guess and apply a preset for items without weapon attributes data file
"fallback_compatibility_enabled": true,
// Allow printing the content of weapon attributes registry
"weapon_registry_logging": false
}

BIN
servers.dat Normal file

Binary file not shown.

35
shoebill_spawns.json Normal file
View File

@ -0,0 +1,35 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "forge:is_swamp"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:mangrove_swamp"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:orchid_swamp"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:red_oasis"
}
]
]
}

BIN
skeleton_example.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 259 B

16
skelewag_spawns.json Normal file
View File

@ -0,0 +1,16 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_deep_ocean"
}
]
]
}

11
skreecher.json Normal file
View File

@ -0,0 +1,11 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "alexsmobs:skreechers_can_spawn_wardens"
}
]
]
}

108
skunk_spawns.json Normal file
View File

@ -0,0 +1,108 @@
{
"biomes": [
[
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_overworld"
},
{
"type": "BIOME_TAG",
"negate": false,
"value": "minecraft:is_forest"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "minecraft:is_savanna"
},
{
"type": "BIOME_TAG",
"negate": true,
"value": "forge:is_cold/overworld"
},
{
"type": "REGISTRY_NAME",
"negate": true,
"value": "minecraft:sparse_jungle"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:birch_taiga"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:blooming_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:mirage_isles"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:lavender_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:lavender_forest"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:moonlight_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:moonlight_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sakura_grove"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:sakura_valley"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "terralith:temperate_highlands"
}
],
[
{
"type": "REGISTRY_NAME",
"negate": false,
"value": "minecraft:cherry_grove"
}
]
]
}

Some files were not shown because too many files have changed in this diff Show More