Add Aether-themed equipment and attributes for various RPG classes, including archers, bards, berserkers, elemental wizards, forcemasters, paladins, and rogues; enhance configuration clarity across multiple files.

This commit is contained in:
Leonid Pershin
2026-05-08 11:21:07 +03:00
parent 1bfb306db6
commit f8693b498a
73 changed files with 2585 additions and 12 deletions
+23
View File
@@ -0,0 +1,23 @@
[Gameplay]
#Use the default Accessories menu instead of the Aether's Accessories Menu. WARNING: Do not enable this without emptying your equipped accessories
"Use default Accessories' menu" = false
#On world creation, the player is given an Aether Portal Frame item to automatically go to the Aether with
"Gives player Aether Portal Frame item" = false
#When the player enters the Aether, they are given a Book of Lore and Golden Parachutes as starting loot
"Gives starting loot on entry" = true
#Moves the message for when a player attacks the Slider with an incorrect item to be above the hotbar instead of in chat
"Reposition attack message above hotbar" = false
#Determines whether the Sun Spirit's dialogue when meeting him should play through every time you meet him
"Repeat Sun Spirit's battle dialogue" = true
#Determines if a message that links The Aether mod's Patreon should show
"Show Patreon message" = true
["Data Pack"]
#Sets the Aether Temporary Freezing data pack to be added to new worlds automatically
"Add Temporary Freezing automatically" = false
#Sets the Aether Ruined Portals data pack to be added to new worlds automatically
"Add Ruined Portals automatically" = false
[Modpack]
#Enables code and data pack features used for modifying Aether Portals when Immersive Portals is installed
"Enables Immersive Portals compatibility" = true
+63
View File
@@ -0,0 +1,63 @@
[Gameplay]
#Vanilla's beds will explode in the Aether
"Beds explode" = false
#Tools that aren't from the Aether will mine Aether blocks slower than tools that are from the Aether
"Debuff non-Aether tools" = true
#Ambrosium Shards can be eaten to restore a half heart of health
"Ambrosium Shards are edible" = true
#Makes Berry Bushes and Bush Stems behave consistently with Sweet Berry Bushes
"Berry Bush consistency" = false
#Makes Crystal Fruit Leaves behave consistently with Sweet Berry Bushes
"Crystal Fruit Leaves consistency" = false
#Gummy Swets when eaten restore full health instead of full hunger
"Gummy Swets restore health" = false
#Determines the limit of the amount of Life Shards a player can consume to increase their health
"Maximum consumable Life Shards" = 10
#Determines the cooldown in ticks for the Hammer of Kingbdogz's ability
"Cooldown for the Hammer of Kingbdogz projectile" = 50
#Determines the cooldown in ticks for the Cloud Staff's ability
"Cooldown for the Cloud Staff" = 40
#Makes armor abilities depend on wearing the respective gloves belonging to an armor set
"Require gloves for set abilities" = true
[Loot]
#Allows the Golden Feather to spawn in the Silver Dungeon loot table
"Golden Feather in loot" = false
#Allows the Valkyrie Cape to spawn in the Silver Dungeon loot table
"Valkyrie Cape in loot" = true
["World Generation"]
#Determines whether the Aether should generate Tall Grass blocks on terrain or not
"Generate Tall Grass in the Aether" = true
#Determines whether Holiday Trees should always be able to generate when exploring new chunks in the Aether, if true, this overrides 'Generate Holiday Trees seasonally'
"Generate Holiday Trees always" = false
#Determines whether Holiday Trees should be able to generate during the time frame of December and January when exploring new chunks in the Aether, only works if 'Generate Holiday Trees always' is set to false
"Generate Holiday Trees seasonally" = true
[Multiplayer]
#Makes the Invisibility Cloak more balanced in PVP by disabling equipment invisibility temporarily after attacks
"Balance Invisibility Cloak for PVP" = false
#Sets the time in ticks that it takes for the player to become fully invisible again after attacking when wearing an Invisibility Cloak; only works with 'Balance Invisibility Cloak for PVP'
"Invisibility Cloak visibility timer" = 50
#Makes it so that only whitelisted users or anyone with permission level 4 can use the Sun Altar on a server
"Only whitelisted users access Sun Altars" = false
#Configures what dimensions are able to have their time changed by the Sun Altar
"Configure Sun Altar dimensions" = ["aether:the_aether"]
[Modpack]
#Spawns the player in the Aether dimension; this is best enabled alongside other modpack configuration to avoid issues
"Spawns the player in the Aether" = false
#Prevents the Aether Portal from being created normally in the mod
"Disables Aether Portal creation" = false
#Prevents the player from falling back to the Overworld when they fall out of the Aether
"Disables falling into the Overworld" = false
#Removes eternal day so that the Aether has a normal daylight cycle even before defeating the Sun Spirit
"Disables eternal day" = false
#Sets the Aether's time cycle to be the same length as the Overworld's
"Overworld-length Aether time cycle" = false
#Syncs the Aether's time cycle to the Overworld's
"Syncs time cycles" = false
#Sets the ID of the dimension that the Aether Portal will send the player to
"Sets portal destination dimension" = "aether:the_aether"
#Sets the ID of the dimension that the Aether Portal will return the player to
"Sets portal return dimension" = "minecraft:overworld"
+3
View File
@@ -0,0 +1,3 @@
[Gui]
#Adds random trivia and tips to the bottom of loading screens
"Enables random trivia" = true
@@ -0,0 +1 @@
[]
+20
View File
@@ -54,6 +54,21 @@
"damage": 13.5,
"pull_time_bonus": 0.5,
"velocity_bonus": 0.75
},
"archers:aether_longbow": {
"damage": 13.5,
"pull_time_bonus": 0.5,
"velocity_bonus": 0.75
},
"archers:aether_rapid_crossbow": {
"damage": 10.5,
"pull_time_bonus": 0.0,
"velocity_bonus": 0.0
},
"archers:aether_heavy_crossbow": {
"damage": 17.0,
"pull_time_bonus": 0.75,
"velocity_bonus": 0.5
}
},
"melee_weapons": {
@@ -86,6 +101,11 @@
"attack_damage": 8.0,
"attack_speed": -2.6,
"attributes": []
},
"aether_spear": {
"attack_damage": 8.0,
"attack_speed": -2.6,
"attributes": []
}
},
"armor_sets": {
@@ -0,0 +1,17 @@
{
"modify_range": {
"//": "Determines if the range for the attribute should be modified or not.",
"//default": false,
"value": false
},
"min": {
"//": "The lowest possible value for the attribute.",
"//default": -1.0,
"value": -1.0
},
"max": {
"//": "The highest possible value for the attribute.",
"//default": 1024.0,
"value": 1024.0
}
}
@@ -0,0 +1,17 @@
{
"modify_range": {
"//": "Determines if the range for the attribute should be modified or not.",
"//default": false,
"value": false
},
"min": {
"//": "The lowest possible value for the attribute.",
"//default": 100.0,
"value": 100.0
},
"max": {
"//": "The highest possible value for the attribute.",
"//default": 2048.0,
"value": 2048.0
}
}
@@ -0,0 +1,17 @@
{
"modify_range": {
"//": "Determines if the range for the attribute should be modified or not.",
"//default": false,
"value": false
},
"min": {
"//": "The lowest possible value for the attribute.",
"//default": 100.0,
"value": 100.0
},
"max": {
"//": "The highest possible value for the attribute.",
"//default": 2048.0,
"value": 2048.0
}
}
+1 -1
View File
@@ -24,7 +24,7 @@
133
],
"floatArray": [
135.32,
500.0,
1561.23
],
"stringArray": [
+60
View File
@@ -114,6 +114,29 @@
}
}
]
},
"bards_rpg:aether_harp_crossbow": {
"damage": 8.4,
"pull_time_bonus": 0.2,
"velocity_bonus": 0.0,
"attributes": [
{
"attributeId": "spell_power:arcane",
"modifier": {
"modifierId": "ranged_weapon:ranged_weapon",
"operation": "ADD_VALUE",
"value": 4.0
}
},
{
"attributeId": "spell_power:healing",
"modifier": {
"modifierId": "ranged_weapon:ranged_weapon",
"operation": "ADD_VALUE",
"value": 3.0
}
}
]
}
},
"melee_weapons": {
@@ -327,6 +350,43 @@
"operation": "ADD_VALUE"
}
]
},
"aether_rapier": {
"attack_damage": 6.7,
"attack_speed": -2.0,
"attributes": []
},
"aether_lute": {
"attack_damage": 10.0,
"attack_speed": -3.0,
"attributes": [
{
"attribute": "spell_power:arcane",
"value": 5.0,
"operation": "ADD_VALUE"
},
{
"attribute": "spell_power:healing",
"value": 5.0,
"operation": "ADD_VALUE"
}
]
},
"aether_lyre": {
"attack_damage": 3.0,
"attack_speed": -2.2,
"attributes": [
{
"attribute": "spell_power:arcane",
"value": 2.5,
"operation": "ADD_VALUE"
},
{
"attribute": "spell_power:healing",
"value": 7.5,
"operation": "ADD_VALUE"
}
]
}
},
"armor_sets": {
@@ -103,6 +103,17 @@
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"aether_berserker_axe": {
"attack_damage": 15.0,
"attack_speed": -3.1,
"attributes": [
{
"attribute": "more_rpg_classes:rage_modifier",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
}
},
"armor_sets": {
@@ -16,20 +16,20 @@
"summonMechanic": {
"isEnabled": true,
"entitiesThatCountToSummonCounter": [
"minecraft:zombie",
"minecraft:skeleton",
"minecraft:drowned",
"minecraft:giant",
"minecraft:husk",
"minecraft:phantom",
"minecraft:zoglin",
"minecraft:zombified_piglin",
"minecraft:wither_skeleton",
"minecraft:husk",
"minecraft:skeleton_horse",
"minecraft:stray",
"minecraft:wither",
"minecraft:wither_skeleton",
"minecraft:zoglin",
"minecraft:zombie_horse",
"minecraft:zombie_villager",
"minecraft:zombified_piglin"
"minecraft:zombie",
"minecraft:drowned",
"minecraft:wither",
"minecraft:zombie_villager"
],
"numEntitiesKilledToDropSoulStar": 50
}
@@ -0,0 +1,90 @@
{
"spawn_warped_newts": {
"comment": "Spawn Warped Newts.",
"value": true
},
"spawn_manta_rays": {
"comment": "Spawn Manta Rays.",
"value": true
},
"spawn_crimson_newts": {
"comment": "Spawn Crimson Newts.",
"value": true
},
"spawn_dragonflies": {
"comment": "Spawn Dragonflies.",
"value": true
},
"spawn_mossblooms": {
"comment": "Spawn Mossblooms.",
"value": true
},
"spawn_butterflies": {
"comment": "Spawn Butterflies.",
"value": true
},
"spawn_coatis": {
"comment": "Spawn Coatis.",
"value": true
},
"spawn_red_pandas": {
"comment": "Spawn Red Pandas.",
"value": true
},
"spawn_koi": {
"comment": "Spawn Koi.",
"value": true
},
"spawn_kiwis": {
"comment": "Spawn Kiwis.",
"value": true
},
"spawn_beavers": {
"comment": "Spawn Beavers.",
"value": true
},
"do_trinkets_elytra_flight": {
"comment": "Will the Elytra and it´s variants work while worn in the cape slot provided by Trinkets?",
"value": true
},
"spawn_emperor_penguins": {
"comment": "Spawn Emperor Penguins.",
"value": true
},
"spawn_ember_tortoises": {
"comment": "Spawn Ember Tortoises.",
"value": true
},
"spawn_potion_wasps": {
"comment": "Spawn Potion Wasps.",
"value": true
},
"spawn_capybaras": {
"comment": "Spawn Capybaras.",
"value": true
},
"spawn_seahorses": {
"comment": "Spawn Seahorses.",
"value": true
},
"spawn_river_turtles": {
"comment": "Spawn River Turtles.",
"value": true
},
"spawn_chameleons": {
"comment": "Spawn Chameleons.",
"value": true
},
"spawn_echofins": {
"comment": "Spawn Echofins.",
"value": true
},
"spawn_jellyfishes": {
"comment": "Spawn Jellyfishes.",
"value": true
},
"spawn_booplets": {
"comment": "Spawn Booplets.",
"value": true
}
}
+36
View File
@@ -0,0 +1,36 @@
#The time (in real life days) deaths get stored
#-1 for infinite storage
#0 for not storing deaths at all
# Default: -1
# Range: > -1
death_storage_duration = -1
[corpse]
#The time passed (in ticks) after a corpse turns into a skeleton
# Default: 72000
# Range: > 0
skeleton_time = 72000
#If the corpse should lie on its face
lie_on_face = false
#If the corpse should wear the players equipment
show_equipment = true
#If the corpse should fall into the void
fall_into_void = false
#If the corpse should get removed when in lava
lava_damage = false
[corpse.access]
#If only the owner of the corpse can access the inventory
only_owner = false
#If everybody can access the corpse in the skeleton stage (Only if only_owner_access is set to true)
skeleton = false
[corpse.despawn]
#The time passed (in ticks) after a corpse despawns (only if empty)
# Default: 600
# Range: > 20
time = 600
#The time passed (in ticks) after a corpse despawns even if its not empty (-1 = never)
# Default: -1
# Range: > -1
force_time = -1
@@ -0,0 +1,6 @@
#General settings
[general]
#Items that should not be transferred to curios slots (format: 'modid:item')
blacklisted_items = []
#Whether cursed items should be transferred back to curios slots (true = transfer cursed items, false = don't transfer)
transfer_cursed_items = false
@@ -0,0 +1,61 @@
#.
#Settings for Farming utilities
[farming]
#.
#When harvested by Harvester, if mushroom colonies drops itself instead of corresponding mushroom.
mushroomColoniesDropSelf = false
#.
#Settings for Fishing utilities
[fishing]
#.
#If Fishing Net should check for open water.
#When disabled, the open water check will be skipped and return false.
fishingNetChecksOpenWater = true
#.
#Fishing Net's cooldown will be multiplied by this value.
#The base cooldown is the same as Fishing Rod's lure speed (100 ~ 600 ticks).
# Default: 8
# Range: 1 ~ 256
fishingNetCooldownMultiplier = 8
#.
#The maximum amount of the visited valid blocks for fishing recorded by the Fishing Net.
#Fishing Net's chance of successful catch depends on [amount] / [maximum amount] of visited valid blocks.
#Increasing this value will reduce the efficiency of Fishing Net that travels in a fixed short route.
#Example: Fishing Net placed near the rotating axis.
# Default: 8
# Range: 1 ~ 64
fishingNetMaxRecordedBlocks = 8
#.
#If Fishing Net should capture small creature and automatically process them.
#"Process" means captured entity will be discard and all drops will be collected.
fishingNetCaptureCreatureInWater = true
#.
#The maximum size (width and height) of creatures that can be caught by the Fishing Net.
# Default: 0.699999988079071
# Range: 0.009999999776482582 ~ 10.0
fishingNetCapturedCreatureMaxSize = 0.699999988079071
#.
#If creatures captured by Fishing Net should drop Nugget of Experience.
fishingNetCapturedCreatureDropExpNugget = true
#.
#Settings for Ranching utilities
[ranching]
#.
#If leashed entity automatically sits on unoccupied seat.
#When enabled, falls back to vanilla Create behaviour.
#When disabled, seated leashable entity can be dismounted by lead.
leashedEntitySitsAutomatically = false
#.
#The amount of Inventory Slot that the Chicken Roost has available.
#[@cui:RequiresReload:server]
# Default: 9
# Range: 1 ~ 27
roostingInventorySlotCount = 9
#.
#The amount of items per Inventory slot that the Chicken Roost can hold.
#[@cui:RequiresReload:server]
# Default: 1
# Range: 1 ~ 16
roostingInventorySlotSize = 1
@@ -0,0 +1,15 @@
{
"require_weapon_for_critical_strikes": true,
"disable_vanilla_jump_criticals": true,
"enable_melee_criticals": true,
"enable_ranged_criticals": true,
"enable_critical_strike_batching": false,
"sound_melee_crit_volume": 0.6,
"sound_ranged_crit_volume": 0.8,
"attribute_crit_chance_innate_bonus": 0.05,
"attribute_crit_damage_innate_bonus": 0.5,
"effect_crit_chance_per_level": 0.05,
"effect_crit_damage_per_level": 0.1,
"balance_melee_damage_multiplier": 1.0,
"balance_ranged_damage_multiplier": 1.0
}
@@ -0,0 +1,21 @@
[necklace]
# Default: 0.20000000298023224
# Range: 0.0 ~ 1.0
swim_sped = 0.20000000298023224
# Default: 0.10000000149011612
# Range: 0.0 ~ 1.0
drowned_range_debuff = 0.10000000149011612
# Default: 0.10000000149011612
# Range: 0.0 ~ 1.0
guardian_range_debuff = 0.10000000149011612
[grappling_hook]
# Default: 1.0
# Range: 0.0 ~ 10.0
launch_speed = 1.0
# Default: 4.0
# Range: 1.0 ~ 1000.0
max_speed = 4.0
# Default: 32.0
# Range: 4.0 ~ 128.0
max_distance = 32.0
+9
View File
@@ -0,0 +1,9 @@
["Dynamic Trees + Terralith Compat Mod Config"]
#If "true", implements fix for terralith's winter skylands.
#Changes ordering of biome features to enable dynamic trees to generate.
#Defaults to "true".
skylands_winter_fix_entry = true
#If "true", implements fixes for failed tree cancellation in terralith biomes.
#Replaces tree features in biomes that tree cancellation has failed.
#Defaults to "true".
replace_tree_features_fix_entry = true
@@ -233,6 +233,27 @@
"operation": "ADD_VALUE"
}
]
},
"staff_aether": {
"attack_damage": 4.0,
"attack_speed": -3.0,
"attributes": [
{
"attribute": "spell_power:earth",
"value": 8.0,
"operation": "ADD_VALUE"
},
{
"attribute": "spell_power:water",
"value": 8.0,
"operation": "ADD_VALUE"
},
{
"attribute": "spell_power:air",
"value": 8.0,
"operation": "ADD_VALUE"
}
]
}
},
"armor_sets": {
+320
View File
@@ -4,6 +4,9 @@
[types.crystal_type.biomesoplenty]
rose_quartz = true
[types.crystal_type.betterend]
ender = true
[types.metal_type.cataclysm]
witherite = true
enderite = true
@@ -31,6 +34,18 @@
[types.metal_type.createaddition]
electrum = true
[types.metal_type.witcher_rpg]
silver = true
steel = true
dark_iron = true
meteorite_silver = true
dark_steel = true
[types.metal_type.betterend]
aeternium = true
terminite = true
thallasium = true
[types.stone_type.create]
limestone = true
asurine = true
@@ -98,6 +113,15 @@
abyssmarine = true
guanostone = true
[types.stone_type.betterend]
azure_jadestone = true
sandy_jadestone = true
virid_jadestone = true
sulphuric_rock = true
flavolite = true
umbralith = true
violecite = true
[types.wood_type.cataclysm]
chorus = true
@@ -156,6 +180,18 @@
[types.wood_type.born_in_chaos_v1]
scorched = true
[types.wood_type.betterend]
dragon_tree = true
end_lotus = true
helix_tree = true
jellyshroom = true
lacugrove = true
lucernia = true
mossy_glowshroom = true
pythadendron = true
tenanea = true
umbrella_tree = true
[types.leaves_type.biomesoplenty]
null = true
origin = true
@@ -314,11 +350,19 @@
[types.leaves_type.crabbersdelight]
palm = true
[types.leaves_type.betterend]
dragon_tree = true
lacugrove = true
lucernia = true
pythadendron = true
tenanea = true
#Disables specific entries
[entries]
[entries.metal_type.minecraft]
nugget = true
bars = true
[entries.metal_type.create]
table_cloth = true
@@ -364,6 +408,17 @@
block_gears = true
block_pipes = true
[entries.metal_type.mcwfences]
cheval_de_frise = true
[entries.metal_type.mcwbridges]
bridge_pier = true
bridge = true
bridge_stair = true
[entries.metal_type.mcwwindows]
shutter = true
[entries.stone_type.create]
small_brick_wall = true
cut_wall = true
@@ -499,6 +554,97 @@
brick_pattern_slab = true
smooth_rotated_bricks_slab = true
[entries.stone_type.mcwroofs]
top_roof = true
lower_roof = true
steep_roof = true
bricks_steep_roof = true
bricks_roof = true
bricks_top_roof = true
upper_steep_roof = true
upper_lower_roof = true
attic_roof = true
bricks_attic_roof = true
roof = true
bricks_lower_roof = true
bricks_upper_steep_roof = true
bricks_upper_lower_roof = true
[entries.stone_type.mcwstairs]
mossy_brick_railing = true
mossy_brick_balcony = true
brick_terrace_stairs = true
brick_railing = true
brick_balcony = true
brick_platform = true
mossy_brick_skyline_stairs = true
brick_loft_stairs = true
mossy_brick_loft_stairs = true
mossy_brick_platform = true
brick_compact_stairs = true
mossy_brick_compact_stairs = true
mossy_brick_bulk_stairs = true
brick_skyline_stairs = true
brick_bulk_stairs = true
mossy_brick_terrace_stairs = true
[entries.stone_type.mcwbridges]
mossy_bridge_pier = true
bridge_pier = true
balustrade_bricks_bridge = true
mossy_bridge_stair = true
balustrade_mossy_bricks_bridge = true
bridge = true
mossy_brick_bridge = true
brick_bridge_stair = true
brick_bridge = true
[entries.stone_type.mcwpaths]
mossy_running_bond = true
mossy_strewn_rocky_path = true
running_bond_path = true
crystal_floor_path = true
strewn_rocky_path = true
mossy_flagstone_slab = true
running_bond_slab = true
mossy_flagstone_path = true
crystal_floor_slab = true
mossy_windmill_weave = true
mossy_crystal_floor_path = true
mossy_flagstone = true
mossy_crystal_floor_slab = true
windmill_weave_path = true
running_bond = true
windmill_weave_slab = true
mossy_running_bond_path = true
mossy_running_bond_slab = true
flagstone = true
mossy_crystal_floor = true
mossy_windmill_weave_slab = true
mossy_windmill_weave_path = true
flagstone_slab = true
crystal_floor = true
flagstone_path = true
windmill_weave = true
[entries.stone_type.mcwfences]
grass_topped_wall = true
railing_wall = true
modern_wall = true
brick_railing_gate = true
modern_brick_wall = true
railing_gate = true
railing_brick_wall = true
pillar_wall = true
[entries.stone_type.mcwwindows]
window2 = true
brick_arrow_slit = true
brick_gothic = true
pane_window = true
four_window = true
window = true
[entries.wood_type.farmersdelight]
cabinet = true
@@ -535,6 +681,177 @@
drawer = true
chair = true
[entries.wood_type.mcwroofs]
planks_upper_steep_roof = true
top_roof = true
lower_roof = true
planks_roof = true
upper_steep_roof = true
steep_roof = true
upper_lower_roof = true
attic_roof = true
planks_upper_lower_roof = true
roof = true
planks_attic_roof = true
planks_top_roof = true
planks_steep_roof = true
planks_lower_roof = true
[entries.wood_type.mcwfurnitures]
stripped_glass_table = true
stripped_desk = true
stripped_double_kitchen_cabinet = true
end_table = true
stool_chair = true
stripped_kitchen_sink = true
stripped_lower_triple_drawer = true
stripped_drawer_counter = true
bookshelf_drawer = true
double_drawer = true
stripped_coffee_table = true
stripped_counter = true
stripped_striped_chair = true
covered_desk = true
stripped_stool_chair = true
stripped_modern_wardrobe = true
cupboard_counter = true
stripped_covered_desk = true
stripped_kitchen_cabinet = true
coffee_table = true
glass_table = true
stripped_cupboard_counter = true
stripped_triple_drawer = true
stripped_chair = true
stripped_double_drawer_counter = true
stripped_modern_desk = true
stripped_bookshelf_cupboard = true
modern_wardrobe = true
lower_bookshelf_drawer = true
striped_chair = true
double_kitchen_cabinet = true
stripped_large_drawer = true
wardrobe = true
kitchen_sink = true
modern_desk = true
stripped_lower_bookshelf_drawer = true
stripped_end_table = true
drawer = true
stripped_bookshelf_drawer = true
stripped_glass_kitchen_cabinet = true
stripped_bookshelf = true
modern_chair = true
chair = true
stripped_table = true
double_drawer_counter = true
drawer_counter = true
kitchen_cabinet = true
counter = true
stripped_modern_chair = true
bookshelf_cupboard = true
table = true
desk = true
stripped_double_wardrobe = true
stripped_double_drawer = true
triple_drawer = true
lower_triple_drawer = true
glass_kitchen_cabinet = true
bookshelf = true
stripped_wardrobe = true
large_drawer = true
double_wardrobe = true
stripped_drawer = true
[entries.wood_type.mcwtrpdoors]
ranch_trapdoor = true
beach_trapdoor = true
swamp_trapdoor = true
glass_trapdoor = true
whispering_trapdoor = true
blossom_trapdoor = true
tropical_trapdoor = true
cottage_trapdoor = true
paper_trapdoor = true
bark_trapdoor = true
classic_trapdoor = true
bamboo_trapdoor = true
barn_trapdoor = true
four_panel_trapdoor = true
barred_trapdoor = true
mystic_trapdoor = true
barrel_trapdoor = true
[entries.wood_type.mcwwindows]
louvered_shutter = true
plank_pane_window = true
plank_four_window = true
stripped_log_window2 = true
log_parapet = true
window2 = true
stripped_log_four_window = true
stripped_log_window = true
plank_window = true
plank_window2 = true
pane_window = true
stripped_pane_window = true
four_window = true
plank_parapet = true
blinds = true
window = true
shutter = true
[entries.wood_type.mcwdoors]
japanese2_door = true
tropical_door = true
barn_glass_door = true
four_panel_door = true
beach_door = true
waffle_door = true
japanese_door = true
stable_door = true
modern_door = true
nether_door = true
stable_head_door = true
cottage_door = true
western_door = true
paper_door = true
bamboo_door = true
swamp_door = true
glass_door = true
barn_door = true
mystic_door = true
whispering_door = true
bark_glass_door = true
classic_door = true
[entries.wood_type.mcwfences]
highley_gate = true
picket_fence = true
stockade_fence = true
wired_fence = true
horse_fence = true
pyramid_gate = true
[entries.wood_type.mcwbridges]
bridge_pier = true
rope_bridge = true
log_bridge_middle = true
rope_bridge_stair = true
log_bridge_stair = true
rail_bridge = true
[entries.wood_type.mcwstairs]
terrace_stairs = true
compact_stairs = true
balcony = true
loft_stairs = true
railing = true
platform = true
skyline_stairs = true
bulk_stairs = true
[entries.wood_type.mcwpaths]
planks_path = true
[entries.mud_type.quark]
carved_bricks = true
pillar = true
@@ -544,6 +861,9 @@
hedge = true
leaf_carpet = true
[entries.leaves_type.mcwfences]
hedge = true
[entries.crystal_type.rechiseled]
block_edged = true
block_pillar_connecting = true
+241
View File
@@ -19,6 +19,18 @@
[types.metal_type.aquaculture]
neptunium = true
[types.metal_type.createbigcannons]
cast_iron = true
bronze = true
steel = true
nethersteel = true
[types.metal_type.born_in_chaos_v1]
dark_metal = true
[types.metal_type.createaddition]
electrum = true
[types.stone_type.create]
limestone = true
asurine = true
@@ -138,6 +150,12 @@
[types.wood_type.crabbersdelight]
palm = true
[types.wood_type.createdieselgenerators]
chip_wood = true
[types.wood_type.born_in_chaos_v1]
scorched = true
[types.leaves_type.biomesoplenty]
null = true
origin = true
@@ -318,6 +336,34 @@
tile_stairs = true
casing = true
[entries.metal_type.rechiseled]
block_plated = true
block_sheets = true
block_small_bricks_connecting = true
block_chiseled_connecting = true
block_patterned = true
block_connecting_connecting = true
block_framed = true
block_reinforced = true
block_pipes_connecting = true
block_processed = true
block_gears_connecting = true
block_framed_connecting = true
block_lines_connecting = true
block_processed_connecting = true
block_bordered_connecting = true
block_small_bricks = true
block_pulverized = true
block_bordered = true
block_chiseled = true
block_polished_connecting = true
block_smooth = true
block_patterned_connecting = true
block_lines = true
block_polished = true
block_gears = true
block_pipes = true
[entries.stone_type.create]
small_brick_wall = true
cut_wall = true
@@ -346,6 +392,113 @@
pillar = true
vertical_slab = true
[entries.stone_type.rechiseled]
squares_slab_connecting = true
brick_paving_slab_connecting = true
smooth_tiles_slab = true
brick_paving_slab = true
bordered_slab = true
squares_stairs = true
smooth_rotated_bricks_stairs = true
brick_pattern = true
slated_stairs = true
waves_connecting = true
tiles_stairs_connecting = true
smooth_large_tiles_connecting = true
bordered_slab_connecting = true
small_tiles_slab_connecting = true
path_connecting = true
bordered = true
path_stairs = true
small_bricks_stairs = true
squares_slab = true
bordered_stairs_connecting = true
diagonal_bricks_slab_connecting = true
waves_slab = true
small_tiles_stairs = true
brick_paving_stairs_connecting = true
diagonal_bricks_stairs = true
small_tiles_slab = true
rotated_bricks_slab = true
brick_paving_stairs = true
small_tiles_connecting = true
waves_stairs = true
bordered_connecting = true
waves = true
big_tiles_stairs_connecting = true
small_tiles_stairs_connecting = true
smooth_tiles_stairs = true
tiles = true
small_bricks_stairs_connecting = true
smooth_rotated_bricks_stairs_connecting = true
small_bricks_slab = true
squares_connecting = true
crushed_stairs = true
path = true
slated_slab = true
diagonal_bricks_connecting = true
big_tiles_slab_connecting = true
rotated_bricks_slab_connecting = true
crushed = true
smooth_brick_paving_connecting = true
slated = true
diagonal_bricks_stairs_connecting = true
squares = true
brick_pattern_slab_connecting = true
smooth_large_tiles = true
smooth_large_tiles_slab_connecting = true
brick_paving_connecting = true
brick_pattern_connecting = true
smooth_brick_paving_slab_connecting = true
path_stairs_connecting = true
bordered_stairs = true
waves_stairs_connecting = true
smooth_tiles_stairs_connecting = true
squares_stairs_connecting = true
crushed_slab_connecting = true
small_bricks = true
small_bricks_connecting = true
smooth_large_tiles_stairs_connecting = true
crushed_slab = true
tiles_slab_connecting = true
smooth_brick_paving_slab = true
smooth_rotated_bricks_slab_connecting = true
tiles_stairs = true
rotated_bricks_connecting = true
smooth_large_tiles_slab = true
smooth_tiles_slab_connecting = true
smooth_rotated_bricks = true
waves_slab_connecting = true
smooth_large_tiles_stairs = true
rotated_bricks = true
big_tiles_connecting = true
smooth_brick_paving = true
diagonal_bricks = true
big_tiles = true
smooth_rotated_bricks_connecting = true
smooth_brick_paving_stairs_connecting = true
tiles_connecting = true
crushed_stairs_connecting = true
brick_paving = true
path_slab = true
tiles_slab = true
path_slab_connecting = true
crushed_connecting = true
diagonal_bricks_slab = true
smooth_tiles_connecting = true
small_bricks_slab_connecting = true
big_tiles_slab = true
smooth_brick_paving_stairs = true
big_tiles_stairs = true
smooth_tiles = true
brick_pattern_stairs = true
rotated_bricks_stairs = true
brick_pattern_stairs_connecting = true
rotated_bricks_stairs_connecting = true
small_tiles = true
brick_pattern_slab = true
smooth_rotated_bricks_slab = true
[entries.wood_type.farmersdelight]
cabinet = true
@@ -373,6 +526,15 @@
hollow_log = true
vertical_slab = true
[entries.wood_type.another_furniture]
flower_box = true
shelf = true
shutter = true
bench = true
table = true
drawer = true
chair = true
[entries.mud_type.quark]
carved_bricks = true
pillar = true
@@ -381,3 +543,82 @@
[entries.leaves_type.quark]
hedge = true
leaf_carpet = true
[entries.crystal_type.rechiseled]
block_edged = true
block_pillar_connecting = true
block_cut_connecting = true
block_pillar = true
block_cut = true
block_shiny_connecting = true
block_beams_connecting = true
block_tiles_connecting = true
block_bricks = true
block_bricks_connecting = true
block_edged_connecting = true
block_shiny = true
block_polished_connecting = true
block_bordered_diagonal_tiles = true
block_tiles = true
block_jewel = true
block_diagonal_tiles = true
block_smooth = true
block_beams = true
block_bordered_diagonal_tiles_connecting = true
block_polished = true
[entries.dust_type.rechiseled]
block_pillar = true
block_chiseled_clovers_connecting = true
block_patterned = true
block_bricks = true
block_bricks_connecting = true
block_small_tiles_connecting = true
block_brick_bordered = true
block_compressed = true
block_compressed_connecting = true
block_scales = true
block_paving = true
block_scales_connecting = true
block_paving_connecting = true
block_pillar_connecting = true
block_bordered_connecting = true
block_diagonal_tiles_connecting = true
block_bordered = true
block_small_tiles = true
block_polished_connecting = true
block_diagonal_tiles = true
block_smooth = true
block_crushed = true
block_patterned_connecting = true
block_chiseled_clovers = true
block_polished = true
block_circles_connecting = true
block_circles = true
[entries.gem_type.rechiseled]
block_pillar = true
block_chiseled_connecting = true
block_plating = true
block_patterned = true
block_striped_connecting = true
block_clovers_connecting = true
block_clovers = true
block_bordered_crosses = true
block_crystal = true
block_waxed = true
block_patterned_squares_connecting = true
block_bordered_plating_connecting = true
block_pillar_connecting = true
block_waxed_connecting = true
block_chiseled = true
block_crosses = true
block_polished_connecting = true
block_patterned_squares = true
block_smooth = true
block_bordered_crosses_connecting = true
block_patterned_connecting = true
block_bordered_plating = true
block_polished = true
block_crystal_connecting = true
block_striped = true
@@ -132,6 +132,12 @@
pewen = true
thornwood = true
[types.wood_type.mynethersdelight]
powdery = true
[types.wood_type.crabbersdelight]
palm = true
[types.leaves_type.biomesoplenty]
null = true
origin = true
@@ -283,6 +289,13 @@
[types.leaves_type.alexscaves]
ancient = true
[types.leaves_type.culturaldelights]
avocado = true
fruiting_avocado = true
[types.leaves_type.crabbersdelight]
palm = true
#Disables specific entries
[entries]
@@ -80,6 +80,12 @@
myalite = true
permafrost = true
[types.stone_type.alexscaves]
galena = true
radrock = true
abyssmarine = true
guanostone = true
[types.wood_type.cataclysm]
chorus = true
@@ -122,6 +128,10 @@
mahogany = true
saxaul = true
[types.wood_type.alexscaves]
pewen = true
thornwood = true
[types.leaves_type.biomesoplenty]
null = true
origin = true
@@ -270,6 +280,9 @@
acacia_undergrowth = true
acacia_twiglet = true
[types.leaves_type.alexscaves]
ancient = true
#Disables specific entries
[entries]
+220
View File
@@ -34,6 +34,52 @@
white_sandstone = true
brimstone = true
[types.stone_type.natures_spirit]
white_kaolin = true
light_gray_kaolin = true
gray_kaolin = true
black_kaolin = true
brown_kaolin = true
red_kaolin = true
orange_kaolin = true
yellow_kaolin = true
lime_kaolin = true
green_kaolin = true
cyan_kaolin = true
light_blue_kaolin = true
blue_kaolin = true
purple_kaolin = true
magenta_kaolin = true
pink_kaolin = true
pink_sandstone = true
white_chalk = true
light_gray_chalk = true
gray_chalk = true
black_chalk = true
brown_chalk = true
red_chalk = true
orange_chalk = true
yellow_chalk = true
lime_chalk = true
green_chalk = true
cyan_chalk = true
light_blue_chalk = true
blue_chalk = true
purple_chalk = true
magenta_chalk = true
pink_chalk = true
travertine = true
chert = true
kaolin = true
[types.stone_type.quark]
soul_sandstone = true
limestone = true
jasper = true
shale = true
myalite = true
permafrost = true
[types.wood_type.cataclysm]
chorus = true
@@ -52,6 +98,30 @@
hellbark = true
empyreal = true
[types.wood_type.quark]
azalea = true
ancient = true
blossom = true
[types.wood_type.natures_spirit]
redwood = true
sugi = true
wisteria = true
fir = true
willow = true
aspen = true
maple = true
cypress = true
olive = true
joshua = true
ghaf = true
palo_verde = true
coconut = true
cedar = true
larch = true
mahogany = true
saxaul = true
[types.leaves_type.biomesoplenty]
null = true
origin = true
@@ -75,6 +145,131 @@
hellbark = true
empyreal = true
[types.leaves_type.quark]
ancient = true
blue_blossom = true
lavender_blossom = true
orange_blossom = true
yellow_blossom = true
red_blossom = true
[types.leaves_type.natures_spirit]
frosty_redwood = true
redwood = true
sugi = true
wisteria = true
white_wisteria = true
part_white_wisteria = true
blue_wisteria = true
part_blue_wisteria = true
pink_wisteria = true
part_pink_wisteria = true
purple_wisteria = true
part_purple_wisteria = true
frosty_fir = true
fir = true
willow = true
aspen = true
yellow_aspen = true
red_maple = true
orange_maple = true
yellow_maple = true
cypress = true
olive = true
joshua = true
ghaf = true
palo_verde = true
coconut = true
cedar = true
larch = true
mahogany = true
saxaul = true
[types.leaves_type.dynamictrees]
spruce = true
oak_undergrowth = true
oak = true
mangrove = true
jungle_undergrowth = true
jungle = true
flowering_azalea = true
dark_oak = true
cherry = true
birch = true
azalea = true
acacia = true
[types.leaves_type.dtnatures_spirit]
yellow_maple = true
wisteria = true
willow = true
white_wisteria = true
sugi = true
saxaul = true
red_maple = true
redwood = true
purple_wisteria = true
pink_wisteria = true
part_white_wisteria = true
part_purple_wisteria = true
part_pink_wisteria = true
part_blue_wisteria = true
palo_verde = true
orange_maple = true
olive = true
mahogany = true
larch = true
joshua = true
ghaf = true
frosty_redwood = true
frosty_fir = true
fir = true
cypress = true
coconut = true
cedar = true
blue_wisteria = true
aspen = true
[types.leaves_type.dtbop]
yellow_maple = true
willow = true
umbran = true
spruce_undergrowth = true
spruce_twiglet = true
spruce_poplar = true
sparse_oak = true
sparse_acacia = true
snowblossom_twiglet = true
snowblossom = true
red_maple = true
redwood = true
rainbow_birch = true
poplar = true
pine = true
palm = true
orange_maple = true
oak_twiglet = true
mega_dark_oak = true
maple_twiglet = true
mangrove_twiglet = true
mahogany = true
magic_poplar = true
jungle_twiglet = true
jacaranda = true
hellbark_bush = true
hellbark = true
flowering_oak_undergrowth = true
flowering_oak = true
fir = true
dying = true
dark_poplar = true
dark_oak_twiglet = true
cypress_willow = true
cherry_twiglet = true
aspen = true
acacia_undergrowth = true
acacia_twiglet = true
#Disables specific entries
[entries]
@@ -120,6 +315,11 @@
[entries.stone_type.waystones]
waystone = true
[entries.stone_type.quark]
polished_vertical_slab = true
pillar = true
vertical_slab = true
[entries.wood_type.farmersdelight]
cabinet = true
@@ -135,3 +335,23 @@
[entries.wood_type.create]
window_pane = true
window = true
[entries.wood_type.quark]
vertical_planks = true
post = true
trapped_chest = true
bookshelf = true
chest = true
stripped_post = true
ladder = true
hollow_log = true
vertical_slab = true
[entries.mud_type.quark]
carved_bricks = true
pillar = true
brick_lattice = true
[entries.leaves_type.quark]
hedge = true
leaf_carpet = true
+85
View File
@@ -7,6 +7,9 @@
[types.crystal_type.betterend]
ender = true
[types.crystal_type.aether]
ambrosium = true
[types.metal_type.cataclysm]
witherite = true
enderite = true
@@ -122,6 +125,9 @@
umbralith = true
violecite = true
[types.stone_type.aether]
holystone = true
[types.wood_type.cataclysm]
chorus = true
@@ -192,6 +198,9 @@
tenanea = true
umbrella_tree = true
[types.wood_type.aether]
skyroot = true
[types.leaves_type.biomesoplenty]
null = true
origin = true
@@ -357,6 +366,82 @@
pythadendron = true
tenanea = true
[types.leaves_type.aether]
skyroot = true
golden_oak = true
crystal = true
crystal_fruit = true
holiday = true
decorated_holiday = true
[types.leaves_type.dtterralith]
tall_dark_oak = true
spruce_twiglet = true
spruce_tall_conifer = true
spruce_sparse = true
spruce_short_conifer = true
spruce_round = true
spruce_poplar = true
spruce_moonlight = true
spruce_bush = true
oak_yellow_conifer = true
oak_twilight = true
oak_twiglet = true
oak_tall_conifer = true
oak_sparse = true
oak_scruffy_tall_conifer = true
oak_scruffy = true
oak_kapok = true
oak_conifer = true
mangrove_sparse = true
mangrove_scruffy = true
jungle_windswept = true
jungle_sparse = true
jungle_sakura = true
jungle_jacaranda = true
flowering_azalea_oasis = true
flowering_azalea_mangrove = true
flowering_azalea_mahogany = true
flowering_azalea_canopy = true
dark_oak_wide = true
dark_oak_sakura_bush = true
dark_oak_sakura = true
dark_oak_red_maple = true
dark_oak_red_conifer = true
dark_oak_red_azalea = true
dark_oak_orange_conifer = true
dark_oak_maple = true
dark_oak_jacaranda = true
dark_oak_canopy_mirage = true
dark_oak_canopy = true
dark_oak_blue_conifer = true
dark_oak_ancient_mirage = true
dark_oak_ancient = true
cherry_bush = true
birch_windswept = true
birch_twilight = true
birch_sparse = true
birch_short_conifer = true
birch_scruffy_conifer = true
birch_scruffy = true
birch_poplar = true
birch_conifer = true
azalea_oasis = true
azalea_mangrove = true
azalea_mahogany = true
azalea_ebony = true
azalea_canopy = true
azalea_bush = true
acacia_windswept = true
acacia_twiglet = true
acacia_sparse = true
acacia_poplar = true
acacia_kapok = true
acacia_deciduous = true
acacia_conifer = true
acacia_bush = true
acacia_amethyst = true
#Disables specific entries
[entries]
@@ -133,6 +133,22 @@
"operation": "ADD_VALUE"
}
]
},
"aether_knuckle": {
"attack_damage": 7.0,
"attack_speed": -2.2,
"attributes": [
{
"attribute": "spell_power:arcane",
"value": 5.5,
"operation": "ADD_VALUE"
},
{
"attribute": "generic.armor",
"value": 3.0,
"operation": "ADD_VALUE"
}
]
}
},
"armor_sets": {
+24
View File
@@ -0,0 +1,24 @@
# Auto Generated, do not touch
config_version = 4
# If set to true, the mod creates a new global folder, that is global for your user on your computer.
# The created folders will be:
# <user_home>/.minecraft_global_packs/<version>/required_datapacks
# <user_home>/.minecraft_global_packs/<version>/optional_datapacks
# <user_home>/.minecraft_global_packs/<version>/required_resourcepacks
# <user_home>/.minecraft_global_packs/<version>/optional_resourcepacks
enable_system_global_packs = false
# This prints Pack IDs into the logs, using this you can force enable builtin resourcepacks from mods, further down in the config.
log_pack_ids = false
# This config allows you to add or remove folders or single files as Data-/Resourcepacks
# For that simply specify the file path to the folder/file relative to your <instance> folder
[resourcepacks]
required = ["global_packs/required_resources/"]
# Check game log if log_pack_ids is set to true, you need to add the full IDs listed in there.
# Search for "# Listing Resource Packs #" inside the log
enable_builtin = []
[datapacks]
required = ["datapacks/", "resourcepacks/", "global_packs/required_data/"]
optional = ["global_packs/optional_data/"]
enable_builtin = []
+171
View File
@@ -0,0 +1,171 @@
# If true, prevents the trader from despawning if named
# Valid values: true, false
preventDespawnIfNamed = true
[goblinTrader]
# The chance out of one hundred that the trader will spawn in the over world
# Valid range: 1 to 100 (inclusive)
traderSpawnChance = 25
# The amount of ticks to wait before trying to spawn a trader again if the spawn failed
# Valid range: 1 to 2147483647 (inclusive)
spawnInterval = 12000
# The amount of ticks before the trader will start spawning in a new world
# Valid range: 1 to 2147483647 (inclusive)
traderSpawnDelay = 24000
# The amount of ticks before the trader will despawn
# Valid range: 1 to 2147483647 (inclusive)
traderDespawnDelay = 24000
# The minimum level the trader can spawn
# Valid range: -64 to 320 (inclusive)
traderMinSpawnLevel = -64
# The maximum level the trader can spawn
# Valid range: -64 to 320 (inclusive)
traderMaxSpawnLevel = 50
# The amount of ticks before the trader will replenish it's trades. Set to -1 to disable restocking
# Valid range: -1 to 2147483647 (inclusive)
restockDelay = 48000
# If true, the goblin will try to hit back a player or mob that hit them
# Valid values: true, false
canAttackBack = true
# Goblins will make a grunt noise while walking around. If you find it happening too often, you can increase the interval. Value is represented in ticks.
# Valid range: 1 to 1000 (inclusive)
gruntNoiseInterval = 80
[goblinTrader.trades.common]
# The minimum amount of trades that a golbin will have.
# Valid range: 0 to 2147483647 (inclusive)
minAmount = 5
# The maximum amount of trades that a golbin can have.
# Valid range: 0 to 2147483647 (inclusive)
manAmount = 8
# The chance this trade rarity will be included in the goblin's trades
# Valid range: 0 to 1 (inclusive)
includeChance = 1.0
[goblinTrader.trades.uncommon]
# The minimum amount of trades that a golbin will have.
# Valid range: 0 to 2147483647 (inclusive)
minAmount = 3
# The maximum amount of trades that a golbin can have.
# Valid range: 0 to 2147483647 (inclusive)
manAmount = 5
# The chance this trade rarity will be included in the goblin's trades
# Valid range: 0 to 1 (inclusive)
includeChance = 1.0
[goblinTrader.trades.rare]
# The minimum amount of trades that a golbin will have.
# Valid range: 0 to 2147483647 (inclusive)
minAmount = 2
# The maximum amount of trades that a golbin can have.
# Valid range: 0 to 2147483647 (inclusive)
manAmount = 3
# The chance this trade rarity will be included in the goblin's trades
# Valid range: 0 to 1 (inclusive)
includeChance = 1.0
[goblinTrader.trades.epic]
# The minimum amount of trades that a golbin will have.
# Valid range: 0 to 2147483647 (inclusive)
minAmount = 1
# The maximum amount of trades that a golbin can have.
# Valid range: 0 to 2147483647 (inclusive)
manAmount = 2
# The chance this trade rarity will be included in the goblin's trades
# Valid range: 0 to 1 (inclusive)
includeChance = 1.0
[goblinTrader.trades.legendary]
# The minimum amount of trades that a golbin will have.
# Valid range: 0 to 2147483647 (inclusive)
minAmount = 1
# The maximum amount of trades that a golbin can have.
# Valid range: 0 to 2147483647 (inclusive)
manAmount = 1
# The chance this trade rarity will be included in the goblin's trades
# Valid range: 0 to 1 (inclusive)
includeChance = 0.75
[veinGoblinTrader]
# The chance out of one hundred that the trader will spawn in the over world
# Valid range: 1 to 100 (inclusive)
traderSpawnChance = 25
# The amount of ticks to wait before trying to spawn a trader again if the spawn failed
# Valid range: 1 to 2147483647 (inclusive)
spawnInterval = 12000
# The amount of ticks before the trader will start spawning in a new world
# Valid range: 1 to 2147483647 (inclusive)
traderSpawnDelay = 24000
# The amount of ticks before the trader will despawn
# Valid range: 1 to 2147483647 (inclusive)
traderDespawnDelay = 24000
# The minimum level the trader can spawn
# Valid range: -64 to 320 (inclusive)
traderMinSpawnLevel = 0
# The maximum level the trader can spawn
# Valid range: -64 to 320 (inclusive)
traderMaxSpawnLevel = 128
# The amount of ticks before the trader will replenish it's trades. Set to -1 to disable restocking
# Valid range: -1 to 2147483647 (inclusive)
restockDelay = 48000
# If true, the goblin will try to hit back a player or mob that hit them
# Valid values: true, false
canAttackBack = true
# Goblins will make a grunt noise while walking around. If you find it happening too often, you can increase the interval. Value is represented in ticks.
# Valid range: 1 to 1000 (inclusive)
gruntNoiseInterval = 80
[veinGoblinTrader.trades.common]
# The minimum amount of trades that a golbin will have.
# Valid range: 0 to 2147483647 (inclusive)
minAmount = 5
# The maximum amount of trades that a golbin can have.
# Valid range: 0 to 2147483647 (inclusive)
manAmount = 8
# The chance this trade rarity will be included in the goblin's trades
# Valid range: 0 to 1 (inclusive)
includeChance = 1.0
[veinGoblinTrader.trades.uncommon]
# The minimum amount of trades that a golbin will have.
# Valid range: 0 to 2147483647 (inclusive)
minAmount = 3
# The maximum amount of trades that a golbin can have.
# Valid range: 0 to 2147483647 (inclusive)
manAmount = 5
# The chance this trade rarity will be included in the goblin's trades
# Valid range: 0 to 1 (inclusive)
includeChance = 1.0
[veinGoblinTrader.trades.rare]
# The minimum amount of trades that a golbin will have.
# Valid range: 0 to 2147483647 (inclusive)
minAmount = 2
# The maximum amount of trades that a golbin can have.
# Valid range: 0 to 2147483647 (inclusive)
manAmount = 3
# The chance this trade rarity will be included in the goblin's trades
# Valid range: 0 to 1 (inclusive)
includeChance = 1.0
[veinGoblinTrader.trades.epic]
# The minimum amount of trades that a golbin will have.
# Valid range: 0 to 2147483647 (inclusive)
minAmount = 1
# The maximum amount of trades that a golbin can have.
# Valid range: 0 to 2147483647 (inclusive)
manAmount = 2
# The chance this trade rarity will be included in the goblin's trades
# Valid range: 0 to 1 (inclusive)
includeChance = 1.0
[veinGoblinTrader.trades.legendary]
# The minimum amount of trades that a golbin will have.
# Valid range: 0 to 2147483647 (inclusive)
minAmount = 1
# The maximum amount of trades that a golbin can have.
# Valid range: 0 to 2147483647 (inclusive)
manAmount = 1
# The chance this trade rarity will be included in the goblin's trades
# Valid range: 0 to 1 (inclusive)
includeChance = 0.75
+190
View File
@@ -0,0 +1,190 @@
{
"general": {
"fallSounds": true,
"disableCactusDamage": true,
"swimmingItems": {
"entries": [
"{id:\"blocktag\",tag:\"minecraft:mineable/axe\"}",
"{id:\"blocktag\",tag:\"minecraft:logs\"}",
"{id:\"blocktag\",tag:\"minecraft:planks\"}",
"{block:\"minecraft:sponge\",id:\"block\"}",
"{block:\"minecraft:wet_sponge\",id:\"block\"}",
"{id:\"blocktag\",tag:\"minecraft:ice\"}",
"{id:\"blocktag\",tag:\"minecraft:leaves\"}",
"{id:\"blocktag\",tag:\"minecraft:flowers\"}",
"{id:\"blocktag\",tag:\"minecraft:small_flowers\"}",
"{id:\"blocktag\",tag:\"minecraft:tall_flowers\"}",
"{id:\"blocktag\",tag:\"minecraft:snow\"}",
"{block:\"minecraft:cactus\",id:\"block\"}",
"{block:\"minecraft:cake\",id:\"block\"}",
"{block:\"minecraft:cobweb\",id:\"block\"}",
"{block:\"minecraft:snow\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:apple\"}",
"{id:\"item\",item:\"minecraft:bow\"}",
"{id:\"item\",item:\"minecraft:bowl\"}",
"{id:\"item\",item:\"minecraft:arrow\"}",
"{id:\"item\",item:\"minecraft:apple\"}",
"{block:\"minecraft:tripwire\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:feather\"}",
"{id:\"item\",item:\"minecraft:wheat\"}",
"{id:\"item\",item:\"minecraft:bread\"}",
"{id:\"item\",item:\"minecraft:painting\"}",
"{id:\"item\",item:\"minecraft:acacia_boat\"}",
"{block:\"minecraft:acacia_door\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:dark_oak_boat\"}",
"{block:\"minecraft:dark_oak_door\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:birch_boat\"}",
"{block:\"minecraft:birch_door\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:jungle_boat\"}",
"{block:\"minecraft:jungle_door\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:oak_boat\"}",
"{block:\"minecraft:oak_door\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:spruce_boat\"}",
"{block:\"minecraft:spruce_door\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:saddle\"}",
"{id:\"item\",item:\"minecraft:bone\"}",
"{id:\"item\",item:\"minecraft:sugar\"}",
"{id:\"item\",item:\"minecraft:egg\"}",
"{id:\"item\",item:\"minecraft:fishing_rod\"}",
"{block:\"minecraft:cake\",id:\"block\"}",
"{block:\"minecraft:melon\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:shears\"}",
"{block:\"minecraft:carrots\",id:\"block\"}",
"{block:\"minecraft:potatoes\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:poisonous_potato\"}",
"{id:\"item\",item:\"minecraft:baked_potato\"}",
"{id:\"item\",item:\"minecraft:pumpkin_pie\"}",
"{id:\"item\",item:\"minecraft:elytra\"}",
"{id:\"item\",item:\"minecraft:mutton\"}",
"{id:\"item\",item:\"minecraft:cooked_mutton\"}",
"{id:\"item\",item:\"minecraft:rabbit\"}",
"{id:\"item\",item:\"minecraft:cooked_rabbit\"}",
"{id:\"item\",item:\"minecraft:rabbit_stew\"}",
"{id:\"item\",item:\"minecraft:beetroot\"}",
"{block:\"minecraft:beetroots\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:beetroot_soup\"}",
"{id:\"item\",item:\"minecraft:shield\"}",
"{block:\"minecraft:wheat\",id:\"block\"}",
"{block:\"minecraft:pumpkin_stem\",id:\"block\"}",
"{block:\"minecraft:melon_stem\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:snowball\"}"
],
"isWhitelist": true
},
"burningItems": {
"entries": [
"{id:\"blocktag\",tag:\"minecraft:mineable/axe\"}",
"{id:\"blocktag\",tag:\"minecraft:logs_that_burn\"}",
"{id:\"blocktag\",tag:\"minecraft:planks\"}",
"{block:\"minecraft:sponge\",id:\"block\"}",
"{block:\"minecraft:wet_sponge\",id:\"block\"}",
"{id:\"blocktag\",tag:\"minecraft:ice\"}",
"{id:\"blocktag\",tag:\"minecraft:leaves\"}",
"{id:\"blocktag\",tag:\"minecraft:wool\"}",
"{id:\"blocktag\",tag:\"minecraft:wool_carpets\"}",
"{id:\"blocktag\",tag:\"minecraft:flowers\"}",
"{id:\"blocktag\",tag:\"minecraft:small_flowers\"}",
"{id:\"blocktag\",tag:\"minecraft:tall_flowers\"}",
"{id:\"blocktag\",tag:\"minecraft:snow\"}",
"{block:\"minecraft:cactus\",id:\"block\"}",
"{block:\"minecraft:cake\",id:\"block\"}",
"{block:\"minecraft:cobweb\",id:\"block\"}",
"{block:\"minecraft:snow\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:apple\"}",
"{id:\"item\",item:\"minecraft:bow\"}",
"{id:\"item\",item:\"minecraft:bowl\"}",
"{id:\"item\",item:\"minecraft:arrow\"}",
"{id:\"item\",item:\"minecraft:apple\"}",
"{block:\"minecraft:tripwire\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:feather\"}",
"{id:\"item\",item:\"minecraft:wheat\"}",
"{id:\"item\",item:\"minecraft:bread\"}",
"{id:\"item\",item:\"minecraft:leather\"}",
"{id:\"item\",item:\"minecraft:leather_boots\"}",
"{id:\"item\",item:\"minecraft:leather_chestplate\"}",
"{id:\"item\",item:\"minecraft:leather_helmet\"}",
"{id:\"item\",item:\"minecraft:leather_leggings\"}",
"{id:\"item\",item:\"minecraft:lead\"}",
"{id:\"item\",item:\"minecraft:painting\"}",
"{id:\"item\",item:\"minecraft:acacia_boat\"}",
"{block:\"minecraft:acacia_door\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:dark_oak_boat\"}",
"{block:\"minecraft:dark_oak_door\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:birch_boat\"}",
"{block:\"minecraft:birch_door\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:jungle_boat\"}",
"{block:\"minecraft:jungle_door\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:oak_boat\"}",
"{block:\"minecraft:oak_door\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:spruce_boat\"}",
"{block:\"minecraft:spruce_door\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:saddle\"}",
"{id:\"item\",item:\"minecraft:bone\"}",
"{id:\"item\",item:\"minecraft:sugar\"}",
"{id:\"item\",item:\"minecraft:paper\"}",
"{id:\"item\",item:\"minecraft:book\"}",
"{id:\"item\",item:\"minecraft:egg\"}",
"{id:\"item\",item:\"minecraft:fishing_rod\"}",
"{block:\"minecraft:cake\",id:\"block\"}",
"{block:\"minecraft:melon\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:shears\"}",
"{id:\"item\",item:\"minecraft:writable_book\"}",
"{id:\"item\",item:\"minecraft:written_book\"}",
"{block:\"minecraft:carrots\",id:\"block\"}",
"{block:\"minecraft:potatoes\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:poisonous_potato\"}",
"{id:\"item\",item:\"minecraft:baked_potato\"}",
"{id:\"item\",item:\"minecraft:map\"}",
"{id:\"item\",item:\"minecraft:filled_map\"}",
"{id:\"item\",item:\"minecraft:pumpkin_pie\"}",
"{id:\"item\",item:\"minecraft:name_tag\"}",
"{id:\"item\",item:\"minecraft:enchanted_book\"}",
"{id:\"item\",item:\"minecraft:elytra\"}",
"{id:\"item\",item:\"minecraft:mutton\"}",
"{id:\"item\",item:\"minecraft:cooked_mutton\"}",
"{id:\"item\",item:\"minecraft:rabbit\"}",
"{id:\"item\",item:\"minecraft:cooked_rabbit\"}",
"{id:\"item\",item:\"minecraft:rabbit_stew\"}",
"{id:\"item\",item:\"minecraft:beetroot\"}",
"{block:\"minecraft:beetroots\",id:\"block\"}",
"{id:\"item\",item:\"minecraft:beetroot_soup\"}",
"{id:\"item\",item:\"minecraft:shield\"}",
"{block:\"minecraft:wheat\",id:\"block\"}",
"{block:\"minecraft:pumpkin_stem\",id:\"block\"}",
"{block:\"minecraft:melon_stem\",id:\"block\"}",
"{id:\"fuel\"}",
"{id:\"item\",item:\"minecraft:spider_eye\"}",
"{id:\"item\",item:\"minecraft:rotten_flesh\"}",
"{id:\"item\",item:\"minecraft:snowball\"}"
],
"isWhitelist": true
},
"undestroyableItems": {
"entries": [
"{id:\"item\",item:\"minecraft:nether_star\"}",
"{block:\"minecraft:bedrock\",id:\"block\"}",
"{block:\"minecraft:obsidian\",id:\"block\"}",
"{block:\"minecraft:barrier\",id:\"block\"}"
],
"isWhitelist": true
}
},
"pickup": {
"customPickup": false,
"pickupWhenSneaking": true,
"pickupNormally": false,
"walkOverRange": 1,
"maximumPickupRange": 5,
"hitboxIncrease": 0.2,
"alwaysPickup": {
"entries": [],
"isWhitelist": true
}
},
"throw": {
"enabled": true,
"maxStages": 6,
"multiplierPerStage": 1,
"stageChargeTime": 10
}
}
+1
View File
@@ -1,4 +1,5 @@
{
"corpse:corpse": null,
"jade:object_name": null,
"minecraft:animal_owner": null,
"minecraft:beehive": null,
+26
View File
@@ -166,6 +166,32 @@
"attack_damage": 11.0,
"attack_speed": -2.8,
"attributes": []
},
"aether_holy_staff": {
"attack_damage": 4.0,
"attack_speed": -3.0,
"attributes": [
{
"attribute": "spell_power:healing",
"value": 8.0,
"operation": "ADD_VALUE"
}
]
},
"aether_claymore": {
"attack_damage": 13.0,
"attack_speed": -3.0,
"attributes": []
},
"aether_great_hammer": {
"attack_damage": 16.0,
"attack_speed": -3.2,
"attributes": []
},
"aether_mace": {
"attack_damage": 11.0,
"attack_speed": -2.8,
"attributes": []
}
},
"armor_sets": {
+15
View File
@@ -63,6 +63,21 @@
"operation": "ADD_VALUE"
}
]
},
"paladins:aether_kite_shield": {
"durability": 2688,
"attributes": [
{
"attribute": "minecraft:generic.armor_toughness",
"value": 1.0,
"operation": "ADD_VALUE"
},
{
"attribute": "generic.max_health",
"value": 6.0,
"operation": "ADD_VALUE"
}
]
}
}
}
+20
View File
@@ -109,6 +109,26 @@
"attack_damage": 9.3,
"attack_speed": -2.6,
"attributes": []
},
"aether_dagger": {
"attack_damage": 5.5,
"attack_speed": -1.6,
"attributes": []
},
"aether_sickle": {
"attack_damage": 6.8,
"attack_speed": -2.0,
"attributes": []
},
"aether_double_axe": {
"attack_damage": 11.0,
"attack_speed": -2.8,
"attributes": []
},
"aether_glaive": {
"attack_damage": 9.3,
"attack_speed": -2.6,
"attributes": []
}
},
"armor_sets": {
+44 -1
View File
@@ -20,6 +20,7 @@
"paladins:holy_staff",
"paladins:diamond_holy_staff",
"paladins:netherite_holy_staff",
"paladins:aether_holy_staff",
"arsenal:unique_staff_heal_1",
"arsenal:unique_staff_heal_2",
"arsenal:unique_staff_heal_sw",
@@ -249,12 +250,14 @@
"archers:royal_longbow",
"archers:netherite_longbow",
"archers:crystal_longbow",
"archers:aether_longbow",
"arsenal:unique_longbow_1",
"arsenal:unique_longbow_2",
"arsenal:unique_longbow_sw",
"bards_rpg:harp_crossbow",
"bards_rpg:diamond_harp_crossbow",
"bards_rpg:netherite_harp_crossbow",
"bards_rpg:aether_harp_crossbow",
"bards_rpg:unique_harp_crossbow_0",
"bards_rpg:unique_harp_crossbow_1",
"artificers:repeating_crossbow",
@@ -264,10 +267,12 @@
"artificers:diamond_flintlock",
"archers:rapid_crossbow",
"archers:netherite_rapid_crossbow",
"archers:aether_rapid_crossbow",
"artificers:firecannon",
"artificers:netherite_firecannon",
"archers:heavy_crossbow",
"archers:netherite_heavy_crossbow",
"archers:aether_heavy_crossbow",
"arsenal:unique_heavy_crossbow_1",
"arsenal:unique_heavy_crossbow_2",
"arsenal:unique_heavy_crossbow_sw"
@@ -374,6 +379,7 @@
"paladins:diamond_kite_shield",
"paladins:netherite_kite_shield",
"paladins:aeternium_kite_shield",
"paladins:aether_kite_shield",
"arsenal:unique_shield_1",
"arsenal:unique_shield_2",
"arsenal:unique_shield_sw"
@@ -465,6 +471,7 @@
"berserker_rpg:diamond_berserker_axe",
"berserker_rpg:netherite_berserker_axe",
"berserker_rpg:aeternium_berserker_axe",
"berserker_rpg:aether_berserker_axe",
"berserker_rpg:unique_berserker_axe_1",
"berserker_rpg:unique_berserker_axe_2",
"forcemaster_rpg:wooden_knuckle",
@@ -474,6 +481,7 @@
"forcemaster_rpg:diamond_knuckle",
"forcemaster_rpg:netherite_knuckle",
"forcemaster_rpg:aeternium_knuckle",
"forcemaster_rpg:aether_knuckle",
"forcemaster_rpg:unique_knuckle_0",
"forcemaster_rpg:unique_knuckle_1",
"paladins:stone_claymore",
@@ -482,6 +490,7 @@
"paladins:diamond_claymore",
"paladins:netherite_claymore",
"paladins:aeternium_claymore",
"paladins:aether_claymore",
"arsenal:unique_claymore_1",
"arsenal:unique_claymore_2",
"arsenal:unique_claymore_sw",
@@ -490,6 +499,7 @@
"paladins:diamond_mace",
"paladins:netherite_mace",
"paladins:aeternium_mace",
"paladins:aether_mace",
"arsenal:unique_mace_1",
"arsenal:unique_mace_2",
"arsenal:unique_mace_sw",
@@ -500,6 +510,7 @@
"paladins:diamond_great_hammer",
"paladins:netherite_great_hammer",
"paladins:aeternium_great_hammer",
"paladins:aether_great_hammer",
"arsenal:unique_hammer_1",
"arsenal:unique_hammer_2",
"arsenal:unique_hammer_sw",
@@ -514,6 +525,7 @@
"archers:diamond_spear",
"archers:netherite_spear",
"archers:aeternium_spear",
"archers:aether_spear",
"arsenal:unique_spear_1",
"arsenal:unique_spear_2",
"arsenal:unique_spear_sw",
@@ -523,6 +535,7 @@
"rogues:diamond_dagger",
"rogues:netherite_dagger",
"rogues:aeternium_dagger",
"rogues:aether_dagger",
"arsenal:unique_dagger_1",
"arsenal:unique_dagger_2",
"arsenal:unique_dagger_sw",
@@ -531,6 +544,7 @@
"rogues:diamond_sickle",
"rogues:netherite_sickle",
"rogues:aeternium_sickle",
"rogues:aether_sickle",
"arsenal:unique_sickle_1",
"arsenal:unique_sickle_2",
"arsenal:unique_sickle_sw",
@@ -540,6 +554,7 @@
"rogues:diamond_double_axe",
"rogues:netherite_double_axe",
"rogues:aeternium_double_axe",
"rogues:aether_double_axe",
"arsenal:unique_double_axe_1",
"arsenal:unique_double_axe_2",
"arsenal:unique_double_axe_sw",
@@ -548,6 +563,7 @@
"rogues:diamond_glaive",
"rogues:netherite_glaive",
"rogues:aeternium_glaive",
"rogues:aether_glaive",
"arsenal:unique_glaive_1",
"arsenal:unique_glaive_2",
"arsenal:unique_glaive_sw"
@@ -560,6 +576,7 @@
"forcemaster_rpg:diamond_knuckle",
"forcemaster_rpg:netherite_knuckle",
"forcemaster_rpg:aeternium_knuckle",
"forcemaster_rpg:aether_knuckle",
"forcemaster_rpg:unique_knuckle_0",
"forcemaster_rpg:unique_knuckle_1",
"druids:staff_nature",
@@ -574,6 +591,7 @@
"elemental_wizards_rpg:staff_netherite_wind",
"elemental_wizards_rpg:staff_crystal_aqua",
"elemental_wizards_rpg:staff_aeternium_wind",
"elemental_wizards_rpg:staff_aether",
"elemental_wizards_rpg:unique_staff_1",
"wizards:staff_wizard",
"wizards:staff_arcane",
@@ -584,6 +602,7 @@
"wizards:staff_netherite_frost",
"wizards:staff_crystal_arcane",
"wizards:staff_smaragdant_frost",
"wizards:aether_wizard_staff",
"arsenal:unique_staff_damage_1",
"arsenal:unique_staff_damage_2",
"arsenal:unique_staff_damage_3",
@@ -620,6 +639,7 @@
"witcher_rpg:meteorite_witcher_sword",
"witcher_rpg:meteorite_silver_witcher_sword",
"witcher_rpg:aeternium_witcher_sword",
"witcher_rpg:aether_witcher_sword",
"witcher_rpg:winters_blade_sword",
"witcher_rpg:ultimatum_sword",
"witcher_rpg:azure_wrath_sword",
@@ -633,7 +653,30 @@
"witcher_rpg:superior_diagrams": [
"witcher_rpg:superior_diagram"
],
"rpg_series:loot_theme/aether": [],
"rpg_series:loot_theme/aether": [
"witcher_rpg:aether_witcher_sword",
"bards_rpg:aether_rapier",
"bards_rpg:aether_lute",
"bards_rpg:aether_lyre",
"bards_rpg:aether_harp_crossbow",
"berserker_rpg:aether_berserker_axe",
"paladins:aether_holy_staff",
"paladins:aether_claymore",
"paladins:aether_great_hammer",
"paladins:aether_mace",
"paladins:aether_kite_shield",
"forcemaster_rpg:aether_knuckle",
"rogues:aether_dagger",
"rogues:aether_sickle",
"rogues:aether_double_axe",
"rogues:aether_glaive",
"elemental_wizards_rpg:staff_aether",
"wizards:aether_wizard_staff",
"archers:aether_spear",
"archers:aether_heavy_crossbow",
"archers:aether_rapid_crossbow",
"archers:aether_longbow"
],
"rpg_series:loot_theme/dragon": [
"relics_rpgs:greater_perk_heal_danger",
"relics_rpgs:greater_proc_spell_trance",
@@ -301,6 +301,22 @@
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"aether_witcher_sword": {
"attack_damage": 7.0,
"attack_speed": -2.4,
"attributes": [
{
"attribute": "witcher_rpg:sign_intensity",
"value": 4.0,
"operation": "ADD_VALUE"
},
{
"attribute": "witcher_rpg:adrenaline_modifier",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
}
},
"armor_sets": {
+21
View File
@@ -185,6 +185,27 @@
"operation": "ADD_VALUE"
}
]
},
"aether_wizard_staff": {
"attack_damage": 4.0,
"attack_speed": -3.0,
"attributes": [
{
"attribute": "spell_power:arcane",
"value": 8.0,
"operation": "ADD_VALUE"
},
{
"attribute": "spell_power:fire",
"value": 8.0,
"operation": "ADD_VALUE"
},
{
"attribute": "spell_power:frost",
"value": 8.0,
"operation": "ADD_VALUE"
}
]
}
},
"armor_sets": {
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+30
View File
@@ -0,0 +1,30 @@
{
"rendering": {
"oldRotation": false,
"vanillaRendering": false,
"rotateSpeed": 1.0,
"showPickupTooltip": true,
"showPickupTooltipOnlyOnGround": false,
"showPickupTooltipExtended": false,
"showPickupTooltipKeybind": false,
"disableThrowHUD": false,
"vanillaRendered": {
"entries": [],
"isWhitelist": true
},
"tooltipOffsetX": 0,
"tooltipOffsetY": 0,
"blockRequireOffset": {
"blocks": [
"minecraft:snow",
"minecraft:soul_sand",
"minecraft:mud"
],
"tags": []
},
"blockBelowRequireOffset": {
"blocks": [],
"tags": []
}
}
}
+3
View File
@@ -0,0 +1,3 @@
[
{"version":2}
]
@@ -0,0 +1,112 @@
Minecraft
Additional Jewelry
Alex's Caves
Alex's Mobs
Alexs Delight
Animal Feeding Trough
Another Furniture
AnvilCore
Aquaculture 2
Aquaculture Delight
Archers (RPG Series)
Archers Expansion
Armory (RPG Series)
Arsenal (RPG Series)
Bards (RPG Series Plus)
Berserker
Better End
Biomes O' Plenty
Born in Chaos
Bosses of Mass Destruction
Brewin' And Chewin'
Clutter: Bestiary
Corn Delight
Crabber's Delight
Create
Create Aeronautics
Create Big Cannons
Create Confectionery
Create Crafts & Additions
Create Deco
Create Diesel Generators
Create Goggles
Create O' Plenty
Create Offroad
Create Ore Excavation
Create Simulated
Create Slice & Dice
Create Stuff 'N Additions
Create: Connected
Create: Copycats+
Create: Dragons Plus
Create: Enchantment Industry
Create: Integrated Farming
Create: Interiors
Create: Transmission
Create: Winery
Critters and Companions
Cultural Delights
Delightful Creators
Druids (RPG Series Plus)
Dynamic Trees
Dynamic Trees Plus
Dynamic Trees Terralith
Dynamic Trees for Biomes o' Plenty
Dynamic Trees for Nature's Spirit
Elemental Maces
Elemental Wizards (RPG Series Plus)
Ender's Delight
Every Compat
Extra RPG Attributes
Farmer's Delight
Forcemaster
Gems Realm
Goblin Traders
Guard Villagers
Integrated Dungeons and Structures
Integrated Stronghold
Jewelry (RPG Series)
L_Ender's Cataclysm 1.21.1
Lootr
Macaw's Bridges
Macaw's Bridges Delight
Macaw's Doors
Macaw's Fences and Walls
Macaw's Furniture
Macaw's Paths and Pavings
Macaw's Roofs
Macaw's Stairs and Balconies
Macaw's Trapdoors
Macaw's Windows
Mercenaries and Artificers (RPG Series Plus)
More RPG Library
Mowzie's Mobs
Mutant Monsters
My Nether's Delight
Nature's Spirit
Paladins & Priests (RPG Series)
ParCool!
Quark
Rechiseled
Rechiseled: Create
Relics (RPG Series)
Rogues & Warriors (RPG Series)
Runes
Rustic Delight
Serene Seasons
Simply Swords
Simply Swords: Cataclysm
Skill Tree (RPG Series)
Sophisticated Backpacks
Sophisticated Core
Sophisticated Storage
Spell Engine
Stone Zone
Storage Drawers
Supplementaries
The Aether
Veggies Delight
Village Taverns (RPG Series)
Waystones
Witcher
Wizards (RPG Series)
@@ -0,0 +1,3 @@
net.minecraft.world.item.ItemStack
com.tom.createores.jei.Vein
net.neoforged.neoforge.fluids.FluidStack
+323
View File
@@ -0,0 +1,323 @@
[appearance]
# Name: Поле поиска по центру
# Description: Перемещает поле поиска JEI в центр нижней части экрана.
# Valid Values: [true, false]
# Default Value: false
centerSearch = false
# Name: Максимальная высота интерфейса рецепта
# Description: Максимальная высота интерфейса рецепта.
# Valid Values: Any integer greater than or equal to 175
# Default Value: 350
recipeGuiHeight = 350
[cheating]
# Name: Режим выдачи
# Description: Выбери, должен ли JEI давать ингредиенты прямо в инвентарь либо собирать их мышкой.
# Valid Values: [INVENTORY, MOUSE_PICKUP]
# Default Value: MOUSE_PICKUP
giveMode = MOUSE_PICKUP
# Name: Cheat Items to Hotbar Using Hotkeys
# Description: Enable cheating items into the hotbar by using Shift + numeric keys.
# Valid Values: [true, false]
# Default Value: false
cheatToHotbarUsingHotkeysEnabled = false
# Name: Show Hidden Ingredients
# Description: Enable showing ingredients that are not in the creative menu.
# Valid Values: [true, false]
# Default Value: false
showHiddenIngredients = false
# Name: Show Tag Recipes
# Description: Show recipes for ingredient tags like item tags and block tags.
# Valid Values: [true, false]
# Default Value: false
showTagRecipesEnabled = false
[bookmarks]
# Name: Добавлять новые закладки в начало
# Description: Когда включено, добавляет новые закладки в начало списка закладок. Когда выключено, добавляет новые закладки в конец списка закладок
# Valid Values: [true, false]
# Default Value: false
addBookmarksToFrontEnabled = false
# Name: Drag To Rearrange Bookmarks
# Description: Enable dragging bookmarks to rearrange them in the list.
# Valid Values: [true, false]
# Default Value: true
dragToRearrangeBookmarksEnabled = true
[tooltips]
# Name: Bookmarks Tooltips Features
# Description: Extra features for bookmark tooltips.
# Valid Values: A comma-separated list containing values of:
# [PREVIEW, INGREDIENTS]
# Default Value: PREVIEW
bookmarkTooltipFeatures = PREVIEW
# Name: Shift for Bookmarks Tooltips
# Description: Hold Shift to show bookmark tooltip features.
# Valid Values: [true, false]
# Default Value: true
holdShiftToShowBookmarkTooltipFeatures = true
# Name: Show Creative Tab Names
# Description: Show creative tab names in ingredient tooltips.
# Valid Values: [true, false]
# Default Value: false
showCreativeTabNamesEnabled = false
# Name: Show Tag Contents
# Description: Show tag content in tooltips when browsing recipe ingredients.
# Valid Values: [true, false]
# Default Value: true
tagContentTooltipEnabled = true
# Name: Hide Single-Ingredient Tag Contents
# Description: Hide tag content in tooltips when there is only one ingredient in the tag.
# Valid Values: [true, false]
# Default Value: true
hideSingleTagContentTooltipEnabled = true
# Name: Recipe Ingredient Summary
# Description: Show a summary of ingredients needed for a recipe, on its output ingredient's tooltip.
# Valid Values: [true, false]
# Default Value: false
enableRecipesGuiIngredientsSummary = false
[performance]
# Name: Low Memory Search
# Description: Set search to low-memory mode (makes search slow but uses less RAM).
# Valid Values: [true, false]
# Default Value: false
lowMemorySlowSearchEnabled = false
[lookups]
# Name: Lookup Fluid Contents
# Description: When looking up recipes with items that contain fluids, also look up recipes for the fluids.
# Valid Values: [true, false]
# Default Value: false
lookupFluidContentsEnabled = false
# Name: Lookup ItemBlock Tags
# Description: When searching for item tags, also include tags for the default blocks contained in the items.
# Valid Values: [true, false]
# Default Value: true
lookupBlockTagsEnabled = true
[lookupHistory]
# Name: Enabled
# Description: Display or hide the lookup history overlay.
# Valid Values: [true, false]
# Default Value: false
enabled = false
# Name: Max Rows
# Description: Max number of rows to display in the lookup history overlay.
# Valid Values: An integer in the range [1, 7] (inclusive)
# Default Value: 2
maxRows = 2
# Name: Max Ingredients
# Description: Max number of lookup history ingredients to save.
# Valid Values: An integer in the range [10, 1000] (inclusive)
# Default Value: 100
maxIngredients = 100
# Name: Display Side
# Description: Side of the screen to display the lookup history overlay.
# Valid Values: [LEFT, RIGHT]
# Default Value: LEFT
displaySide = LEFT
[advanced]
# Name: Catch Render Errors
# Description: Catch render errors from modded ingredients and attempt to recover from them instead of crashing.
# Valid Values: [true, false]
# Default Value: true
catchRenderErrorsEnabled = true
[input]
# Name: Drag Delay
# Description: Number of milliseconds before a long mouse click is considered dragging the mouse.
# Valid Values: An integer in the range [0, 1000] (inclusive)
# Default Value: 150
dragDelayInMilliseconds = 150
# Name: Smooth Scroll Rate
# Description: Scroll rate for scrolling the mouse wheel in smooth-scrolling scroll boxes. Measured in pixels.
# Valid Values: An integer in the range [1, 50] (inclusive)
# Default Value: 9
smoothScrollRate = 9
[sorting]
# Name: Ingredient Sorting Stages
# Description: Sorting order for the ingredient list.
# Valid Values: A comma-separated list containing values of:
# [MOD_NAME, INGREDIENT_TYPE, ALPHABETICAL, CREATIVE_MENU, TAG, ARMOR, MAX_DURABILITY]
# Default Value: MOD_NAME, INGREDIENT_TYPE, CREATIVE_MENU
ingredientSortStages = MOD_NAME, INGREDIENT_TYPE, CREATIVE_MENU
# Name: Recipe Sorting Stages
# Description: Sorting order for displayed recipes.
# Valid Values: A comma-separated list containing values of:
# [BOOKMARKED, CRAFTABLE]
# Default Value: BOOKMARKED, CRAFTABLE
recipeSorterStages = BOOKMARKED, CRAFTABLE
[search]
# Name: @Название мода
# Description: Режим поиска по названиям мода (префикс: @).
# Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED]
# Default Value: REQUIRE_PREFIX
modNameSearchMode = REQUIRE_PREFIX
# Name: #Тег
# Description: Режим поиска по тегам (префикс: #).
# Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED]
# Default Value: REQUIRE_PREFIX
tagSearchMode = REQUIRE_PREFIX
# Name: $Подсказка
# Description: Режим поиска по подсказкам (префикс: $).
# Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED]
# Default Value: ENABLED
tooltipSearchMode = ENABLED
# Name: ^Цвет
# Description: Режим поиска по цветам (префикс: ^).
# Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED]
# Default Value: DISABLED
colorSearchMode = DISABLED
# Name: &Идентификатор ресурса
# Description: Режим поиска по идентификаторам ресурсов (префикс: &).
# Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED]
# Default Value: DISABLED
resourceLocationSearchMode = DISABLED
# Name: %Творческая вкладка
# Description: Режим поиска по названиям творческих вкладок (префикс: %).
# Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED]
# Default Value: DISABLED
creativeTabSearchMode = DISABLED
# Name: Подсказки для расширенного поиска
# Description: Search in advanced tooltips (visible with F3 + H).
# Valid Values: [true, false]
# Default Value: false
searchAdvancedTooltips = false
# Name: Search Mod Ids
# Description: Search mod IDs in addition to mod names.
# Valid Values: [true, false]
# Default Value: true
searchModIds = true
# Name: Search Mod Aliases
# Description: Search mod aliases (alternative names) that are added by plugins, in addition to mod names.
# Valid Values: [true, false]
# Default Value: true
searchModAliases = true
# Name: Search Short Mod Names
# Description: Search by the shorthand first letters of a mod's name.
# Valid Values: [true, false]
# Default Value: false
searchShortModNames = false
# Name: Search Ingredient Aliases
# Description: Search ingredient aliases (alternative names) that are added by plugins, in addition to ingredient names.
# Valid Values: [true, false]
# Default Value: true
searchIngredientAliases = true
[ingredientList]
# Name: Max Rows
# Description: Max number of rows shown.
# Valid Values: An integer in the range [1, 100] (inclusive)
# Default Value: 16
maxRows = 16
# Name: Max Columns
# Description: Max number of columns shown.
# Valid Values: An integer in the range [2, 100] (inclusive)
# Default Value: 9
maxColumns = 9
# Name: Horizontal Alignment
# Description: Horizontal alignment of the ingredient list inside the available area.
# Valid Values: [LEFT, CENTER, RIGHT]
# Default Value: RIGHT
horizontalAlignment = RIGHT
# Name: Vertical Alignment
# Description: Vertical alignment of the ingredient list inside the available area.
# Valid Values: [TOP, CENTER, BOTTOM]
# Default Value: TOP
verticalAlignment = TOP
# Name: Navigation Visibility
# Description: Visibility of the top page buttons. Use AUTO_HIDE to only show it when there are multiple pages.
# Valid Values: [ENABLED, AUTO_HIDE, DISABLED]
# Default Value: ENABLED
buttonNavigationVisibility = ENABLED
# Name: Draw GUI Background
# Description: Enable this to draw a background texture behind the ingredient list.
# Valid Values: [true, false]
# Default Value: false
drawBackground = false
[bookmarkList]
# Name: Max Rows
# Description: Max number of rows shown.
# Valid Values: An integer in the range [1, 100] (inclusive)
# Default Value: 16
maxRows = 16
# Name: Max Columns
# Description: Max number of columns shown.
# Valid Values: An integer in the range [2, 100] (inclusive)
# Default Value: 9
maxColumns = 9
# Name: Horizontal Alignment
# Description: Horizontal alignment of the bookmark list inside the available area.
# Valid Values: [LEFT, CENTER, RIGHT]
# Default Value: LEFT
horizontalAlignment = LEFT
# Name: Vertical Alignment
# Description: Vertical alignment of the bookmark list inside the available area.
# Valid Values: [TOP, CENTER, BOTTOM]
# Default Value: TOP
verticalAlignment = TOP
# Name: Navigation Visibility
# Description: Visibility of the top page buttons. Use AUTO_HIDE to only show it when there are multiple pages.
# Valid Values: [ENABLED, AUTO_HIDE, DISABLED]
# Default Value: ENABLED
buttonNavigationVisibility = ENABLED
# Name: Draw GUI Background
# Description: Enable this to draw a background texture behind the bookmark list.
# Valid Values: [true, false]
# Default Value: false
drawBackground = false
+9
View File
@@ -0,0 +1,9 @@
[colors]
# Name: Search Colors
# Description: Color values to search for.
# Valid Values: A comma-separated list containing values of:
# Any color name and an RGB hex color, separated by a ':'
# Default Value: White:EEEEEE, LightBlue:7492CC, Cyan:00EEEE, Blue:2222DD, LapisBlue:25418B, Teal:008080, Yellow:CACB58, GoldenYellow:EED700, Orange:D97634, Pink:D1899D, HotPink:FC0FC0, Magenta:B24BBB, Purple:813EB9, EvilPurple:2E1649, Lavender:B57EDC, Indigo:480082, Sand:DBD3A0, Tan:BB9B63, LightBrown:A0522D, Brown:634B33, DarkBrown:3A2D13, LimeGreen:43B239, SlimeGreen:83CB73, Green:008000, DarkGreen:224D22, GrassGreen:548049, Red:963430, BrickRed:B0604B, NetherBrick:2A1516, Redstone:CE3E36, Black:181515, CharcoalGray:464646, IronGray:646464, Gray:808080, Silver:C0C0C0
searchColors = White:EEEEEE, LightBlue:7492CC, Cyan:00EEEE, Blue:2222DD, LapisBlue:25418B, Teal:008080, Yellow:CACB58, GoldenYellow:EED700, Orange:D97634, Pink:D1899D, HotPink:FC0FC0, Magenta:B24BBB, Purple:813EB9, EvilPurple:2E1649, Lavender:B57EDC, Indigo:480082, Sand:DBD3A0, Tan:BB9B63, LightBrown:A0522D, Brown:634B33, DarkBrown:3A2D13, LimeGreen:43B239, SlimeGreen:83CB73, Green:008000, DarkGreen:224D22, GrassGreen:548049, Red:963430, BrickRed:B0604B, NetherBrick:2A1516, Redstone:CE3E36, Black:181515, CharcoalGray:464646, IronGray:646464, Gray:808080, Silver:C0C0C0
+44
View File
@@ -0,0 +1,44 @@
[debug]
# Name: Режим отладки
# Description: Полезен только для разработчиков JEI, добавляет тестовые ингредиенты и несколько рецептов для отладки.
# Valid Values: [true, false]
# Default Value: false
debugMode = false
# Name: Debug GUIs
# Description: Enable Debug GUIs mode
# Valid Values: [true, false]
# Default Value: false
debugGuis = false
# Name: Debug Inputs
# Description: Enable Debug Inputs mode
# Valid Values: [true, false]
# Default Value: false
debugInputs = false
# Name: Debug Info Tooltips
# Description: Add debug information to ingredient tooltips when advanced tooltips are enabled.
# Valid Values: [true, false]
# Default Value: false
debugInfoTooltipsEnabled = false
# Name: Enable Crashing Test Items
# Description: Adds ingredients to JEI that intentionally crash, to help debug JEI.
# Valid Values: [true, false]
# Default Value: false
crashingTestItemsEnabled = false
# Name: jei.config.debug.debug.crashingTestRecipesEnabled
# Description: jei.config.debug.debug.crashingTestRecipesEnabled.description
# Valid Values: [true, false]
# Default Value: false
crashingTestRecipesEnabled = false
# Name: Log Search Tree Statistics
# Description: Log information about the suffix trees used for searching, to help debug JEI.
# Valid Values: [true, false]
# Default Value: false
logSuffixTreeStats = false
+12
View File
@@ -0,0 +1,12 @@
[modName]
# Name: Формат названия мода
# Description: Какое название мода должно быть размечено в подсказке для интерфейсов JEI. Оставь пустым, чтобы отключить.
# Valid Values: A chat formatting string.
# Use these formatting colors:
# black dark_blue dark_green dark_aqua dark_red dark_purple gold gray dark_gray blue green aqua red light_purple yellow white
# With these formatting options:
# obfuscated bold strikethrough underline italic
# Default Value: blue italic
modNameFormat = blue italic
+100
View File
@@ -0,0 +1,100 @@
minecraft:crafting
minecraft:anvil
minecraft:blasting
minecraft:brewing
minecraft:campfire_cooking
minecraft:compostable
minecraft:fuel
minecraft:grindstone
minecraft:smelting
minecraft:smithing
minecraft:smoking
minecraft:stonecutting
aether:accessory_freezable
aether:ambrosium_enchanting
aether:block_placement_ban
aether:enchanting
aether:freezing
aether:fuel
aether:icestone_freezable
aether:incubation
aether:item_placement_ban
aether:placement_conversion
aether:repairing
aether:swet_ball_conversion
alexscaves:nuclear_furnace
alexscaves:spelunkery_table
alexsmobs:capsid
betterend:alloying
betterend:anvil
betterend:infusion
brewinandchewin:aging
brewinandchewin:fermenting
cataclysm:altar_of_amethyst
cataclysm:weapon_infusion
crabbersdelight:crab_trap_loot
create:automatic_brewing
create:automatic_packing
create:automatic_shaped
create:automatic_shapeless
create:block_cutting
create:crushing
create:deploying
create:draining
create:fan_blasting
create:fan_haunting
create:fan_smoking
create:fan_washing
create:item_application
create:mechanical_crafting
create:milling
create:mixing
create:mystery_conversion
create:packing
create:pressing
create:sandpaper_polishing
create:sawing
create:sequenced_assembly
create:spout_filling
create_central_kitchen:farmersdelight.automatic_food_cutting
create_central_kitchen:farmersdelight.automatic_food_sawing
create_dragons_plus:coloring
create_dragons_plus:ending
create_dragons_plus:freezing
create_dragons_plus:sanding
create_enchantment_industry:grinding
create_enchantment_industry:printing
create_winery:maturing
create_winery:maturing_blend
createaddition:charging
createaddition:liquid_burning
createaddition:rolling
createbigcannons:built_up_heating
createbigcannons:cannon_casting
createbigcannons:drill_boring
createbigcannons:incomplete_cannon_blocks
createbigcannons:melting
createdieselgenerators:basin_fermenting
createdieselgenerators:bulk_fermenting
createdieselgenerators:casting
createdieselgenerators:compression_molding
createdieselgenerators:distillation
createdieselgenerators:hammering
createdieselgenerators:wire_cutting
createoreexcavation:drilling
createoreexcavation:extracting
createoreexcavation:vein
farmersdelight:cooking
farmersdelight:cutting
farmersdelight:decomposition
jei:information
jeresources:dungeon
jeresources:enchantment
jeresources:mob
jeresources:plant
jeresources:villager
jeresources:worldgen
justenoughprofessions:professions
mynethersdelight:forgoting
rechiseled:chiseling
sliceanddice:slicer
@@ -0,0 +1,11 @@
{
"spell_book": {
"access": "NONE",
"access_param": "",
"pool": "",
"slot": "",
"max_spell_count": 0,
"spell_ids": [],
"extra_tier_binding": 0
}
}
File diff suppressed because one or more lines are too long