Fellies/config[default]/quark-common.toml

2125 lines
65 KiB
TOML
Raw Normal View History

2021-01-28 20:11:47 +00:00
[general]
2021-02-12 14:22:54 +00:00
"Enable 'q' Button" = true
2021-01-28 20:11:47 +00:00
"'q' Button on the Right" = false
2021-02-12 14:22:54 +00:00
"Use Anti Overlap" = true
#
#Quark replaces the Piston logic to allow for its piston features to work. If you're having troubles, try turning this off.
"Use Piston Logic Replacement" = true
2021-01-28 20:11:47 +00:00
#
#Allowed values: (0,)
"Piston Push Limit" = 12
#
#Quark messes with the Stonecutter to allow any item that can be used in it to be shift clicked in. Set this to false to turn it off.
"Hack Stonecutter Shift Click" = true
#
2021-02-12 14:22:54 +00:00
#Blocks that Quark should treat as Shulker Boxes.
"Shulker Boxes" = ["minecraft:white_shulker_box", "minecraft:orange_shulker_box", "minecraft:magenta_shulker_box", "minecraft:light_blue_shulker_box", "minecraft:yellow_shulker_box", "minecraft:lime_shulker_box", "minecraft:pink_shulker_box", "minecraft:gray_shulker_box", "minecraft:light_gray_shulker_box", "minecraft:cyan_shulker_box", "minecraft:purple_shulker_box", "minecraft:blue_shulker_box", "minecraft:brown_shulker_box", "minecraft:green_shulker_box", "minecraft:red_shulker_box", "minecraft:black_shulker_box"]
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Should Quark treat anything with 'shulker_box' in its item identifier as a shulker box?
"Interpret Shulker Box Like Blocks" = true
#
#Set to true to enable a system that debugs quark's worldgen features. This should ONLY be used if you're asked to by a dev.
"Enable Worldgen Watchdog" = false
2021-01-28 20:11:47 +00:00
#
#Set to true if you need to find the class name for a screen that's causing problems
"Print Screen Classnames" = false
#
2021-02-12 14:22:54 +00:00
#A list of screens that don't play well with quark's buttons. Use "Print Screen Classnames" to find the names of any others you'd want to add.
"Ignored Screens" = ["blusunrize.immersiveengineering.client.gui.CraftingTableScreen", "com.tfar.craftingstation.client.CraftingStationScreen", "com.refinedmods.refinedstorage.screen.grid.GridScreen", "appeng.client.gui.implementations.CraftingTermScreen", "appeng.client.gui.implementations.PatternTermScreen", "com.blakebr0.extendedcrafting.client.screen.EliteTableScreen", "com.blakebr0.extendedcrafting.client.screen.EliteAutoTableScreen", "com.blakebr0.extendedcrafting.client.screen.UltimateTableScreen", "com.blakebr0.extendedcrafting.client.screen.UltimateAutoTableScreen", "me.desht.modularrouters.client.gui.filter.GuiFilterScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.CentrifugeScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.MechanicalCentrifugeScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.CentrifugeMultiblockScreen"]
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Set to true to make the quark big worldgen features such as stone clusters or underground biomes generate as spheres rather than unique shapes. It's faster, but won't look as cool
"Use Fast Worldgen" = false
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Enables quark network profiling features. Do not enable this unless requested to.
"Enable Network Profiling" = false
2021-01-28 20:11:47 +00:00
[categories]
Automation = true
2021-02-12 14:22:54 +00:00
Building = true
2021-01-28 20:11:47 +00:00
Management = true
2021-02-12 14:22:54 +00:00
Tools = true
Tweaks = true
2021-01-28 20:11:47 +00:00
World = true
2021-02-12 14:22:54 +00:00
Mobs = true
2021-01-28 20:11:47 +00:00
Client = true
2021-02-12 14:22:54 +00:00
Oddities = true
Experimental = true
2021-01-28 20:11:47 +00:00
[automation]
2021-02-12 14:22:54 +00:00
"Chain Linkage" = true
2021-01-28 20:11:47 +00:00
"Chains Connect Blocks" = true
2021-02-12 14:22:54 +00:00
Chute = true
2021-01-28 20:11:47 +00:00
"Color Slime" = true
"Dispensers Place Blocks" = true
2021-02-12 14:22:54 +00:00
"Ender Watcher" = true
"Endermites Form Shulkers" = true
"Feeding Trough" = true
2021-01-28 20:11:47 +00:00
Gravisand = true
2021-02-12 14:22:54 +00:00
"Iron Rod" = true
2021-01-28 20:11:47 +00:00
"Metal Buttons" = true
"Obsidian Plate" = true
"Pistons Move Tile Entities" = true
2021-02-12 14:22:54 +00:00
"Redstone Circuit" = true
"Weather Sensor" = true
2021-01-28 20:11:47 +00:00
[automation.chain_linkage]
#
#Can vehicle-linking chains be used for crafting chain armor?
"Crafts Armor" = true
2021-02-12 14:22:54 +00:00
[automation.color_slime]
"Change Name" = true
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[automation.dispensers_place_blocks]
Blacklist = ["minecraft:water", "minecraft:lava", "minecraft:fire"]
2021-01-28 20:11:47 +00:00
[automation.endermites_form_shulkers]
Chance = 0.005
[automation.feeding_trough]
#
#How long, in game ticks, between animals being able to eat from the trough
#Allowed values: [1,)
Cooldown = 30
#
#The maximum amount of animals allowed around the trough's range for an animal to enter love mode
"Max Animals" = 32
2021-02-12 14:22:54 +00:00
#
#The chance (between 0 and 1) for an animal to enter love mode when eating from the trough
#Allowed values: (0,1]
"Love Chance" = 0.333333333
2021-01-28 20:11:47 +00:00
Range = 10.0
2021-02-12 14:22:54 +00:00
[automation.metal_buttons]
"Enable Iron" = true
"Enable Gold" = true
[automation.pistons_move_tile_entities]
"Render Blacklist" = ["psi:programmer", "botania:starfield"]
"Movement Blacklist" = ["minecraft:spawner", "integrateddynamics:cable", "randomthings:blockbreaker", "minecraft:ender_chest", "minecraft:enchanting_table", "minecraft:trapped_chest", "quark:spruce_trapped_chest", "quark:birch_trapped_chest", "quark:jungle_trapped_chest", "quark:acacia_trapped_chest", "quark:dark_oak_trapped_chest", "endergetic:bolloom_bud"]
"Delayed Update List" = ["minecraft:dispenser", "minecraft:dropper"]
[automation.redstone_circuit]
"Enable Randomizer" = true
"Enable Inductor" = true
2021-01-28 20:11:47 +00:00
[building]
"Bamboo Mat" = true
"Burn Vines" = true
2021-02-12 14:22:54 +00:00
"Cobblestone Bricks" = true
2021-01-28 20:11:47 +00:00
"Compressed Blocks" = true
2021-02-12 14:22:54 +00:00
"Duskbound Blocks" = true
"Framed Glass" = true
"Gold Bars" = true
Grate = true
2021-01-28 20:11:47 +00:00
Hedges = true
2021-02-12 14:22:54 +00:00
"Iron Plates" = true
2021-01-28 20:11:47 +00:00
"Item Frames" = true
"Leaf Carpet" = true
"Lit Lamp" = true
Midori = true
2021-02-12 14:22:54 +00:00
"More Brick Types" = true
"More Potted Plants" = true
2021-01-28 20:11:47 +00:00
"More Stone Variants" = true
2021-02-12 14:22:54 +00:00
"Nether Brick Fence Gate" = true
2021-01-28 20:11:47 +00:00
"Paper Decor" = true
2021-02-12 14:22:54 +00:00
"Quilted Wool" = true
2021-01-28 20:11:47 +00:00
Rope = true
2021-02-12 14:22:54 +00:00
"Shallow Dirt" = true
Shingles = true
"Soul Sandstone" = true
"Stained Planks" = true
Stools = true
2021-01-28 20:11:47 +00:00
"Sturdy Stone" = true
2021-02-12 14:22:54 +00:00
"Tallow And Candles" = true
Thatch = true
"Tie Leads To Fences" = true
Turf = true
2021-01-28 20:11:47 +00:00
"Variant Bookshelves" = true
2021-02-12 14:22:54 +00:00
"Variant Chests" = true
"Variant Ladders" = true
"Vertical Planks" = true
"Vertical Slabs" = true
"Wooden Posts" = true
2021-01-28 20:11:47 +00:00
[building.compressed_blocks]
"Charcoal Block and Blaze Lantern Stay On Fire Forever" = true
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Charcoal Block Fuel Time" = 16000
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Blaze Lantern Fuel Time" = 24000
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
"Stick Block Fuel Time" = 900
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,)
"Bamboo Bundle Fuel Time" = 500
"Enable Charcoal Block" = true
"Enable Sugar Cane Block" = true
"Enable Bamboo Block" = true
"Enable Cactus Block" = true
"Enable Chorus Fruit Block" = true
"Enable Stick Block" = true
"Enable Apple Crate" = true
"Enable Golden Apple Crate" = true
"Enable Potato Crate" = true
"Enable Carrot Crate" = true
"Enable Beetroot Crate" = true
"Enable Cocoa Bean Sack" = true
"Enable Nether Wart Sack" = true
"Enable Gunpowder Sack" = true
"Enable Berry Sack" = true
"Enable Blaze Lantern" = true
"Enable Bonded Leather" = true
"Enable Bonded Rabbit Hide" = true
2021-01-28 20:11:47 +00:00
[building.more_brick_types]
"Enable Sandy Bricks" = true
2021-02-12 14:22:54 +00:00
"Enable Snow Bricks" = true
"Enable Magma Bricks" = true
"Enable Charred Nether Bricks" = true
"Enable Blackstone Variant Bricks" = true
2021-01-28 20:11:47 +00:00
#
#This also comes with a utility recipe for Red Nether Bricks
"Enable Blue Nether Bricks" = true
#
#This also includes Red Sandstone Bricks and Soul Sandstone Bricks
"Enable Sandstone Bricks" = true
2021-02-12 14:22:54 +00:00
[building.more_stone_variants]
"Enable Bricks" = true
"Enable Chiseled Bricks" = true
"Enable Pavement" = true
"Enable Pillar" = true
[building.rope]
#
#Set to true to allow ropes to move Tile Entities even if Pistons Push TEs is disabled.
#Note that ropes will still use the same blacklist.
"Force Enable Move Tile Entities" = false
"Enable Dispenser Behavior" = true
2021-01-28 20:11:47 +00:00
[building.tallow_and_candles]
"Candles Fall" = true
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Min Drop" = 1
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
"Max Drop" = 3
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,)
"Tallow Burn Time" = 200
#
2021-01-28 20:11:47 +00:00
#Allowed values: [0,15]
"Enchant Power" = 1.0
2021-02-12 14:22:54 +00:00
[building.thatch]
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,1]
"Fall Damage Multiplier" = 0.5
2021-01-28 20:11:47 +00:00
[building.variant_bookshelves]
"Change Names" = true
2021-02-12 14:22:54 +00:00
[building.variant_chests]
"Replace Worldgen Chests" = true
#
#Chests to put in each structure. The format per entry is "structure=chest", where "structure" is a structure ID, and "chest" is a block ID, which must correspond to a standard chest block.
"Structure Chests" = ["minecraft:village_plains=quark:oak_chest", "minecraft:igloo=quark:spruce_chest", "minecraft:village_snowy=quark:spruce_chest", "minecraft:village_taiga=quark:spruce_chest", "minecraft:desert_pyramid=quark:birch_chest", "minecraft:jungle_pyramid=quark:jungle_chest", "minecraft:village_desert=quark:jungle_chest", "minecraft:village_savanna=quark:acacia_chest", "minecraft:mansion=quark:dark_oak_chest", "minecraft:pillager_outpost=quark:dark_oak_chest", "minecraft:ruined_portal=quark:crimson_chest", "minecraft:bastion_remnant=quark:crimson_chest", "minecraft:fortress=quark:nether_brick_chest", "minecraft:endcity=quark:purpur_chest", "bettermineshafts:mineshaft=quark:oak_chest", "cobbler:shulker_factory=quark:purpur_chest", "conjurer_illager:theatre=quark:dark_oak_chest", "dungeoncrawl:dungeon=quark:oak_chest", "dungeons_plus:bigger_dungeon=quark:oak_chest", "dungeons_plus:end_ruins=quark:purpur_chest", "dungeons_plus:leviathan=quark:jungle_chest", "dungeons_plus:snowy_temple=quark:spruce_chest", "dungeons_plus:soul_prison=quark:warped_chest", "dungeons_plus:tower=quark:oak_chest", "dungeons_plus:warped_garden=quark:warped__chest", "hunterillager:hunterhouse=quark:oak_chest", "iceandfire:gorgon_temple=quark:jungle_chest", "pandoras_creatures:end_prison=quark:purpur_chest", "repurposed_structures:fortress_jungle=quark:jungle_chest", "repurposed_structures:igloo_grassy=quark:oak_chest", "repurposed_structures:igloo_stone=quark:spruce_chest", "repurposed_structures:mineshaft_birch=quark:birch_chest", "repurposed_structures:mineshaft_desert=quark:jungle_chest", "repurposed_structures:mineshaft_end=quark:purpur_chest", "repurposed_structures:mineshaft_icy=quark:spruce_chest", "repurposed_structures:mineshaft_jungle=quark:jungle_chest", "repurposed_structures:mineshaft_nether=quark:nether_brick_chest", "repurposed_structures:mineshaft_ocean=quark:prismarine_chest", "repurposed_structures:mineshaft_savanna=quark:acacia_chest", "repurposed_structures:mineshaft_stone=quark:spruce_chest", "repurposed_structures:mineshaft_swamp_or_dark_forest=quark:dark_oak_chest", "repurposed_structures:mineshaft_taiga=quark:spruce_chest", "repurposed_structures:outpost_badlands=quark:dark_oak_chest", "repurposed_structures:outpost_birch=quark:birch_chest", "repurposed_structures:outpost_crimson=quark:crimson_chest", "repurposed_structures:outpost_desert=quark:jungle_chest", "repurposed_structures:outpost_giant_tree_taiga=quark:spruce_chest", "repurposed_structures:outpost_icy=quark:spruce_chest", "repurposed_structures:outpost_jungle=quark:jungle_chest", "repurposed_structures:outpost_nether_brick=quark:nether_brick_chest", "repurposed_structures:outpost_snowy=quark:spruce_chest", "repurposed_structures:outpost_warped=quark:warped_chest", "repurposed_structures:pyramid_badlands=quark:dark_oak_chest", "repurposed_structures:pyramid_nether=quark:nether_brick_chest", "repurposed_structures:ruined_portal_end=quark:purpur_chest", "repurposed_structures:shipwreck_crimson=quark:crimson_chest", "repurposed_structures:shipwreck_end=quark:purpur_chest", "repurposed_structures:shipwreck_nether_bricks=quark:nether_brick_chest", "repurposed_structures:shipwreck_warped=quark:warped_chest", "repurposed_structures:stronghold_nether=quark:nether_brick_chest", "repurposed_structures:stronghold_stonebrick=quark:oak_chest", "repurposed_structures:temple_nether_basalt=quark:nether_brick_chest", "repurposed_structures:temple_nether_crimson=quark:crimson_chest", "repurposed_structures:temple_nether_soul=quark:warped_chest", "repurposed_structures:temple_nether_warped=quark:warped_chest", "repurposed_structures:temple_nether_wasteland=quark:nether_brick_chest", "repurposed_structures:village_badlands=quark:dark_oak_chest", "repurposed_structures:village_birch=quark:birch_chest", "repurposed_structures:village_crimson=quark:crimson_chest", "repurposed_structures:village_dark_oak=quark:dark_oak_chest", "repurposed_structures:village_giant_taiga=quark:spruce_chest", "repurposed_structures:village_jungle=quark:jungle_chest", "repurposed_structures:villa
[building.variant_ladders]
"Change Names" = true
"Enable Iron Ladder" = true
[management]
"Chests In Boats" = true
"Easy Transfering" = true
2021-01-28 20:11:47 +00:00
"Hotbar Changer" = true
2021-02-12 14:22:54 +00:00
"Inventory Sorting" = true
2021-01-28 20:11:47 +00:00
"Item Sharing" = true
"Right Click Armor" = true
2021-02-12 14:22:54 +00:00
"Shulker Box Right Click" = true
[management.easy_transfering]
"Enable Shift Lock" = true
2021-01-28 20:11:47 +00:00
[management.inventory_sorting]
2021-02-12 14:22:54 +00:00
"Enable Player Inventory" = true
"Enable Player Inventory In Chests" = true
"Enable Chests" = true
2021-01-28 20:11:47 +00:00
#
#Play a click when sorting inventories using keybindings
"Satisfying Click" = true
[management.item_sharing]
"Render Items In Chat" = true
[tools]
2021-02-12 14:22:54 +00:00
"Ancient Tomes" = true
2021-01-28 20:11:47 +00:00
"Bottled Cloud" = true
2021-02-12 14:22:54 +00:00
Camera = true
2021-01-28 20:11:47 +00:00
"Color Runes" = true
2021-02-12 14:22:54 +00:00
"Pathfinder Maps" = true
Pickarang = true
"Seed Pouch" = true
2021-01-28 20:11:47 +00:00
"Slime In A Bucket" = true
Trowel = true
[tools.ancient_tomes]
#
#Set to 0 to not generate in Dungeons
"Dungeon Weight" = 20
#
#Set to 0 to not generate in Stronghold Libraries
"Library Weight" = 30
#
2021-02-12 14:22:54 +00:00
#Set to 0 to not generate in Bastions
"Bastion Weight" = 25
#
#Set to 0 to not generate in Woodland Mansions
"Woodland Mansion Weight" = 15
#
2021-01-28 20:11:47 +00:00
#Set to 0 to not generate in Nether Fortresses
"Nether Fortress Weight" = 0
#
2021-02-12 14:22:54 +00:00
#Set to 0 to not generate in Underwater Ruins
"Underwater Ruin Weight" = 0
2021-01-28 20:11:47 +00:00
#
#Set to 0 to not generate in Monster Boxes
"Monster Box Weight" = 5
2021-02-12 14:22:54 +00:00
"Item Quality" = 2
2021-01-28 20:11:47 +00:00
"Merge Cost" = 35
2021-02-12 14:22:54 +00:00
"Apply Cost" = 35
"Valid Enchantments" = ["minecraft:feather_falling", "minecraft:thorns", "minecraft:sharpness", "minecraft:smite", "minecraft:bane_of_arthropods", "minecraft:knockback", "minecraft:fire_aspect", "minecraft:looting", "minecraft:sweeping", "minecraft:efficiency", "minecraft:unbreaking", "minecraft:fortune", "minecraft:power", "minecraft:punch", "minecraft:luck_of_the_sea", "minecraft:lure", "minecraft:loyalty", "minecraft:riptide", "minecraft:impaling", "minecraft:piercing"]
[tools.bottled_cloud]
"Cloud Level Bottom" = 127
"Cloud Level Top" = 132
[tools.color_runes]
"Dungeon Weight" = 10
"Nether Fortress Weight" = 8
"Jungle Temple Weight" = 8
"Desert Temple Weight" = 8
"Item Quality" = 0
"Apply Cost" = 15
2021-01-28 20:11:47 +00:00
[tools.pathfinder_maps]
#
#In this section you can add custom Pathfinder Maps. This works for both vanilla and modded biomes.
#Each custom map must be on its own line.
#The format for a custom map is as follows:
#<id>,<level>,<min_price>,<max_price>,<color>,<name>
#
#With the following descriptions:
# - <id> being the biome's ID NAME. You can find vanilla names here - https://minecraft.gamepedia.com/Biome#Biome_IDs
# - <level> being the Cartographer villager level required for the map to be unlockable
# - <min_price> being the cheapest (in Emeralds) the map can be
# - <max_price> being the most expensive (in Emeralds) the map can be
# - <color> being a hex color (without the #) for the map to display. You can generate one here - http://htmlcolorcodes.com/
# - <name> being the display name of the map
#
#Here's an example of a map to locate Ice Mountains:
#minecraft:ice_mountains,2,8,14,7FE4FF,Ice Mountains Pathfinder Map
Customs = []
"Xp From Trade" = 5
[tools.pickarang]
#
2021-02-12 14:22:54 +00:00
#How long it takes before the pickarang starts returning to the player if it doesn't hit anything.
Timeout = 20
2021-01-28 20:11:47 +00:00
#
#2 is Iron, 3 is Diamond.
"Harvest Level" = 3
#
#2 is Iron, 3 is Diamond.
"Netherite Harvest Level" = 3
#
#Set to -1 to have the Pickarang be unbreakable.
Durability = 800
#
#Set to -1 to have the Flamerang be unbreakable.
"Netherite Durability" = 1040
#
2021-02-12 14:22:54 +00:00
#22.5 is ender chests, 25.0 is monster boxes, 50 is obsidian. Most things are below 5.
"Max Hardness" = 20.0
#
2021-01-28 20:11:47 +00:00
#Set this to true to use the recipe without the Heart of Diamond, even if the Heart of Diamond is enabled.
"Never Use Heart Of Diamond" = false
2021-02-12 14:22:54 +00:00
#
#Set this to true to disable the short cooldown between throwing pickarangs.
"No Cooldown" = false
[tools.seed_pouch]
"Max Items" = 640
"Show All Variants In Creative" = true
"Shift Range" = 3
[tools.trowel]
#
#Amount of blocks placed is this value + 1. Default is 255 (4 stacks).
#Set to 0 to make the Trowel unbreakable
#Allowed values: [0,)
"Trowel Max Durability" = 255
2021-01-28 20:11:47 +00:00
[tweaks]
2021-02-12 14:22:54 +00:00
"Skull Pikes" = true
2021-01-28 20:11:47 +00:00
"Armed Armor Stands" = true
2021-02-12 14:22:54 +00:00
"Automatic Recipe Unlock" = true
2021-01-28 20:11:47 +00:00
"Axe Leaf Harvesting" = true
2021-02-12 14:22:54 +00:00
"Campfires Boost Elytra" = true
2021-01-28 20:11:47 +00:00
"Compasses Work Everywhere" = true
2021-02-12 14:22:54 +00:00
"Dirt To Path" = true
2021-01-28 20:11:47 +00:00
"Double Door Opening" = true
2021-02-12 14:22:54 +00:00
"Dragon Scales" = true
Emotes = true
"Enhanced Ladders" = true
"Glass Shard" = true
"Hoe Harvesting" = true
2021-01-28 20:11:47 +00:00
"Improved Sleeping" = true
"Infinity Bucket" = true
2021-02-12 14:22:54 +00:00
"Lava Bucket As Trash" = true
"Lock Rotation" = true
"Note Block Mob Sounds" = true
2021-01-28 20:11:47 +00:00
"Pat The Dogs" = true
2021-02-12 14:22:54 +00:00
"Poison Potato Usage" = true
"Reacharound Placing" = true
"Replace Scaffolding" = true
"Sign Editing" = true
"Simple Harvest" = true
2021-01-28 20:11:47 +00:00
"Snow Golem Player Heads" = true
2021-02-12 14:22:54 +00:00
"Springy Slime" = true
"Utility Recipes" = true
"Villagers Follow Emeralds" = true
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[tweaks.skull_pikes]
"Pike Range" = 5.0
2021-01-28 20:11:47 +00:00
[tweaks.automatic_recipe_unlock]
#
#A list of recipe names that should NOT be added in by default
"Ignored Recipes" = []
"Force Limited Crafting" = false
2021-02-12 14:22:54 +00:00
"Disable Recipe Book" = false
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[tweaks.campfires_boost_elytra]
"Boost Strength" = 0.5
"Max Speed" = 1.0
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[tweaks.compasses_work_everywhere]
"Enable Compass Nerf" = true
"Enable Clock Nerf" = true
"Enable Nether" = true
"Enable End" = true
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[tweaks.emotes]
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#The enabled default emotes. Remove from this list to disable them. You can also re-order them, if you feel like it.
"Enabled Emotes" = ["no", "yes", "wave", "salute", "cheer", "clap", "think", "point", "shrug", "headbang", "weep", "facepalm"]
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#The list of Custom Emotes to be loaded.
#Watch the tutorial on Custom Emotes to learn how to make your own: https://youtu.be/ourHUkan6aQ
"Custom Emotes" = []
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Enable this to make custom emotes read the file every time they're triggered so you can edit on the fly.
#DO NOT ship enabled this in a modpack, please.
"Custom Emote Debug" = false
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[tweaks.enhanced_ladders]
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: (,0]
"Fall Speed" = -0.2
[tweaks.hoe_harvesting]
"Hoes Can Have Fortune" = true
2021-01-28 20:11:47 +00:00
[tweaks.improved_sleeping]
"Enable Afk" = true
#
#Allowed values: (0,)
"Afk Time" = 2400
#
#Allowed values: (0,1]
"Percent Req" = 1.0
2021-02-12 14:22:54 +00:00
[tweaks.infinity_bucket]
Cost = 10
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Set this to false to prevent dispensers from using infinite water buckets
"Allow Dispensers To Use" = true
[tweaks.pat_the_dogs]
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#How many ticks it takes for a dog to want affection after being pet/tamed; leave -1 to disable
"Dogs Want Love" = -1
[tweaks.poison_potato_usage]
Chance = 0.1
"Poison Effect" = true
[tweaks.reacharound_placing]
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,1]
Leniency = 0.5
Whitelist = []
Display = "[ ]"
"Display Horizontal" = "< >"
[tweaks.replace_scaffolding]
#
#How many times the algorithm for finding out where a block would be placed is allowed to turn. If you set this to large values (> 3) it may start producing weird effects.
"Max Bounces" = 1
[tweaks.sign_editing]
"Requires Empty Hand" = false
2021-01-28 20:11:47 +00:00
[tweaks.simple_harvest]
#
#Can players harvest crops with empty hand clicks?
"Empty Hand Harvest" = true
#
#Does harvesting crops with a hoe cost durability?
"Harvesting Costs Durability" = false
#
#Should Quark look for (nonvanilla) crops, and handle them?
"Do Harvesting Search" = true
#
#Which crops can be harvested?
#Format is: "harvestState[,afterHarvest]", i.e. "minecraft:wheat[age=7]" or "minecraft:cocoa[age=2,facing=north],minecraft:cocoa[age=0,facing=north]"
"Harvestable Blocks" = ["minecraft:wheat[age=7]", "minecraft:carrots[age=7]", "minecraft:potatoes[age=7]", "minecraft:beetroots[age=3]", "minecraft:nether_wart[age=3]", "minecraft:cocoa[age=2,facing=north],minecraft:cocoa[age=0,facing=north]", "minecraft:cocoa[age=2,facing=south],minecraft:cocoa[age=0,facing=south]", "minecraft:cocoa[age=2,facing=east],minecraft:cocoa[age=0,facing=east]", "minecraft:cocoa[age=2,facing=west],minecraft:cocoa[age=0,facing=west]"]
2021-02-12 14:22:54 +00:00
[tweaks.utility_recipes]
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Can any wool color be dyed?
"Dye Any Wool" = true
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Can other stone-like materials be used for crafting stone tools?
"Better Stone Tool Crafting" = true
#
#Can a dispenser be crafted by adding a bow to a dropper?
"Enable Dispenser" = true
#
#Can a repeater be crafted with the pattern for a redstone torch?
"Enable Repeater" = true
#
#Can you craft a minecart around blocks which can be placed inside?
"Enable Minecarts" = true
#
#Can you craft four chests at once using logs?
"Logs To Chests" = true
#
#Can Coral be crafted into dye?
"Coral To Dye" = true
#
#Can cookies, paper, and bread be crafted in a 2x2 crafting table?
"Bent Recipes" = true
#
#Can Rotten Flesh and Poisonous Potatoes be composted?
"Compostable Toxins" = true
#
#Does Dragon Breath return a bottle when used as a reagent or material?
"Effective Dragon Breath" = true
#
#Can torches can be used as fuel in furnaces?
"Torches Burn" = true
#
#Can bones be smelted down to bone meal?
"Bone Meal Utility" = true
2021-01-28 20:11:47 +00:00
[world]
"Big Dungeon" = true
2021-02-12 14:22:54 +00:00
"Big Stone Clusters" = true
Biotite = true
2021-01-28 20:11:47 +00:00
"Blossom Trees" = true
2021-02-12 14:22:54 +00:00
"Cave Roots" = true
2021-01-28 20:11:47 +00:00
"Chorus Vegetation" = true
Crevices = true
2021-02-12 14:22:54 +00:00
"Fairy Rings" = true
2021-01-28 20:11:47 +00:00
"Mega Caves" = true
2021-02-12 14:22:54 +00:00
"Monster Box" = true
"Nether Obsidian Spikes" = true
"New Stone Types" = true
2021-01-28 20:11:47 +00:00
"Realistic World Gen" = true
2021-02-12 14:22:54 +00:00
Speleothems = true
"Spiral Spires" = true
"Underground Clay" = true
2021-01-28 20:11:47 +00:00
"Brimstone Underground Biome" = true
"Cave Crystal Underground Biome" = true
2021-02-12 14:22:54 +00:00
"Elder Prismarine Underground Biome" = true
"Glowshroom Underground Biome" = true
"Lush Underground Biome" = true
2021-01-28 20:11:47 +00:00
"Overgrown Underground Biome" = true
2021-02-12 14:22:54 +00:00
"Permafrost Underground Biome" = true
"Sandstone Underground Biome" = true
"Slime Underground Biome" = true
2021-01-28 20:11:47 +00:00
"Spider Nest Underground Biome" = true
2021-02-12 14:22:54 +00:00
[world.big_dungeon]
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#The chance that a big dungeon spawn candidate will be allowed to spawn. 0.2 is 20%, which is the same as the Pillager Outpost.
"Spawn Chance" = 0.1
"Loot Table" = "minecraft:chests/simple_dungeon"
"Max Rooms" = 10
"Chest Chance" = 0.5
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_dungeon.biome_types]
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
"Biome Categories" = ["ocean", "beach", "nether", "the_end"]
"Is Blacklist" = true
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters]
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Blocks that stone clusters can replace. If you want to make it so it only replaces in one dimension,
#do "block|dimension", as we do for netherrack and end stone by default.
"Blocks To Replace" = ["minecraft:stone", "minecraft:andesite", "minecraft:diorite", "minecraft:granite", "minecraft:netherrack|minecraft:the_nether", "minecraft:end_stone|minecraft:the_end", "quark:marble", "quark:limestone", "quark:jasper", "quark:slate", "quark:basalt"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.granite]
Enabled = true
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
Rarity = 4
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,255]
"Min Y Level" = 20
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,255]
2021-02-12 14:22:54 +00:00
"Max Y Level" = 80
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Size" = 14
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,)
"Vertical Size" = 14
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Variation" = 9
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Vertical Variation" = 9
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.granite.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[world.big_stone_clusters.granite.biomes]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
2021-02-12 14:22:54 +00:00
"Biome Categories" = ["extreme_hills"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.diorite]
Enabled = true
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
Rarity = 4
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,255]
"Min Y Level" = 20
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,255]
2021-02-12 14:22:54 +00:00
"Max Y Level" = 80
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Size" = 14
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
"Vertical Size" = 14
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Variation" = 9
#
#Allowed values: [0,)
"Vertical Variation" = 9
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.diorite.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[world.big_stone_clusters.diorite.biomes]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
2021-02-12 14:22:54 +00:00
"Biome Categories" = ["savanna", "jungle", "mushroom"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.andesite]
Enabled = true
#
#Allowed values: [0,)
Rarity = 4
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,255]
2021-02-12 14:22:54 +00:00
"Min Y Level" = 20
#
#Allowed values: [0,255]
"Max Y Level" = 80
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Size" = 14
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,)
"Vertical Size" = 14
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Variation" = 9
#
#Allowed values: [0,)
"Vertical Variation" = 9
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.andesite.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.andesite.biomes]
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
"Biome Categories" = ["forest"]
"Is Blacklist" = false
[world.big_stone_clusters.marble]
Enabled = true
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
Rarity = 4
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,255]
"Min Y Level" = 20
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,255]
2021-02-12 14:22:54 +00:00
"Max Y Level" = 80
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Size" = 14
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,)
"Vertical Size" = 14
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Variation" = 9
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Vertical Variation" = 9
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.marble.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[world.big_stone_clusters.marble.biomes]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
2021-02-12 14:22:54 +00:00
"Biome Categories" = ["plains"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.limestone]
Enabled = true
#
#Allowed values: [0,)
Rarity = 4
#
#Allowed values: [0,255]
"Min Y Level" = 20
#
#Allowed values: [0,255]
"Max Y Level" = 80
#
#Allowed values: [0,)
"Horizontal Size" = 14
#
#Allowed values: [0,)
"Vertical Size" = 14
#
#Allowed values: [0,)
"Horizontal Variation" = 9
#
#Allowed values: [0,)
"Vertical Variation" = 9
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.limestone.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.limestone.biomes]
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
"Biome Categories" = ["swamp", "ocean"]
"Is Blacklist" = false
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.jasper]
Enabled = true
#
#Allowed values: [0,)
Rarity = 4
#
#Allowed values: [0,255]
"Min Y Level" = 20
#
#Allowed values: [0,255]
"Max Y Level" = 80
#
#Allowed values: [0,)
"Horizontal Size" = 14
#
#Allowed values: [0,)
"Vertical Size" = 14
#
#Allowed values: [0,)
"Horizontal Variation" = 9
#
#Allowed values: [0,)
"Vertical Variation" = 9
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.jasper.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.jasper.biomes]
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
"Biome Categories" = ["mesa", "desert"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.slate]
Enabled = true
#
#Allowed values: [0,)
Rarity = 4
#
#Allowed values: [0,255]
"Min Y Level" = 20
#
#Allowed values: [0,255]
"Max Y Level" = 80
#
#Allowed values: [0,)
"Horizontal Size" = 14
#
#Allowed values: [0,)
"Vertical Size" = 14
#
#Allowed values: [0,)
"Horizontal Variation" = 9
#
#Allowed values: [0,)
"Vertical Variation" = 9
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.slate.dimensions]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
Dimensions = ["minecraft:overworld"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.slate.biomes]
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
"Biome Categories" = ["icy"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.voidstone]
Enabled = true
#
#Allowed values: [0,)
Rarity = 20
#
#Allowed values: [0,255]
"Min Y Level" = 0
#
#Allowed values: [0,255]
"Max Y Level" = 40
#
#Allowed values: [0,)
"Horizontal Size" = 19
#
#Allowed values: [0,)
"Vertical Size" = 19
#
#Allowed values: [0,)
"Horizontal Variation" = 6
#
#Allowed values: [0,)
"Vertical Variation" = 6
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.voidstone.dimensions]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
Dimensions = ["minecraft:the_end"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.voidstone.biomes]
Biomes = ["minecraft:end_highlands", "minecraft:end_midlands", "minecraft:end_barrens"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.myalite]
"Generate In Air" = true
Enabled = true
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
Rarity = 100
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,255]
"Min Y Level" = 58
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,255]
2021-02-12 14:22:54 +00:00
"Max Y Level" = 62
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Size" = 20
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,)
"Vertical Size" = 40
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Variation" = 6
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Vertical Variation" = 10
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.myalite.dimensions]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
Dimensions = ["minecraft:the_end"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.big_stone_clusters.myalite.biomes]
Biomes = ["minecraft:end_highlands"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[world.biotite]
"Generate Naturally" = false
"Generate On Dragon Death" = true
"Clusters Per Dragon Tick" = 16
"Dragon Ticks Per Cluster" = 1
[world.biotite.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:the_end"]
[world.biotite.ore_settings]
#
#Allowed values: [0,255]
"Min Height" = 1
#
#Allowed values: [0,255]
"Max Height" = 64
#
#Allowed values: [0,)
"Cluster Size" = 14
#
#Allowed values: [0,)
"Cluster Count" = 16
2021-01-28 20:11:47 +00:00
[world.blossom_trees]
2021-02-12 14:22:54 +00:00
[world.blossom_trees.blue]
Rarity = 200
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.blossom_trees.blue.dimensions]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
Dimensions = ["minecraft:overworld"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.blossom_trees.blue.biome_types]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
2021-02-12 14:22:54 +00:00
"Biome Categories" = ["icy"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[world.blossom_trees.lavender]
Rarity = 100
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.blossom_trees.lavender.dimensions]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
Dimensions = ["minecraft:overworld"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.blossom_trees.lavender.biome_types]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
2021-02-12 14:22:54 +00:00
"Biome Categories" = ["swamp"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[world.blossom_trees.orange]
2021-01-28 20:11:47 +00:00
Rarity = 100
2021-02-12 14:22:54 +00:00
[world.blossom_trees.orange.dimensions]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
Dimensions = ["minecraft:overworld"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.blossom_trees.orange.biome_types]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
2021-02-12 14:22:54 +00:00
"Biome Categories" = ["savanna"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[world.blossom_trees.pink]
Rarity = 100
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.blossom_trees.pink.dimensions]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
Dimensions = ["minecraft:overworld"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.blossom_trees.pink.biome_types]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
2021-02-12 14:22:54 +00:00
"Biome Categories" = ["extreme_hills"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
[world.blossom_trees.yellow]
Rarity = 200
[world.blossom_trees.yellow.dimensions]
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
Dimensions = ["minecraft:overworld"]
2021-01-28 20:11:47 +00:00
[world.blossom_trees.yellow.biome_types]
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
"Biome Categories" = ["plains"]
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[world.blossom_trees.red]
Rarity = 30
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.blossom_trees.red.dimensions]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
Dimensions = ["minecraft:overworld"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.blossom_trees.red.biome_types]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
2021-02-12 14:22:54 +00:00
"Biome Categories" = ["mesa"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[world.cave_roots]
"Chunk Attempts" = 300
"Min Y" = 16
"Max Y" = 52
"Enable Brewing" = true
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.cave_roots.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[world.chorus_vegetation]
Rarity = 150
Radius = 7
"Chunk Attempts" = 120
"Highlands Chance" = 1.0
"Midlands Chance" = 0.2
"Other End Biomes Chance" = 0.0
"Passive Teleport Chance" = 0.2
"Endermite Spawn Chance" = 0.01
"Teleport Duplication Chance" = 0.01
[world.crevices]
[world.crevices.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[world.crevices.spawn_settings]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
Rarity = 120
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,255]
"Min Y Level" = 15
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,255]
2021-02-12 14:22:54 +00:00
"Max Y Level" = 50
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Size" = 60
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,)
"Vertical Size" = 4
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Variation" = 20
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Vertical Variation" = 1
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.crevices.spawn_settings.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[world.crevices.spawn_settings.biomes]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
"Biome Categories" = ["ocean", "beach"]
"Is Blacklist" = true
2021-02-12 14:22:54 +00:00
[world.fairy_rings]
"Forest Chance" = 0.00625
"Plains Chance" = 0.0025
Ores = ["minecraft:emerald_ore", "minecraft:diamond_ore"]
[world.fairy_rings.dimensions]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
Dimensions = ["minecraft:overworld"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.mega_caves]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.mega_caves.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[world.mega_caves.spawn_settings]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
Rarity = 800
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,255]
"Min Y Level" = 10
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,255]
2021-02-12 14:22:54 +00:00
"Max Y Level" = 20
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Size" = 80
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,)
"Vertical Size" = 25
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Variation" = 30
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Vertical Variation" = 10
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.mega_caves.spawn_settings.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[world.mega_caves.spawn_settings.biomes]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
2021-02-12 14:22:54 +00:00
"Biome Categories" = ["ocean", "beach"]
"Is Blacklist" = true
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.monster_box]
#
#The chance for the monster box generator to try and place one in a chunk, 1 is 100%
#This can be higher than 100% if you want multiple per chunk, , 0 is 0%
"Chance Per Chunk" = 0.8
"Min Y" = 5
"Max Y" = 30
"Min Mob Count" = 5
"Max Mob Count" = 8
"Enable Extra Loot Table" = true
#
#How many blocks to search vertically from a position before trying to place a block. Higher means you'll get more boxes in open spaces.
"Search Range" = 6
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.monster_box.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[world.nether_obsidian_spikes]
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#The chance for a chunk to contain spikes (1 is 100%, 0 is 0%)
"Chance Per Chunk" = 0.1
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#The chance for a spike to be big (1 is 100%, 0 is 0%)
"Big Spike Chance" = 0.03
#
#Should a chunk have spikes, how many would the generator try to place
"Tries Per Chunk" = 4
"Big Spike Spawners" = true
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.nether_obsidian_spikes.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:the_nether"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.new_stone_types]
"Enable Marble" = true
"Enable Limestone" = true
"Enable Jasper" = true
"Enable Slate" = true
"Enable Voidstone" = true
"Enable Myalite" = true
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.new_stone_types.marble]
[world.new_stone_types.marble.dimensions]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
Dimensions = ["minecraft:overworld"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.new_stone_types.marble.oregen]
#
#Allowed values: [0,255]
"Min Height" = 0
#
#Allowed values: [0,255]
"Max Height" = 256
#
#Allowed values: [0,)
"Cluster Size" = 33
#
#Allowed values: [0,)
"Cluster Count" = 10
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.new_stone_types.limestone]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.new_stone_types.limestone.dimensions]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
2021-02-12 14:22:54 +00:00
[world.new_stone_types.limestone.oregen]
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,255]
"Min Height" = 0
#
#Allowed values: [0,255]
"Max Height" = 256
#
#Allowed values: [0,)
"Cluster Size" = 33
#
#Allowed values: [0,)
"Cluster Count" = 10
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.new_stone_types.jasper]
[world.new_stone_types.jasper.dimensions]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
Dimensions = ["minecraft:overworld"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.new_stone_types.jasper.oregen]
#
#Allowed values: [0,255]
"Min Height" = 0
#
#Allowed values: [0,255]
"Max Height" = 256
#
#Allowed values: [0,)
"Cluster Size" = 33
#
#Allowed values: [0,)
"Cluster Count" = 10
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.new_stone_types.slate]
[world.new_stone_types.slate.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[world.new_stone_types.slate.oregen]
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,255]
"Min Height" = 0
#
#Allowed values: [0,255]
"Max Height" = 256
#
#Allowed values: [0,)
"Cluster Size" = 33
#
#Allowed values: [0,)
"Cluster Count" = 10
[world.new_stone_types.voidstone]
[world.new_stone_types.voidstone.dimensions]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
Dimensions = ["minecraft:the_end"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.new_stone_types.voidstone.oregen]
#
#Allowed values: [0,255]
"Min Height" = 0
#
#Allowed values: [0,255]
"Max Height" = 256
#
#Allowed values: [0,)
"Cluster Size" = 33
#
#Allowed values: [0,)
"Cluster Count" = 10
[world.new_stone_types.myalite]
[world.new_stone_types.myalite.dimensions]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
Dimensions = ["minecraft:the_end"]
[world.new_stone_types.myalite.oregen]
#
#Allowed values: [0,255]
"Min Height" = 0
#
#Allowed values: [0,255]
"Max Height" = 256
#
#Allowed values: [0,)
"Cluster Size" = 33
#
#Allowed values: [0,)
"Cluster Count" = 10
[world.speleothems]
"Tries Per Chunk" = 60
"Speleothems Per Chunk" = 12
"Tries Per Chunk In Nether" = 4
"Speleothems Per Chunk In Nether" = 12
"Max Ylevel" = 55
[world.speleothems.dimensions]
"Is Blacklist" = true
Dimensions = []
[world.spiral_spires]
Rarity = 200
Radius = 15
#
#Set to 0 to turn off Myalite Conduits
"Myalite Conduit Distance" = 24
"Renewable Myalite" = true
[world.spiral_spires.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:the_end"]
[world.spiral_spires.biomes]
Biomes = ["minecraft:end_highlands"]
"Is Blacklist" = false
[world.underground_clay]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.underground_clay.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[world.underground_clay.ore_settings]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,255]
2021-02-12 14:22:54 +00:00
"Min Height" = 20
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,255]
2021-02-12 14:22:54 +00:00
"Max Height" = 60
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Cluster Size" = 20
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Cluster Count" = 3
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.brimstone_underground_biome]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.brimstone_underground_biome.biome_settings]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
Rarity = 80
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,255]
"Min Y Level" = 0
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,255]
"Max Y Level" = 64
#
2021-01-28 20:11:47 +00:00
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Size" = 26
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,)
"Vertical Size" = 14
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Variation" = 14
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
"Vertical Variation" = 6
2021-02-12 14:22:54 +00:00
[world.brimstone_underground_biome.biome_settings.dimensions]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
Dimensions = ["minecraft:overworld"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.brimstone_underground_biome.biome_settings.biomes]
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
"Biome Categories" = ["mesa"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[world.cave_crystal_underground_biome]
#
#Allowed values: [0,1]
"Crystal Spawn Chance" = 0.025
"Crystals Grow In Lava" = false
#
#The chance that a crystal can grow, this is on average 1 in X world ticks, set to a higher value to make them grow slower. Minimum is 1, for every tick. Set to 0 to disable growth.
"Cave Crystal Growth Chance" = 5
"Crystals Craft Runes" = true
[world.cave_crystal_underground_biome.biome_settings]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
Rarity = 400
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,255]
"Min Y Level" = 0
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,255]
2021-02-12 14:22:54 +00:00
"Max Y Level" = 64
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Size" = 42
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,)
"Vertical Size" = 18
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Variation" = 22
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Vertical Variation" = 8
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.cave_crystal_underground_biome.biome_settings.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[world.cave_crystal_underground_biome.biome_settings.biomes]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
2021-02-12 14:22:54 +00:00
"Biome Categories" = ["ocean"]
"Is Blacklist" = true
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.elder_prismarine_underground_biome]
#
#Allowed values: [0,1]
"Water Chance" = 0.25
#
#Allowed values: [0,1]
"Lantern Chance" = 0.0085
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.elder_prismarine_underground_biome.biome_settings]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
Rarity = 200
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,255]
"Min Y Level" = 0
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,255]
2021-02-12 14:22:54 +00:00
"Max Y Level" = 64
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Size" = 26
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
"Vertical Size" = 14
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Variation" = 14
#
#Allowed values: [0,)
"Vertical Variation" = 6
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.elder_prismarine_underground_biome.biome_settings.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[world.elder_prismarine_underground_biome.biome_settings.biomes]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
2021-02-12 14:22:54 +00:00
"Biome Categories" = ["ocean"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[world.glowshroom_underground_biome]
#
#Allowed values: (0,)
"Glowshroom Growth Rate" = 20
#
#Allowed values: [0,1]
"Glowshroom Spawn Chance" = 0.0625
"Enable Huge Glowshrooms" = true
"Enable Danger Sight" = true
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.glowshroom_underground_biome.biome_settings]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
Rarity = 80
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,255]
"Min Y Level" = 0
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,255]
2021-02-12 14:22:54 +00:00
"Max Y Level" = 64
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Size" = 26
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
"Vertical Size" = 14
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Variation" = 14
#
#Allowed values: [0,)
"Vertical Variation" = 6
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.glowshroom_underground_biome.biome_settings.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[world.glowshroom_underground_biome.biome_settings.biomes]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
2021-02-12 14:22:54 +00:00
"Biome Categories" = ["extreme_hills", "mushroom"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[world.lush_underground_biome]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.lush_underground_biome.biome_settings]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
Rarity = 80
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,255]
"Min Y Level" = 0
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,255]
2021-02-12 14:22:54 +00:00
"Max Y Level" = 64
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Size" = 26
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
"Vertical Size" = 14
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Variation" = 14
#
#Allowed values: [0,)
"Vertical Variation" = 6
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.lush_underground_biome.biome_settings.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[world.lush_underground_biome.biome_settings.biomes]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
2021-02-12 14:22:54 +00:00
"Biome Categories" = ["jungle"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
[world.overgrown_underground_biome]
[world.overgrown_underground_biome.biome_settings]
#
#Allowed values: [0,)
Rarity = 80
#
#Allowed values: [0,255]
"Min Y Level" = 0
#
#Allowed values: [0,255]
"Max Y Level" = 64
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Size" = 26
#
#Allowed values: [0,)
2021-01-28 20:11:47 +00:00
"Vertical Size" = 14
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Variation" = 14
#
#Allowed values: [0,)
2021-01-28 20:11:47 +00:00
"Vertical Variation" = 6
2021-02-12 14:22:54 +00:00
[world.overgrown_underground_biome.biome_settings.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
2021-01-28 20:11:47 +00:00
[world.overgrown_underground_biome.biome_settings.biomes]
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
"Biome Categories" = ["forest"]
"Is Blacklist" = false
[world.permafrost_underground_biome]
[world.permafrost_underground_biome.biome_settings]
#
#Allowed values: [0,)
Rarity = 80
#
#Allowed values: [0,255]
"Min Y Level" = 0
#
#Allowed values: [0,255]
"Max Y Level" = 64
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Size" = 26
#
#Allowed values: [0,)
2021-01-28 20:11:47 +00:00
"Vertical Size" = 14
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Variation" = 14
#
#Allowed values: [0,)
2021-01-28 20:11:47 +00:00
"Vertical Variation" = 6
2021-02-12 14:22:54 +00:00
[world.permafrost_underground_biome.biome_settings.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
2021-01-28 20:11:47 +00:00
[world.permafrost_underground_biome.biome_settings.biomes]
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
"Biome Categories" = ["icy"]
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[world.sandstone_underground_biome]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.sandstone_underground_biome.biome_settings]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
Rarity = 80
#
#Allowed values: [0,255]
"Min Y Level" = 0
#
#Allowed values: [0,255]
"Max Y Level" = 64
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Size" = 26
#
#Allowed values: [0,)
2021-01-28 20:11:47 +00:00
"Vertical Size" = 14
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Variation" = 14
#
#Allowed values: [0,)
2021-01-28 20:11:47 +00:00
"Vertical Variation" = 6
2021-02-12 14:22:54 +00:00
[world.sandstone_underground_biome.biome_settings.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[world.sandstone_underground_biome.biome_settings.biomes]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
2021-02-12 14:22:54 +00:00
"Biome Categories" = ["desert"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[world.slime_underground_biome]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.slime_underground_biome.biome_settings]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
Rarity = 120
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,255]
"Min Y Level" = 0
#
#Allowed values: [0,255]
"Max Y Level" = 64
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Size" = 26
#
#Allowed values: [0,)
2021-01-28 20:11:47 +00:00
"Vertical Size" = 14
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Horizontal Variation" = 14
#
#Allowed values: [0,)
2021-01-28 20:11:47 +00:00
"Vertical Variation" = 6
2021-02-12 14:22:54 +00:00
[world.slime_underground_biome.biome_settings.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[world.slime_underground_biome.biome_settings.biomes]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
2021-02-12 14:22:54 +00:00
"Biome Categories" = ["swamp"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[world.spider_nest_underground_biome]
"Enabled Wrapped" = true
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[world.spider_nest_underground_biome.biome_settings]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
Rarity = 80
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,255]
2021-02-12 14:22:54 +00:00
"Min Y Level" = 0
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Allowed values: [0,255]
"Max Y Level" = 64
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
"Horizontal Size" = 26
#
#Allowed values: [0,)
2021-02-12 14:22:54 +00:00
"Vertical Size" = 14
2021-01-28 20:11:47 +00:00
#
#Allowed values: [0,)
"Horizontal Variation" = 14
#
#Allowed values: [0,)
"Vertical Variation" = 6
2021-02-12 14:22:54 +00:00
[world.spider_nest_underground_biome.biome_settings.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[world.spider_nest_underground_biome.biome_settings.biomes]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
2021-02-12 14:22:54 +00:00
"Biome Categories" = ["plains"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
[mobs]
Crabs = true
2021-02-12 14:22:54 +00:00
Forgotten = true
2021-01-28 20:11:47 +00:00
Foxhound = true
2021-02-12 14:22:54 +00:00
Frogs = true
Stonelings = true
2021-01-28 20:11:47 +00:00
Toretoise = true
2021-02-12 14:22:54 +00:00
Wraith = true
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[mobs.crabs]
"Enable Brewing" = true
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[mobs.crabs.spawn_config]
2021-01-28 20:11:47 +00:00
#
#Allowed values: (0,)
2021-02-12 14:22:54 +00:00
"Spawn Weight" = 5
2021-01-28 20:11:47 +00:00
#
#Allowed values: [1,)
"Min Group Size" = 1
#
#Allowed values: [1,)
2021-02-12 14:22:54 +00:00
"Max Group Size" = 3
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[mobs.crabs.spawn_config.biomes]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
2021-02-12 14:22:54 +00:00
"Biome Categories" = ["beach"]
"Is Blacklist" = false
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[mobs.forgotten]
#
#1 in this many Skeletons that spawn under the threshold are replaced with Forgotten.
"Forgotten Spawn Rate" = 0.05
"Max Height For Spawn" = 20
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[mobs.foxhound]
#
#The chance coal will tame a foxhound
"Tame Chance" = 0.05
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[mobs.foxhound.spawn_config]
2021-01-28 20:11:47 +00:00
#
#Allowed values: (0,)
2021-02-12 14:22:54 +00:00
"Spawn Weight" = 30
2021-01-28 20:11:47 +00:00
#
#Allowed values: [1,)
"Min Group Size" = 1
#
#Allowed values: [1,)
2021-02-12 14:22:54 +00:00
"Max Group Size" = 2
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[mobs.foxhound.spawn_config.biomes]
Biomes = ["minecraft:nether_wastes", "minecraft:basalt_deltas"]
"Is Blacklist" = false
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[mobs.foxhound.lesser_spawn_config]
"Max Cost" = 0.7
"Spawn Cost" = 0.15
#
#Allowed values: (0,)
"Spawn Weight" = 2
#
#Allowed values: [1,)
"Min Group Size" = 1
#
#Allowed values: [1,)
"Max Group Size" = 1
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[mobs.foxhound.lesser_spawn_config.biomes]
Biomes = ["minecraft:soul_sand_valley"]
"Is Blacklist" = false
[mobs.frogs]
2021-01-28 20:11:47 +00:00
"Enable Brewing" = true
2021-02-12 14:22:54 +00:00
"Enable Big Funny" = false
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[mobs.frogs.spawn_config]
2021-01-28 20:11:47 +00:00
#
#Allowed values: (0,)
2021-02-12 14:22:54 +00:00
"Spawn Weight" = 40
2021-01-28 20:11:47 +00:00
#
#Allowed values: [1,)
"Min Group Size" = 1
#
#Allowed values: [1,)
"Max Group Size" = 3
2021-02-12 14:22:54 +00:00
[mobs.frogs.spawn_config.biomes]
2021-01-28 20:11:47 +00:00
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
2021-02-12 14:22:54 +00:00
"Biome Categories" = ["swamp"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
2021-02-12 14:22:54 +00:00
[mobs.stonelings]
"Max Y Level" = 24
"Enable Diamond Heart" = true
"Cautious Stonelings" = true
"Tamable Stonelings" = true
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[mobs.stonelings.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
[mobs.stonelings.spawn_config]
2021-01-28 20:11:47 +00:00
#
#Allowed values: (0,)
2021-02-12 14:22:54 +00:00
"Spawn Weight" = 80
2021-01-28 20:11:47 +00:00
#
#Allowed values: [1,)
"Min Group Size" = 1
#
#Allowed values: [1,)
"Max Group Size" = 1
2021-02-12 14:22:54 +00:00
[mobs.stonelings.spawn_config.biomes]
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
"Biome Categories" = ["none", "nether", "the_end"]
"Is Blacklist" = true
[mobs.toretoise]
"Max Y Level" = 32
[mobs.toretoise.dimensions]
"Is Blacklist" = false
Dimensions = ["minecraft:overworld"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[mobs.toretoise.spawn_config]
2021-01-28 20:11:47 +00:00
#
#Allowed values: (0,)
2021-02-12 14:22:54 +00:00
"Spawn Weight" = 100
2021-01-28 20:11:47 +00:00
#
#Allowed values: [1,)
"Min Group Size" = 1
#
#Allowed values: [1,)
2021-02-12 14:22:54 +00:00
"Max Group Size" = 1
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[mobs.toretoise.spawn_config.biomes]
#
#Allowed values: [[none, taiga, extreme_hills, jungle, mesa, plains, savanna,
# icy, the_end, beach, forest, ocean, desert, river, swamp,
# mushroom, nether]
"Biome Categories" = ["none", "nether", "the_end"]
"Is Blacklist" = true
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[mobs.wraith]
#
#List of sound sets to use with wraiths.
#Three sounds must be provided per entry, separated by | (in the format idle|hurt|death). Leave blank for no sound (i.e. if a mob has no ambient noise)
"Wraith Sounds" = ["entity.sheep.ambient|entity.sheep.hurt|entity.sheep.death", "entity.cow.ambient|entity.cow.hurt|entity.cow.death", "entity.pig.ambient|entity.pig.hurt|entity.pig.death", "entity.chicken.ambient|entity.chicken.hurt|entity.chicken.death", "entity.horse.ambient|entity.horse.hurt|entity.horse.death", "entity.cat.ambient|entity.cat.hurt|entity.cat.death", "entity.wolf.ambient|entity.wolf.hurt|entity.wolf.death", "entity.villager.ambient|entity.villager.hurt|entity.villager.death", "entity.polar_bear.ambient|entity.polar_bear.hurt|entity.polar_bear.death", "entity.zombie.ambient|entity.zombie.hurt|entity.zombie.death", "entity.skeleton.ambient|entity.skeleton.hurt|entity.skeleton.death", "entity.spider.ambient|entity.spider.hurt|entity.spider.death", "|entity.creeper.hurt|entity.creeper.death", "entity.endermen.ambient|entity.endermen.hurt|entity.endermen.death", "entity.zombie_pig.ambient|entity.zombie_pig.hurt|entity.zombie_pig.death", "entity.witch.ambient|entity.witch.hurt|entity.witch.death", "entity.blaze.ambient|entity.blaze.hurt|entity.blaze.death", "entity.llama.ambient|entity.llama.hurt|entity.llama.death", "|quark:entity.stoneling.cry|quark:entity.stoneling.die", "quark:entity.frog.idle|quark:entity.frog.hurt|quark:entity.frog.die"]
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[mobs.wraith.spawn_config]
"Max Cost" = 0.7
"Spawn Cost" = 0.15
2021-01-28 20:11:47 +00:00
#
#Allowed values: (0,)
2021-02-12 14:22:54 +00:00
"Spawn Weight" = 8
2021-01-28 20:11:47 +00:00
#
#Allowed values: [1,)
"Min Group Size" = 1
#
#Allowed values: [1,)
"Max Group Size" = 3
2021-02-12 14:22:54 +00:00
[mobs.wraith.spawn_config.biomes]
Biomes = ["minecraft:soul_sand_valley"]
2021-01-28 20:11:47 +00:00
"Is Blacklist" = false
[client]
2021-02-12 14:22:54 +00:00
"Auto Walk Keybind" = true
2021-01-28 20:11:47 +00:00
"Back Button Keybind" = true
2021-02-12 14:22:54 +00:00
"Chest Searching" = true
"Greener Grass" = true
2021-01-28 20:11:47 +00:00
"Improved Mount Hud" = true
2021-02-12 14:22:54 +00:00
"Improved Tooltips" = true
2021-01-28 20:11:47 +00:00
"Usage Ticker" = true
2021-02-12 14:22:54 +00:00
"Variant Animal Textures" = true
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[client.greener_grass]
"Affect Leaves" = true
"Alpha Grass" = false
"Absolute Values" = false
"Red Shift" = -30
"Green Shift" = 30
"Blue Shift" = -30
"Block List" = ["minecraft:large_fern", "minecraft:tall_grass", "minecraft:grass_block", "minecraft:fern", "minecraft:grass", "minecraft:potted_fern", "minecraft:sugar_cane", "environmental:giant_tall_grass"]
"Leaves List" = ["minecraft:spruce_leaves", "minecraft:birch_leaves", "minecraft:oak_leaves", "minecraft:jungle_leaves", "minecraft:acacia_leaves", "minecraft:dark_oak_leaves", "atmospheric:rosewood_leaves", "atmospheric:morado_leaves", "atmospheric:yucca_leaves", "autumnity:maple_leaves", "environmental:willow_leaves", "environmental:hanging_willow_leaves", "minecraft:vine"]
2021-01-28 20:11:47 +00:00
[client.improved_tooltips]
"Attribute Tooltips" = true
2021-02-12 14:22:54 +00:00
"Food Tooltips" = true
"Shulker Tooltips" = true
"Map Tooltips" = true
2021-01-28 20:11:47 +00:00
"Enchanting Tooltips" = true
2021-02-12 14:22:54 +00:00
"Shulker Box Use Colors" = true
"Shulker Box Require Shift" = false
"Map Require Shift" = false
"Show Saturation" = true
"Food Compression Threshold" = 4
2021-01-28 20:11:47 +00:00
#
#The value of each shank of food. Tweak this when using mods like Hardcore Hunger which change that value.
"Food Divisor" = 2
2021-02-12 14:22:54 +00:00
"Enchanting Stacks" = ["minecraft:diamond_sword", "minecraft:diamond_pickaxe", "minecraft:diamond_shovel", "minecraft:diamond_axe", "minecraft:diamond_hoe", "minecraft:diamond_helmet", "minecraft:diamond_chestplate", "minecraft:diamond_leggings", "minecraft:diamond_boots", "minecraft:shears", "minecraft:bow", "minecraft:fishing_rod", "minecraft:crossbow", "minecraft:trident", "minecraft:elytra", "quark:pickarang"]
2021-01-28 20:11:47 +00:00
#
#A list of additional stacks to display on each enchantment
#The format is as follows:
#enchant_id=item1,item2,item3...
#So to display a carrot on a stick on a mending book, for example, you use:
#minecraft:mending=minecraft:carrot_on_a_stick
"Enchanting Additional Stacks" = []
2021-02-12 14:22:54 +00:00
[client.usage_ticker]
#
#Switch the armor display to the off hand side and the hand display to the main hand side
Invert = false
"Shift Left" = 0
"Shift Right" = 0
"Enable Main Hand" = true
"Enable Off Hand" = true
"Enable Armor" = true
[client.variant_animal_textures]
"Enable Cow" = true
"Enable Pig" = true
"Enable Chicken" = true
"Enable Shiny Rabbit" = true
"Enable Shiny Llama" = true
"Enable L G B T Bees" = true
"Every Bee Is L G B T" = false
#
#The chance for an animal to have a special "Shiny" skin, like a shiny pokemon. This is 1 in X. Set to 0 to disable.
"Shiny Animal Chance" = 2048
2021-01-28 20:11:47 +00:00
[oddities]
Backpack = true
Magnets = true
2021-02-12 14:22:54 +00:00
"Matrix Enchanting" = true
2021-01-28 20:11:47 +00:00
Pipes = true
2021-02-12 14:22:54 +00:00
"Totem Of Holding" = true
2021-01-28 20:11:47 +00:00
2021-02-12 14:22:54 +00:00
[oddities.backpack]
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Set this to true to allow the backpacks to be unequipped even with items in them
"Super Op Mode" = false
"Enable Ravager Hide" = true
"Base Ravager Hide Drop" = 1
"Extra Chance Per Looting" = 0.5
2021-01-28 20:11:47 +00:00
[oddities.magnets]
#
#Any items you place in this list will be derived so that any block made of it will become magnetizable
"Magnetic Derivation List" = ["minecraft:iron_ingot"]
2021-02-12 14:22:54 +00:00
"Magnetic Whitelist" = ["minecraft:chipped_anvil", "minecraft:damaged_anvil"]
"Magnetic Blacklist" = ["minecraft:tripwire_hook"]
2021-01-28 20:11:47 +00:00
[oddities.matrix_enchanting]
#
#The maximum enchanting power the matrix enchanter can accept
"Max Bookshelves" = 15
#
#Should this be X, the price of a piece increase by 1 every X pieces you generate
"Piece Price Scale" = 9
#
2021-02-12 14:22:54 +00:00
#The higher this is, the better enchantments you'll get on books
"Book Enchantability" = 12
2021-01-28 20:11:47 +00:00
#
#How many pieces you can generate without any bookshelves
"Base Max Piece Count" = 3
#
2021-02-12 14:22:54 +00:00
#How many pieces you can generate without any bookshelves (for Books)
"Base Max Piece Count Book" = 1
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#At which piece count the calculation for the min level should default to increasing one per piece rather than using the scale factor
"Min Level Cutoff" = 10
2021-01-28 20:11:47 +00:00
#
#How many pieces a single Lapis can generate
"Charge Per Lapis" = 4
#
2021-02-12 14:22:54 +00:00
#How much the min level requirement for adding a new piece should increase for each piece added (up until the value of Min Level Cutoff)
"Min Level Scale Factor" = 1.5
#
#How much the min level requirement for adding a new piece to a book should increase per each bookshelf being used
"Min Level Scale Factor Book" = 2.0
#
#How much to multiply the frequency of pieces where at least one of the same type has been generated
"Dupe Multiplier" = 1.4
2021-01-28 20:11:47 +00:00
#
#How much to multiply the frequency of pieces where incompatible pieces have been generated
"Incompatible Multiplier" = 0.0
#
2021-02-12 14:22:54 +00:00
#Set to false to disable the ability to create Enchanted Books
"Allow Books" = true
2021-01-28 20:11:47 +00:00
#
#Set this to true to allow treasure enchantments to be rolled as pieces
"Allow Treasures" = false
#
2021-02-12 14:22:54 +00:00
#Set to false to disable the tooltip for items with pending enchantments
"Show Tooltip" = true
#
2021-01-28 20:11:47 +00:00
#By default, enchantment rarities are fuzzed a bit to feel better with the new system. Set this to false to override this behaviour.
"Normalize Rarity" = true
#
2021-02-12 14:22:54 +00:00
#Matrix Enchanting can be done with water instead of air around the enchanting table. Set this to false to disable this behaviour.
"Allow Underwater Enchanting" = true
#
#A list of enchantment IDs you don't want the enchantment table to be able to create
"Disallowed Enchantments" = []
#
#An array of influences each candle should apply. This list must be 16 elements long, and is in order of wool colors.
"Influences List" = ["minecraft:unbreaking", "minecraft:fire_protection", "minecraft:knockback,minecraft:punch", "minecraft:feather_falling", "minecraft:looting,minecraft:fortune,minecraft:luck_of_the_sea", "minecraft:blast_protection", "minecraft:silk_touch,minecraft:channeling", "minecraft:bane_of_arthropods", "minecraft:protection", "minecraft:respiration,minecraft:loyalty,minecraft:infinity", "minecraft:sweeping,minecraft:multishot", "minecraft:efficiency,minecraft:sharpness,minecraft:lure,minecraft:power,minecraft:impaling,minecraft:quick_charge", "minecraft:aqua_affinity,minecraft:depth_strider,minecraft:riptide", "minecraft:thorns,minecraft:piercing", "minecraft:fire_aspect,minecraft:flame", "minecraft:smite,minecraft:projectile_protection"]
#
#Set to false to disable the ability to influence enchantment outcomes with candles (requires the Tallow and Candles module enabled)
"Allow Influencing" = true
#
2021-01-28 20:11:47 +00:00
#The max amount of candles that can influence a single enchantment
"Influence Max" = 4
#
2021-02-12 14:22:54 +00:00
#How much each candle influences an enchantment. This works as a multiplier to its weight
"Influence Power" = 0.125
2021-01-28 20:11:47 +00:00
[oddities.pipes]
2021-02-12 14:22:54 +00:00
#
#How long it takes for an item to cross a pipe. Bigger = slower.
"Pipe Speed" = 5
2021-01-28 20:11:47 +00:00
#
#Set to 0 if you don't want pipes to have a max amount of items
"Max Pipe Items" = 16
#
#When items eject or are absorbed by pipes, should they make sounds?
"Do Pipes Whoosh" = true
2021-02-12 14:22:54 +00:00
[oddities.totem_of_holding]
2021-01-28 20:11:47 +00:00
#
2021-02-12 14:22:54 +00:00
#Set this to false to remove the behaviour where totems destroy themselves if the player dies again.
"Dark Souls Mode" = true
"Spawn Totem on PVP Kill" = false
#
#Set this to true to make it so that if a totem is destroyed, the items it holds are destroyed alongside it rather than dropped
"Destroy Lost Items" = false
#
#Set this to false to only allow the owner of a totem to collect its items rather than any player
"Allow Anyone To Collect" = true
"Enable Soul Compass" = true
2021-01-28 20:11:47 +00:00
[experimental]
"Adjustable Chat" = false
"Custom Underground Biome" = false
"Game Nerfs" = false
2021-02-12 14:22:54 +00:00
"Narrator Readout" = false
"Overlay Shader" = false
2021-01-28 20:11:47 +00:00
[experimental.adjustable_chat]
"Horizontal Shift" = 0
"Vertical Shift" = 0
[experimental.custom_underground_biome]
#
#The format for these definitions is:
#dimensions;isDimensionBlacklist;biomeTypews;isBiomeBlacklist;rarity;minY..maxY;horizontalSize,verticalSize;horizontalVariation,verticalVariation;floorBlocks@weight;ceilingBlocks@weight;wallBlocks@weight;mimicInside
#That's a lot to take in, so here's an example. This would be for the default config of the Slime underground biome. (Spaces are allowed.)
#minecraft:overworld; false; SWAMP; false; 120; 10..40; 26,14; 14,6; minecraft:water@915, minecraft:slime_block@85; minecraft:green_terracotta@2, minecraft:lime_terracotta@3, minecraft:light_blue_terracotta@1; CEILING; false
"Biome Definitions" = []
[experimental.game_nerfs]
#
#Makes Mending act like the Unmending mod
#https://www.curseforge.com/minecraft/mc-mods/unmending
"Nerf Mending" = true
#
2021-02-12 14:22:54 +00:00
#Resets all villager discounts when zombified to prevent reducing prices to ridiculous levels
"Nerf Villager Discount" = true
#
2021-01-28 20:11:47 +00:00
#Makes Iron Golems not drop Iron Ingots
"Disable Iron Farms" = true
#
#Makes Boats not glide on ice
"Disable Ice Roads" = true
#
2021-02-12 14:22:54 +00:00
#Makes Sheep not drop Wool when killed
"Disable Wool Drops" = true
2021-01-28 20:11:47 +00:00
[experimental.overlay_shader]
#
#Sets the name of the shader to load on a regular basis. This can load any shader the Camera module can (and requires the Camera module enabled to apply said logic).
#Some useful shaders include 'desaturate', 'oversaturate', 'bumpy'
#Colorblind simulation shaders are available in the form of 'deuteranopia', 'protanopia', 'tritanopia', and 'achromatopsia'
Shader = "none"