release: 1.1.0

This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2025-12-01 21:40:13 -03:00
commit fa7ded9294
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
342 changed files with 16046 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
# Ignore the exported modpack
Hydractify's Cobblemon Campaign-1.1.0.mrpack

41
config/accessories.json5 Normal file
View file

@ -0,0 +1,41 @@
{
"useExperimentalCaching": false,
"clientOptions": {
"equipControl": "MUST_NOT_CROUCH",
"forceNullRenderReplacement": false,
"disableEmptySlotScreenError": false,
"showCosmeticAccessories": true,
"disabledDefaultRenders": []
},
"screenOptions": {
"selectedScreenType": "EXPERIMENTAL_V1",
"showUnusedSlots": false,
"allowSlotScrolling": true,
"inventoryButtonOffset": {
"x": 66,
"y": 8
},
"creativeInventoryButtonOffset": {
"x": 96,
"y": 6
},
"isDarkMode": false,
"showEquippedStackSlotType": true,
"entityLooksAtMouseCursor": false,
"allowSideBarCraftingGrid": true,
"showGroupTabs": true,
"hoveredOptions": {
"brightenHovered": true,
"cycleBrightness": true,
"line": false,
"clickbait": false
},
"unHoveredOptions": {
"renderUnHovered": true,
"darkenUnHovered": true,
"darkenedBrightness": 0.5,
"darkenedOpacity": 1.0
}
},
"modifiers": []
}

108
config/ali/ali_common.json Normal file
View file

@ -0,0 +1,108 @@
{
"blockCategories": [
{
"key": "ali:plant_loot",
"type": "BLOCK",
"icon": "minecraft:diamond_hoe",
"hide": false,
"classes": [
"net.minecraft.class_2261"
]
},
{
"key": "ali:block_loot",
"type": "BLOCK",
"icon": "minecraft:diamond_pickaxe",
"hide": false,
"classes": [
"net.minecraft.class_2248"
]
}
],
"entityCategories": [
{
"key": "ali:entity_loot",
"type": "ENTITY",
"icon": "minecraft:skeleton_skull",
"hide": false,
"classes": [
"net.minecraft.class_1297"
]
}
],
"gameplayCategories": [
{
"key": "ali:chest_loot",
"type": "GAMEPLAY",
"icon": "minecraft:chest",
"hide": false,
"pattern": [
"^.*:chests/[a-z_]*$",
"^.*:chests/village/[a-z_]*$"
]
},
{
"key": "ali:trial_chambers",
"type": "GAMEPLAY",
"icon": "minecraft:spawner",
"hide": false,
"pattern": [
"^.*:chests/trial_chambers/.*$",
"^.*:pots/trial_chambers/.*$",
"^.*:dispensers/trial_chambers/.*$",
"^.*:spawners/ominous/trial_chamber/.*$",
"^.*:spawners/trial_chamber/.*$",
"^.*:equipment/.*$"
]
},
{
"key": "ali:fishing_loot",
"type": "GAMEPLAY",
"icon": "minecraft:fishing_rod",
"hide": false,
"pattern": [
"^.*:gameplay/fishing.*$"
]
},
{
"key": "ali:archaeology_loot",
"type": "GAMEPLAY",
"icon": "minecraft:decorated_pot",
"hide": false,
"pattern": [
"^.*:archaeology/.*$"
]
},
{
"key": "ali:hero_loot",
"type": "GAMEPLAY",
"icon": "minecraft:emerald",
"hide": false,
"pattern": [
"^.*:gameplay/hero_of_the_village/.*$"
]
},
{
"key": "ali:gameplay_loot",
"type": "GAMEPLAY",
"icon": "minecraft:compass",
"hide": false,
"pattern": [
".*"
]
}
],
"tradeCategories": [
{
"key": "ali:trade_loot",
"type": "TRADE",
"icon": "minecraft:emerald_block",
"hide": false,
"pattern": [
".*"
]
}
],
"disabledEntities": [],
"logMoreStatistics": false
}

View file

@ -0,0 +1,18 @@
{
"items": {
/* Items in this list will not be modified by ItemSplitBugFix.
Supports wildcard '*'. For example:
- 'minecraft:diamond' matches exactly 'minecraft:diamond'
- '*:diamond*' matches any item from any mod that contains 'diamond'
- 'minecraft:*' matches all items from minecraft namespace
- '*nec*' matches any item that contains 'nec', eg. 'necromancy:abc', 'my_mod:necklace'
*/
"blacklistItems": [
"alexscaves:sack_of_sating",
"hexerei:*",
"spelunkery:*",
"minecraft:spyglass",
"technicalcores:*"
]
}
}

22
config/appleskin.json5 Normal file
View file

@ -0,0 +1,22 @@
{
// If true, shows the hunger and saturation values of food in its tooltip while holding SHIFT
"showFoodValuesInTooltip": true,
// If true, shows the hunger and saturation values of food in its tooltip automatically (without needing to hold SHIFT)
"showFoodValuesInTooltipAlways": true,
// If true, shows your current saturation level overlayed on the hunger bar
"showSaturationHudOverlay": false,
// If true, shows the hunger (and saturation if showSaturationHudOverlay is true) that would be restored by food you are currently holding
"showFoodValuesHudOverlay": false,
// If true, enables the hunger/saturation/health overlays for food in your off-hand
"showFoodValuesHudOverlayWhenOffhand": false,
// If true, shows your food exhaustion as a progress bar behind the hunger bar
"showFoodExhaustionHudUnderlay": false,
// If true, shows estimated health restored by food on the health bar
"showFoodHealthHudOverlay": false,
// If true, shows your hunger, saturation, and exhaustion level in Debug Screen
"showFoodDebugInfo": true,
// If true, health/hunger overlay will shake to match Minecraft's icon animations
"showVanillaAnimationsOverlay": true,
// Alpha value of the flashing icons at their most visible point (1.0 = fully opaque, 0.0 = fully transparent)
"maxHudOverlayFlashAlpha": 0.6499999761581421
}

35
config/balm-client.toml Normal file
View file

@ -0,0 +1,35 @@
# This is an example boolean property
exampleBoolean = true
# This is an example enum property
exampleEnum = "Hello"
# This is an example enum list property
exampleEnumList = [ "Hello", "World" ]
# This is an example int property
exampleInt = 42
# This is an example int list property
exampleIntList = [ 12, 24 ]
# This is an example resource location set property
exampleResourceLocationSet = [ "minecraft:dirt", "minecraft:diamond" ]
# This is an example string property
exampleString = "Hello World"
# This is an example string list property
exampleStringList = [ "Hello", "World" ]
# This is an example category
[exampleCategory]
# This is an example float inside a category
exampleFloat = 42.84
# This is an example string inside a category
innerField = "I am inside"

View file

@ -0,0 +1,22 @@
[client]
# Add mod ids here of mods that you wish to disable Crafting Tweaks support for.
disabledAddons = [ ]
# We both know JEI is much better. This option hides Vanilla's crafting book button instead of moving it.
hideVanillaCraftingGuide = false
# Set to 'DEFAULT' to enable both buttons and hotkeys. Set to 'BUTTONS' to enable buttons only. Set to 'HOTKEYS' to enable hotkeys only. Set to 'DISABLED' to disable completely.
mode = "DEFAULT"
# If set to true, right-clicking the result slot in a crafting table will craft a full stack.
rightClickCraftsStack = true
[common]
# A list of modid:name entries that will not be crafted by the compress key.
compressDenylist = [ "minecraft:sandstone", "minecraft:iron_trapdoor" ]
# Set this to false if you want the (de)compress feature to work outside of crafting GUIs (only works if installed on server while in the player inventory)
compressRequiresCraftingGrid = true

38
config/balm-common.toml Normal file
View file

@ -0,0 +1,38 @@
# This is an example boolean property
exampleBoolean = true
# This is an example enum property
exampleEnum = "Hello"
# This is an example enum list property
exampleEnumList = [ "Hello", "World" ]
# This is an example int property
exampleInt = 42
# This is an example int list property
exampleIntList = [ 12, 24 ]
# This is an example multiline string property
exampleMultilineString = "Hello World"
# This is an example resource location set property
exampleResourceLocationSet = [ "minecraft:diamond", "minecraft:dirt" ]
# This is an example string property
exampleString = "Hello World"
# This is an example string list property
exampleStringList = [ "Hello", "World" ]
# This is an example category
[exampleCategory]
# This is an example float inside a category
exampleFloat = 42.84
# This is an example string inside a category
innerField = "I am inside"

View file

@ -0,0 +1,10 @@
#Wed May 10 20:34:07 EDT 2023
override_curse_color=true
color_mode=ALPHABETICALLY
enchanted_book_glint=true
color_books=true
show_max_enchantment_level=false
sorting_mode=ALPHABETICALLY
keep_curses_below=true
version=2
tooltip_mode=ENABLED

View file

@ -0,0 +1,162 @@
{
"minecraft:fire_protection": {
"orderIndex": 1,
"color": 12888741
},
"minecraft:knockback": {
"orderIndex": 16,
"color": 6314848
},
"minecraft:mending": {
"orderIndex": 37,
"color": 13303649
},
"minecraft:power": {
"orderIndex": 24,
"color": 12915514
},
"minecraft:luck_of_the_sea": {
"orderIndex": 28,
"color": 4974672
},
"minecraft:thorns": {
"orderIndex": 7,
"color": 5639435
},
"minecraft:sweeping": {
"orderIndex": 19,
"color": 16757505
},
"minecraft:feather_falling": {
"orderIndex": 2,
"color": 16773329
},
"minecraft:flame": {
"orderIndex": 26,
"color": 16741654
},
"minecraft:binding_curse": {
"orderIndex": 10,
"color": 2575646
},
"minecraft:aqua_affinity": {
"orderIndex": 6,
"color": 7240439
},
"minecraft:projectile_protection": {
"orderIndex": 4,
"color": 13422037
},
"minecraft:smite": {
"orderIndex": 14,
"color": 12541742
},
"minecraft:frost_walker": {
"orderIndex": 9,
"color": 9483519
},
"minecraft:vanishing_curse": {
"orderIndex": 38,
"color": 1511968
},
"minecraft:punch": {
"orderIndex": 25,
"color": 6314848
},
"minecraft:blast_protection": {
"orderIndex": 3,
"color": 4468322
},
"minecraft:impaling": {
"orderIndex": 31,
"color": 12915514
},
"minecraft:bane_of_arthropods": {
"orderIndex": 15,
"color": 1003872
},
"minecraft:sharpness": {
"orderIndex": 13,
"color": 12915514
},
"minecraft:efficiency": {
"orderIndex": 20,
"color": 16773476
},
"minecraft:silk_touch": {
"orderIndex": 21,
"color": 16777215
},
"minecraft:looting": {
"orderIndex": 18,
"color": 16758363
},
"minecraft:lure": {
"orderIndex": 29,
"color": 16711680
},
"minecraft:depth_strider": {
"orderIndex": 8,
"color": 10279935
},
"minecraft:soul_speed": {
"orderIndex": 11,
"color": 4273196
},
"minecraft:respiration": {
"orderIndex": 5,
"color": 8050175
},
"minecraft:fire_aspect": {
"orderIndex": 17,
"color": 16741654
},
"minecraft:piercing": {
"orderIndex": 36,
"color": 3373904
},
"minecraft:swift_sneak": {
"orderIndex": 12,
"color": 12915514
},
"minecraft:loyalty": {
"orderIndex": 30,
"color": 7259313
},
"minecraft:unbreaking": {
"orderIndex": 22,
"color": 6042448
},
"minecraft:riptide": {
"orderIndex": 32,
"color": 11325425
},
"minecraft:quick_charge": {
"orderIndex": 35,
"color": 16711680
},
"minecraft:protection": {
"orderIndex": 0,
"color": 10858436
},
"minecraft:infinity": {
"orderIndex": 27,
"color": 8084455
},
"minecraft:fortune": {
"orderIndex": 23,
"color": 16758363
},
"minecraft:multishot": {
"orderIndex": 34,
"color": 16757505
},
"minecraft:channeling": {
"orderIndex": 33,
"color": 11466239
},
"emi_loot:random": {
"orderIndex": 39,
"color": 12915514
}
}

View file

@ -0,0 +1,18 @@
{
"defaultUncompletedIconColor": "#FFFFFF",
"defaultUncompletedTitleColor": "#0489C1",
"defaultCompletedIconColor": "#DBA213",
"defaultCompletedTitleColor": "#DBA213",
"doAdvancementsBackgroundFade": true,
"showDebugCoordinates": false,
"orderTabsAlphabetically": false,
"uiScaling": 100,
"criteriaDetail": "Default",
"criteriaDetailRequiresShift": false,
"addInventoryButton": false,
"defaultDrawDirectLines": false,
"defaultHideLines": false,
"defaultCompletedLineColor": "#FFFFFF",
"defaultUncompletedLineColor": "#FFFFFF",
"onlyUseAboveAdvancementTabs": false
}

View file

@ -0,0 +1,6 @@
{
"autoColorPingText": true,
"renderPingBars": true,
"pingTextColor": "#A0A0A0",
"pingTextFormatString": "%dms"
}

View file

@ -0,0 +1,16 @@
{
// Align player to camera on left & right clicks
"aimOnInteract": true,
// How long player will be aligned to camera after left & right clicks
"aimDuration": 40,
// Angle in degrees within the player will slightly follow camera yaw (while standing still)
"followYaw": 45,
// Does camera should rotate freely during elytra flight
"freeCameraDuringElytraFlight": false,
// Completely remove third-person front view
"skipThirdPersonFrontView": false,
// How fast player changes movement direction in third-person
"playerRotationSpeed": 50,
// How fast player pitch follows camera pitch in third-person
"pitchChangeSpeed": 65
}

View file

@ -0,0 +1,16 @@
#partner_id - Your partner ID to use in during the ordering process.
#partner_id - Without this you will not be credited for the purchases.
#partner_id - (Your partner id is not the same as your referral link, please check your client area to find your partner id at https://www.bisecthosting.com/partners/console.php).
#pack_id - The id of this modpack.
#pack_id - (This is BH internal pack id; Find the id here: https://www.bisecthosting.com/partners/console.php)
#pack_edit_mode - Set this to false to disable pack config screen and enable user configs instead.
#pack_edit_mode - This should always be done by the pack author once they are done with configuring the pack.
#pack_edit_mode - To re-enable Pack Edit Mode, please edit the config file.
#BHMenu config file.
#
#IMPORTANT INFO
#
#Mon Dec 01 20:10:25 BRT 2025
pack_edit_mode=false
pack_id=19377
partner_id=6486

View file

@ -0,0 +1,16 @@
#Server Creator Banner Configs
#open_screen_button.x - The position of the button from the left of the screen.
#open_screen_button.x - Set to -1 to default.
#open_screen_button.y - The position of the button from the top of the screen.
#open_screen_button.y - Set to -1 to default.
#open_screen_button.width - The width of the button.
#open_screen_button.width - Set to 0 to default.
#open_screen_button.vanilla_button - Turn the Public Server List button into a vanilla styled one.
#open_screen_button.vanilla_button - Causes default vanilla graphics and might help with compatibility with other mods.
#
#Mon Dec 01 20:10:25 BRT 2025
enabled=false
open_screen_button.vanilla_button=false
open_screen_button.width=0
open_screen_button.x=-1
open_screen_button.y=-1

View file

@ -0,0 +1,13 @@
#Server Creator Banner Configs
#title - The title to display at the top of the entry.
#description - The description to display below the title.
#use_language_files - Set this to true to use specific language translation keys.
#use_language_files - This requires a custom mod that adds resource files, such as OpenLoader.
#use_language_files - Use 'server_entry.title' key for the Title;
#use_language_files - Use 'server_entry.description' key for the Description.
#
#Mon Dec 01 20:10:25 BRT 2025
description=Click me to get your own server\!
enabled=true
title=Need a server?
use_language_files=false

7
config/bwncr.toml Normal file
View file

@ -0,0 +1,7 @@
[general]
silenceWither = true
silenceTrader = false
silenceDragon = true
silenceLightning = true
silenceUs = []
debugMode = false

7
config/citresewn.json Normal file
View file

@ -0,0 +1,7 @@
{
"enabled": true,
"mute_errors": false,
"mute_warns": false,
"cache_ms": 50,
"broken_paths": false
}

105
config/cobblemon/main.json Normal file
View file

@ -0,0 +1,105 @@
{
"lastSavedVersion": "1.7.1",
"maxPokemonLevel": 100,
"maxPokemonFriendship": 255,
"announceDropItems": true,
"defaultDropItemMethod": "on-entity",
"dropAfterDeathAnimation": false,
"ambientPokemonCryTicks": 1080,
"defaultKeyItems": [],
"defaultBoxCount": 40,
"pokemonSaveIntervalSeconds": 30,
"storageFormat": "nbt",
"preventCompletePartyDeposit": false,
"mongoDBConnectionString": "mongodb://localhost:27017",
"mongoDBDatabaseName": "cobblemon",
"maxVerticalCorrectionBlocks": 64,
"minimumLevelRangeMax": 10,
"enableSpawning": true,
"minimumDistanceBetweenEntities": 8.0,
"maxNearbyBlocksHorizontalRange": 4,
"maxNearbyBlocksVerticalRange": 2,
"maxVerticalSpace": 8,
"spawningZoneDiameter": 8,
"spawningZoneHeight": 16,
"ticksBetweenSpawnAttempts": 20.0,
"minimumSpawningZoneDistanceFromPlayer": 16.0,
"maximumSpawningZoneDistanceFromPlayer": 64.0,
"maximumSpawnsPerPass": 8,
"exportSpawnConfig": false,
"savePokemonToWorld": true,
"exportStarterConfig": false,
"autoUpdateShowdown": true,
"defaultFleeDistance": 32.0,
"allowExperienceFromPvP": true,
"experienceShareMultiplier": 0.5,
"luckyEggMultiplier": 1.5,
"allowSpectating": true,
"experienceMultiplier": 2.0,
"pokemonPerChunk": 1.0,
"pokeSnackPokemonPerChunk": 2.0,
"passiveStatuses": {
"cobblemon:poison": "180-300",
"cobblemon:poisonbadly": "180-300",
"cobblemon:paralysis": "180-300",
"cobblemon:frozen": "180-300",
"cobblemon:sleep": "180-300",
"cobblemon:burn": "180-300"
},
"infiniteHealerCharge": false,
"maxHealerCharge": 6.0,
"secondsToChargeHealingMachine": 900.0,
"defaultFaintTimer": 300,
"faintAwakenHealthPercent": 0.2,
"healPercent": 0.05,
"healTimer": 60,
"baseApricornTreeGenerationChance": 0.1,
"displayEntityLevelLabel": true,
"displayEntityNameLabel": true,
"displayNameForUnknownPokemon": false,
"displayEntityLabelsWhenCrouchingOnly": false,
"shinyRate": 8192.0,
"shinyNoticeParticlesDistance": 24.0,
"captureCalculator": "cobblemon",
"playerDamagePokemon": true,
"appleLeftoversChance": 0.025,
"maxRootsInArea": 9,
"bigRootPropagationChance": 0.5,
"energyRootChance": 0.25,
"maxDynamaxLevel": 10,
"teraTypeRate": 20.0,
"defaultPasturedPokemonLimit": 16,
"pastureBlockUpdateTicks": 40,
"pastureMaxWanderDistance": 64,
"pastureMaxPerChunk": 4.0,
"maxInsertedFossilItems": 2,
"walkingInBattleAnimations": false,
"battleWildMaxDistance": 12.0,
"tradeMaxDistance": 12.0,
"battlePvPMaxDistance": 32.0,
"battleSpectateMaxDistance": 64.0,
"maxPokedexScanningDetectionRange": 10.0,
"hideUnimplementedPokemonInThePokedex": false,
"summaryPokemonFollowCursor": true,
"partyPortraitAnimations": "NEVER_ANIMATE",
"pcProfileAnimations": "ANIMATE_SELECTED",
"summaryProfileAnimations": "ANIMATE_SELECTED",
"animateBattleTiles": false,
"thirdPersonViewBobbing": true,
"invertRoll": false,
"invertPitch": false,
"invertYaw": false,
"xAxisSensitivity": 1.0,
"yAxisSensitivity": 1.0,
"swapXAndYAxes": false,
"rightingDelay": -1.0,
"disableRoll": false,
"displayControlSeconds": 0,
"infiniteRideStamina": false,
"rememberRidingCamera": false,
"enableDebugKeys": false,
"despawnerNearDistance": 32.0,
"despawnerFarDistance": 96.0,
"despawnerMinAgeTicks": 600,
"despawnerMaxAgeTicks": 3600
}

View file

@ -0,0 +1,22 @@
[client]
# Add mod ids here of mods that you wish to disable Crafting Tweaks support for.
disabledAddons = [ ]
# We both know JEI is much better. This option hides Vanilla's crafting book button instead of moving it.
hideVanillaCraftingGuide = false
# Set to 'DEFAULT' to enable both buttons and hotkeys. Set to 'BUTTONS' to enable buttons only. Set to 'HOTKEYS' to enable hotkeys only. Set to 'DISABLED' to disable completely.
mode = "DEFAULT"
# If set to true, right-clicking the result slot in a crafting table will craft a full stack.
rightClickCraftsStack = true
[common]
# A list of modid:name entries that will not be crafted by the compress key.
compressDenylist = [ "minecraft:sandstone", "minecraft:iron_trapdoor" ]
# Set this to false if you want the (de)compress feature to work outside of crafting GUIs (only works if installed on server while in the player inventory)
compressRequiresCraftingGrid = true

View file

@ -0,0 +1,10 @@
[common]
compressAnywhere = false
compressBlacklist = ["minecraft:sandstone", "minecraft:iron_trapdoor"]
[client]
hideButtons = false
rightClickCraftsStack = true
hideButtonTooltips = false
hideVanillaCraftingGuide = false
craftingTweaksMode = "DEFAULT"
disabledAddons = []

434
config/craftpresence.json Normal file
View file

@ -0,0 +1,434 @@
{
"_schemaVersion": 7,
"_lastMCVersionId": 767,
"generalSettings": {
"detectATLauncherInstance": true,
"detectCurseManifest": false,
"detectMultiMCManifest": false,
"detectMCUpdaterInstance": false,
"detectTechnicPack": false,
"detectModrinthPack": true,
"detectBiomeData": true,
"detectDimensionData": true,
"detectWorldData": true,
"clientId": "1042681781775769610",
"defaultIcon": "grass",
"enableJoinRequests": false,
"preferredClientLevel": 3,
"resetTimeOnInit": false,
"autoRegister": false
},
"biomeSettings": {
"fallbackBiomeIcon": "unknown",
"biomeData": {
"default": {
"textOverride": "Exploring the {biome.name}",
"data": {
"enabled": true,
"useAsMain": false,
"isInstance": false,
"activityType": 0,
"partyPrivacy": 1,
"details": "",
"gameState": "",
"largeImageKey": "",
"largeImageText": "",
"smallImageKey": "",
"smallImageText": "",
"startTimestamp": "",
"endTimestamp": "",
"buttons": {}
}
}
}
},
"dimensionSettings": {
"fallbackDimensionIcon": "unknown",
"dimensionData": {
"default": {
"textOverride": "In the {dimension.name}",
"data": {
"enabled": true,
"useAsMain": false,
"isInstance": false,
"activityType": 0,
"partyPrivacy": 1,
"details": "",
"gameState": "",
"largeImageKey": "",
"largeImageText": "",
"smallImageKey": "",
"smallImageText": "",
"startTimestamp": "",
"endTimestamp": "",
"buttons": {}
}
},
"the_nether": {
"data": {
"enabled": false,
"useAsMain": true,
"isInstance": false,
"activityType": 0,
"partyPrivacy": 1,
"details": "{player.name} is in The Nether",
"gameState": "",
"largeImageKey": "nether",
"largeImageText": "In the Nether",
"smallImageKey": "mclogo",
"smallImageText": "{general.mods} mods installed",
"startTimestamp": "",
"endTimestamp": "",
"buttons": {}
}
},
"overworld": {
"data": {
"enabled": false,
"useAsMain": true,
"isInstance": false,
"activityType": 0,
"partyPrivacy": 1,
"details": "{player.name} is in The Overworld",
"gameState": "",
"largeImageKey": "overworld",
"largeImageText": "In the Overworld",
"smallImageKey": "mclogo",
"smallImageText": "{general.mods} mods installed",
"startTimestamp": "",
"endTimestamp": "",
"buttons": {}
}
},
"the_end": {
"data": {
"enabled": false,
"useAsMain": true,
"isInstance": false,
"activityType": 0,
"partyPrivacy": 1,
"details": "{player.name} is in The End",
"gameState": "",
"largeImageKey": "end",
"largeImageText": "In the End",
"smallImageKey": "mclogo",
"smallImageText": "{general.mods} mods installed",
"startTimestamp": "",
"endTimestamp": "",
"buttons": {}
}
}
}
},
"serverSettings": {
"fallbackServerIcon": "default",
"fallbackServerName": "Minecraft Server",
"fallbackServerMotd": "A Minecraft Server",
"serverData": {
"default": {
"textOverride": "{server.message}",
"data": {
"enabled": true,
"useAsMain": true,
"isInstance": false,
"activityType": 0,
"partyPrivacy": 1,
"details": "Playing on {server.name} with {server.players.current} players",
"gameState": "Playing Online",
"largeImageKey": "{server.icon}",
"largeImageText": "Cobblemon Fabric {general.version}",
"smallImageKey": "mclogo",
"smallImageText": "{general.mods} mods installed",
"startTimestamp": "",
"endTimestamp": "",
"buttons": {}
}
}
},
"pingRateInterval": 5,
"pingRateUnit": "minutes"
},
"statusMessages": {
"mainMenuData": {
"textOverride": "In the Main Menu",
"data": {
"enabled": true,
"useAsMain": true,
"isInstance": false,
"activityType": 0,
"partyPrivacy": 1,
"details": "{player.name} is deciding a game mode",
"gameState": "In the Main Menu",
"largeImageKey": "cobblemon_icon",
"largeImageText": "Cobblemon Fabric {general.version}",
"smallImageKey": "mclogo",
"smallImageText": "{general.mods} mods installed",
"startTimestamp": "",
"endTimestamp": "",
"buttons": {}
}
},
"loadingData": {
"textOverride": "Loading...",
"data": {
"enabled": true,
"useAsMain": true,
"isInstance": false,
"activityType": 0,
"partyPrivacy": 1,
"details": "Cobblemon is loading",
"gameState": "Game Starting...",
"largeImageKey": "cobblemon_icon",
"largeImageText": "Cobblemon Fabric {general.version}",
"smallImageKey": "mclogo",
"smallImageText": "{general.mods} mods installed",
"startTimestamp": "",
"endTimestamp": "",
"buttons": {}
}
},
"lanData": {
"textOverride": "Playing on a LAN Server",
"data": {
"enabled": true,
"useAsMain": false,
"isInstance": false,
"activityType": 0,
"partyPrivacy": 1,
"details": "",
"gameState": "",
"largeImageKey": "",
"largeImageText": "",
"smallImageKey": "",
"smallImageText": "",
"startTimestamp": "",
"endTimestamp": "",
"buttons": {}
}
},
"singleplayerData": {
"textOverride": "Playing Singleplayer",
"data": {
"enabled": true,
"useAsMain": true,
"isInstance": false,
"activityType": 0,
"partyPrivacy": 1,
"details": "{player.name} is on a Pokémon journey",
"gameState": "Playing Solo",
"largeImageKey": "cobblemon_icon",
"largeImageText": "Cobblemon Fabric {general.version}",
"smallImageKey": "mclogo",
"smallImageText": "{general.mods} mods installed",
"startTimestamp": "",
"endTimestamp": "",
"buttons": {}
}
},
"realmData": {
"textOverride": "Playing on {server.motd.raw}"
}
},
"advancedSettings": {
"enablePerGui": true,
"enablePerItem": false,
"enablePerEntity": false,
"formatWords": true,
"debugMode": false,
"verboseMode": false,
"refreshRate": 2,
"allowPlaceholderPreviews": false,
"guiSettings": {
"fallbackGuiIcon": "unknown",
"guiData": {
"default": {
"textOverride": "In {screen.name}",
"data": {
"enabled": true,
"useAsMain": false,
"isInstance": false,
"activityType": 0,
"partyPrivacy": 1,
"details": "",
"gameState": "",
"largeImageKey": "",
"largeImageText": "",
"smallImageKey": "",
"smallImageText": "",
"startTimestamp": "",
"endTimestamp": "",
"buttons": {}
}
},
"class_4905": {
"data": {
"enabled": true,
"useAsMain": true,
"isInstance": false,
"activityType": 0,
"partyPrivacy": 1,
"details": "{player.name} is looking for a Realm",
"gameState": "Browsing Realms",
"largeImageKey": "cobblemon_icon",
"largeImageText": "Cobblemon Fabric {general.version}",
"smallImageKey": "mclogo",
"smallImageText": "{general.mods} mods installed",
"startTimestamp": "",
"endTimestamp": "",
"buttons": {}
}
},
"class_500": {
"data": {
"enabled": true,
"useAsMain": true,
"isInstance": false,
"activityType": 0,
"partyPrivacy": 1,
"details": "{player.name} is browsing servers",
"gameState": "Searching for Other Trainers",
"largeImageKey": "cobblemon_icon",
"largeImageText": "Cobblemon Fabric {general.version}",
"smallImageKey": "mclogo",
"smallImageText": "{general.mods} mods installed",
"startTimestamp": "",
"endTimestamp": "",
"buttons": {}
}
},
"class_434": {
"data": {
"enabled": true,
"useAsMain": true,
"isInstance": false,
"activityType": 0,
"partyPrivacy": 1,
"details": "{player.name} is joining a game",
"gameState": "Joining Game...",
"largeImageKey": "cobblemon_icon",
"largeImageText": "Cobblemon Fabric {general.version}",
"smallImageKey": "mclogo",
"smallImageText": "{general.mods} mods installed",
"startTimestamp": "",
"endTimestamp": "",
"buttons": {}
}
},
"class_3928": {
"data": {
"enabled": true,
"useAsMain": true,
"isInstance": false,
"activityType": 0,
"partyPrivacy": 1,
"details": "{player.name} is joining a game",
"gameState": "Joining Game...",
"largeImageKey": "cobblemon_icon",
"largeImageText": "Cobblemon Fabric {general.version}",
"smallImageKey": "mclogo",
"smallImageText": "{general.mods} mods installed",
"startTimestamp": "",
"endTimestamp": "",
"buttons": {}
}
}
}
},
"itemMessages": {
"default": "Holding {item.message.holding}"
},
"entitySettings": {
"fallbackEntityIcon": "unknown",
"targetData": {
"default": {
"textOverride": "Targeting {entity.target.name}",
"data": {
"enabled": true,
"useAsMain": false,
"isInstance": false,
"activityType": 0,
"partyPrivacy": 1,
"details": "",
"gameState": "",
"largeImageKey": "",
"largeImageText": "",
"smallImageKey": "",
"smallImageText": "",
"startTimestamp": "",
"endTimestamp": "",
"buttons": {}
}
}
},
"ridingData": {
"default": {
"textOverride": "Riding {entity.riding.name}",
"data": {
"enabled": true,
"useAsMain": false,
"isInstance": false,
"activityType": 0,
"partyPrivacy": 1,
"details": "",
"gameState": "",
"largeImageKey": "",
"largeImageText": "",
"smallImageKey": "",
"smallImageText": "",
"startTimestamp": "",
"endTimestamp": "",
"buttons": {}
}
}
}
},
"allowEndpointIcons": true,
"serverIconEndpoint": "https://api.mcsrvstat.us/icon/%1$s",
"playerSkinEndpoint": "https://crafatar.com/avatars/%1$s",
"allowDuplicatePackets": false,
"maxConnectionAttempts": 10,
"enableClassGraph": false
},
"accessibilitySettings": {
"languageId": "en_us",
"stripTranslationColors": false,
"stripTranslationFormatting": false,
"stripExtraGuiElements": false,
"configKeyCode": -1
},
"displaySettings": {
"presenceData": {
"enabled": true,
"useAsMain": true,
"isInstance": false,
"activityType": 0,
"partyPrivacy": 1,
"details": "Playing Cobblemon",
"gameState": "",
"largeImageKey": "cobblemon_icon",
"largeImageText": "Cobblemon Fabric {general.version}",
"smallImageKey": "mclogo",
"smallImageText": "{general.mods} mods installed",
"startTimestamp": "{data.general.time}",
"endTimestamp": "",
"buttons": {}
},
"dynamicIcons": {
"73.24.74.7": "https://api.mcsrvstat.us/icon/73.24.74.7",
"Veraxiel": "https://crafatar.com/avatars/1db4f9a387894c739a6c179f8ecf91f1",
"localhost": "https://api.mcsrvstat.us/icon/localhost",
"play.thewizard.link": "https://api.mcsrvstat.us/icon/play.thewizard.link"
},
"dynamicVariables": {
"mods": "{general.mods} Mod(s)",
"player_info_coordinate": "At {player.position.x}, {player.position.z}",
"players": "{server.players.current} / {server.players.max} Players",
"player_info_in": "({custom.player_info.health})",
"player_info_items": "Items: {item.main_hand.message}",
"player_info_out": "As {player.name}",
"player_info_health": "Health: {player.health.current}/{player.health.max}",
"world_info": "On {world.name}",
"pack": "{pack.name}"
}
}
}

View file

@ -0,0 +1,133 @@
{
"dynamicCrosshair": false,
"disableDebugCrosshair": false,
"thirdPersonCrosshair": false,
"hideWithScreen": true,
"hideWithMap": true,
"fixCenteredCrosshair": false,
"crosshairConfig": {
"onBlock": true,
"onInteractableBlock": true,
"onEntity": true,
"holdingTool": "Always",
"displayCorrectTool": true,
"holdingMeleeWeapon": true,
"meleeWeaponOnEntity": false,
"meleeWeaponOnBreakableBlock": false,
"holdingRangedWeapon": "IfInteractable",
"holdingThrowable": "IfInteractable",
"holdingShield": true,
"holdingBlock": "IfInteractable",
"holdingBlockInOffhand": true,
"holdingUsableItem": "IfInteractable",
"forceHoldingSpyglass": false
},
"color": {
"overrideColor": false,
"customColor": -5588020,
"enableBlend": true
},
"dynamicCrosshairStyle": true,
"crosshairStyle": {
"regular": {
"style": "dynamiccrosshair:crosshair/cross-open",
"overrideColor": false,
"customColor": -5588020,
"enableBlend": true,
"coalesce": true
},
"onBlock": {
"style": "dynamiccrosshair:crosshair/cross-open",
"overrideColor": false,
"customColor": -5588020,
"enableBlend": true,
"coalesce": true
},
"onEntity": {
"style": "dynamiccrosshair:crosshair/cross-open-diagonal",
"overrideColor": false,
"customColor": -5588020,
"enableBlend": true,
"coalesce": true
},
"holdingTool": {
"style": "dynamiccrosshair:crosshair/square",
"overrideColor": false,
"customColor": -5588020,
"enableBlend": true,
"coalesce": true
},
"holdingMeleeWeapon": {
"style": "dynamiccrosshair:crosshair/cross-open",
"overrideColor": false,
"customColor": -5588020,
"enableBlend": true,
"coalesce": true
},
"holdingRangedWeapon": {
"style": "dynamiccrosshair:crosshair/cross-open-diagonal",
"overrideColor": false,
"customColor": -5588020,
"enableBlend": true,
"coalesce": true
},
"holdingThrowable": {
"style": "dynamiccrosshair:crosshair/circle",
"overrideColor": false,
"customColor": -5588020,
"enableBlend": true,
"coalesce": true
},
"holdingBlock": {
"style": "dynamiccrosshair:crosshair/diamond-large",
"overrideColor": false,
"customColor": -5588020,
"enableBlend": true,
"coalesce": true
},
"interact": {
"style": "dynamiccrosshair:crosshair/brackets",
"overrideColor": false,
"customColor": -5588020,
"enableBlend": true,
"coalesce": true
},
"useItem": {
"style": "dynamiccrosshair:crosshair/brackets-round",
"overrideColor": false,
"customColor": -5588020,
"enableBlend": true,
"coalesce": true
},
"shield": {
"style": "dynamiccrosshair:crosshair/brackets-bottom",
"overrideColor": false,
"customColor": -5588020,
"enableBlend": true,
"coalesce": true
}
},
"crosshairModifiers": {
"modCorrectTool": {
"style": "dynamiccrosshair:crosshair/dot",
"overrideColor": false,
"customColor": -5588020,
"enableBlend": true,
"coalesce": true
},
"modIncorrectTool": {
"style": "dynamiccrosshair:crosshair/cross-open-diagonal",
"overrideColor": false,
"customColor": -5588020,
"enableBlend": true,
"coalesce": true
}
},
"enableTweaks": false,
"additionalTools": [],
"additionalMeleeWeapons": [],
"additionalRangedWeapons": [],
"additionalThrowables": [],
"additionalUsableItems": [],
"additionalInteractableBlocks": []
}

490
config/emi.css Normal file
View file

@ -0,0 +1,490 @@
/** EMI Config */
#general {
/**
* Whether EMI is enabled and visible.
*/
enabled: true;
/**
* Whether cheating in items is enabled.
*/
cheat-mode: false;
/**
* How much EMI should use tooltips and popups to show controls and information.
*/
help-level: normal;
/**
* Where EMI should pull stacks from to populate the index.
*/
index-source: creative;
/**
* Which sidebar should be searched using the search bar.
*/
search-sidebar: right;
/**
* Whether normal search queries should include the tooltip.
*/
search-tooltip-by-default: true;
/**
* Whether normal search queries should include the mod name.
*/
search-mod-name-by-default: false;
/**
* Whether normal search queries should include the stack's tags.
*/
search-tags-by-default: false;
}
#ui {
/**
* Which action should be performed when clicking the recipe book.
*/
recipe-book-action: toggle-craftables;
/**
* Where to display status effects in the inventory.
*/
effect-location: top;
/**
* Whether to display a gray overlay when hovering over a stack.
*/
show-hover-overlay: true;
/**
* Whether to add mod name to tooltips
*/
append-mod-id: true;
/**
* Whether to add mod name to item tooltips, in case another mod provides behavior
*/
append-item-mod-id: true;
/**
* Prevents recipes being quick crafted from shifting around under the cursor.
*/
miscraft-prevention: true;
/**
* The unit to display fluids as.
*/
fluid-unit: liters;
/**
* Whether to use the batched render system. Batching is faster, but may have
* incompatibilities with shaders or other mods.
*/
use-batched-renderer: true;
/**
* Whether to have the search bar in the center of the screen, instead of to the
* side.
*/
center-search-bar: false;
/**
* Which sidebar type to switch to when searching.
*/
search-sidebar-focus: index;
/**
* Which sidebar type to focus when the search is empty.
*/
empty-search-sidebar-focus: none;
/**
* Whether the EMI config button should be visible.
*/
emi-config-button-visibility: shown;
/**
* Whether the recipe tree button should be visible.
*/
recipe-tree-button-visibility: auto;
/**
* The maximum height the recipe screen will grow to be if space is available in
* pixels.
*/
maximum-recipe-screen-height: 256;
/**
* The minimum width of the recipe screen in pixels. Controls how many tabs there
* can be, and where the page switching buttons go. The default is 176, the width
* of most screens.
*/
minimum-recipe-screen-width: 176;
/**
* The amount of vertical margin to give in the recipe screen.
*/
vertical-margin: 20;
/**
* Where to show workstations in the recipe screen
*/
workstation-location: bottom;
/**
* Display cost per batch when hovering a recipe output
*/
show-cost-per-batch: true;
/**
* Whether recipes should have a button to set as default.
*/
recipe-default-button: true;
/**
* Whether recipes should have a button to show the recipe tree.
*/
recipe-tree-button: true;
/**
* Whether recipes should have a button to fill the ingredients in a handler.
*/
recipe-fill-button: true;
/**
* Whether recipes should have a button to take a screenshot of the recipe.
*/
recipe-screenshot-button: false;
/**
* The GUI scale at which recipe screenshots are saved. Use 0 to use the current
* GUI scale.
*/
recipe-screenshot-scale: 0;
/**
* The pages in the left sidebar
*/
left-sidebar-pages: favorites;
/**
* The subpanels in the left sidebar
*/
left-sidebar-subpanels: none;
/**
* How many columns and rows of ingredients to limit the left sidebar to
*/
left-sidebar-size: 5, 100;
/**
* How much space to maintain between the left sidebar and obstructions, in pixels
*/
left-sidebar-margins: 2, 2, 2, 2;
/**
* Where to position the left sidebar
*/
left-sidebar-align: left, top;
/**
* Whether to render the header buttons and page count for the left sidebar
*/
left-sidebar-header: visible;
/**
* Which theme to use for the left sidebar
*/
left-sidebar-theme: transparent;
/**
* The pages in the right sidebar
*/
right-sidebar-pages: index, craftables;
/**
* The subpanels in the right sidebar
*/
right-sidebar-subpanels: none;
/**
* How many columns and rows of ingredients to limit the right sidebar to
*/
right-sidebar-size: 5, 100;
/**
* How much space to maintain between the right sidebar and obstructions, in pixels
*/
right-sidebar-margins: 2, 2, 2, 2;
/**
* Where to position the right sidebar
*/
right-sidebar-align: right, top;
/**
* Whether to render the header buttons and page count for the right sidebar
*/
right-sidebar-header: visible;
/**
* Which theme to use for the right sidebar
*/
right-sidebar-theme: transparent;
/**
* The pages in the top sidebar
*/
top-sidebar-pages: none;
/**
* The subpanels in the top sidebar
*/
top-sidebar-subpanels: none;
/**
* How many columns and rows of ingredients to limit the top sidebar to
*/
top-sidebar-size: 9, 9;
/**
* How much space to maintain between the top sidebar and obstructions, in pixels
*/
top-sidebar-margins: 2, 2, 2, 2;
/**
* Where to position the top sidebar
*/
top-sidebar-align: center, center;
/**
* Whether to render the header buttons and page count for the top sidebar
*/
top-sidebar-header: visible;
/**
* Which theme to use for the top sidebar
*/
top-sidebar-theme: transparent;
/**
* The pages in the bottom sidebar
*/
bottom-sidebar-pages: none;
/**
* The subpanels in the bottom sidebar
*/
bottom-sidebar-subpanels: none;
/**
* How many columns and rows of ingredients to limit the bottom sidebar to
*/
bottom-sidebar-size: 9, 9;
/**
* How much space to maintain between the bottom sidebar and obstructions, in
* pixels
*/
bottom-sidebar-margins: 2, 2, 2, 2;
/**
* Where to position the bottom sidebar
*/
bottom-sidebar-align: center, center;
/**
* Whether to render the header buttons and page count for the bottom sidebar
*/
bottom-sidebar-header: visible;
/**
* Which theme to use for the bottom sidebar
*/
bottom-sidebar-theme: transparent;
}
#binds {
/**
* Toggle the visibility of EMI.
*/
toggle-visibility: "ctrl key.keyboard.o";
/**
* Focuses the search bar.
*/
focus-search: "ctrl key.keyboard.f";
/**
* Clears the search bar.
*/
clear-search: "key.keyboard.unknown";
/**
* Display the recipes for creating a stack.
*/
view-recipes: "key.keyboard.r";
view-recipes: "key.mouse.left";
/**
* Display the recipes that can be created using a stack.
*/
view-uses: "key.keyboard.u";
view-uses: "key.mouse.right";
/**
* Favorite the item to display on the side of the screen opposite of recipies for
* quick access.
*/
favorite: "key.keyboard.a";
/**
* Set the default recipe for a given stack in the output of a recipe to that
* recipe.
*/
default-stack: "ctrl key.mouse.left";
/**
* Display the recipe tree for a given stack.
*/
view-stack-tree: "key.keyboard.unknown";
/**
* Display the recipe tree.
*/
view-tree: "key.keyboard.unknown";
/**
* Return to the previous page in EMI.
*/
back: "key.keyboard.backspace";
/**
* Return to the next page in EMI after going back.
*/
forward: "key.keyboard.unknown";
/**
* When on a stack with an associated recipe:
* Move ingredients for a single result.
*/
craft-one: "key.mouse.left";
/**
* When on a stack with an associated recipe:
* Move ingredients for as many results as possible.
*/
craft-all: "shift key.mouse.left";
/**
* When on a stack with an associated recipe:
* Move ingredients for a single result and put in inventory if possible.
*/
craft-one-to-inventory: "key.keyboard.unknown";
/**
* When on a stack with an associated recipe:
* Move ingredients for as many results as possible and put in inventory if
* possible.
*/
craft-all-to-inventory: "key.keyboard.unknown";
/**
* When on a stack with an associated recipe:
* Move ingredients for a single result and put in cursor if possible.
*/
craft-one-to-cursor: "ctrl key.mouse.left";
/**
* Display the recipe that will be used to craft on a stack with no recipe context.
*/
show-craft: "key.keyboard.left.shift";
/**
* Cheat in one of an item into the inventory.
*/
cheat-one-to-inventory: "ctrl key.mouse.right";
/**
* Cheat in a stack of an item into the inventory.
*/
cheat-stack-to-inventory: "ctrl key.mouse.left";
/**
* Cheat in one of an item into the cursor.
*/
cheat-one-to-cursor: "ctrl key.mouse.middle";
/**
* Cheat in a stack of an item into the cursor.
*/
cheat-stack-to-cursor: "key.keyboard.unknown";
/**
* Delete the stack in the cursor when hovering the index
*/
delete-cursor-stack: "key.mouse.left";
/**
* Copies the hovered recipe's ID to the clipboard
*/
copy-recipe-id: "key.keyboard.unknown";
/**
* In edit mode, hide the hovered stack
*/
hide-stack: "ctrl key.mouse.left";
/**
* In edit mode, hide stacks with the hovered stack's id
*/
hide-stack-by-id: "ctrl shift key.mouse.left";
}
#dev {
/**
* Whether development functions should be enabled. Not recommended for general
* play.
*/
dev-mode: false;
/**
* Whether editing the index is enabled
*/
edit-mode: false;
/**
* Whether to log untranslated tags as warnings.
*/
log-untranslated-tags: false;
/**
* Whether to log ingredients that don't have a representative tag as warnings.
*/
log-non-tag-ingredients: false;
/**
* Whether hovering the output of a recipe should show the recipe's EMI ID.
*/
show-recipe-ids: false;
/**
* Whether to display additional widgets added to recipes from other mods.
* These are typically developer facing and compatibility related, and not useful
* for players.
*/
show-recipe-decorators: false;
/**
* Whether stacks in the index should display a highlight if they have a recipe
* default.
*/
highlight-defaulted: false;
/**
* Whether to display exclusion areas
*/
highlight-exclusion-areas: false;
}

View file

@ -0,0 +1,3 @@
{
"add_biomes_to_index": true
}

70
config/enchdesc.json Normal file
View file

@ -0,0 +1,70 @@
{
"enabled": {
"//": "Determines if the mod and its features are enabled.",
"//default": true,
"value": true
},
"only_on_books": {
"//": [
"When enabled, descriptions will only be displayed when looking at an enchanted ",
"book. "
],
"//default": false,
"value": false
},
"only_in_enchanting_table": {
"//": [
"When enabled, descriptions will only be displayed when inside the enchanting ",
"table GUI. "
],
"//default": false,
"value": false
},
"require_keybind": {
"//": [
"When enabled, descriptions will only be displayed when the user holds the shift ",
"key. "
],
"//default": false,
"value": false
},
"activate_text": {
"//": [
"This text will be displayed when the require_keybind option is enabled and the ",
"user has not held the keybind. "
],
"//default": {
"translate": "enchdesc.activate.message",
"color": "dark_gray"
},
"value": {
"translate": "enchdesc.activate.message",
"color": "dark_gray"
}
},
"prefix": {
"//": [
"Text that will be added to the start of each description. This can be used to ",
"add indents and other decorators. "
],
"//default": "",
"value": ""
},
"suffix": {
"//": "Text that will be added to the end of each description.",
"//default": "",
"value": ""
},
"style": {
"//": [
"The style of the description text. This controls the color, format, font, and ",
"other visual properties of the description. "
],
"//default": {
"color": "dark_gray"
},
"value": {
"color": "dark_gray"
}
}
}

View file

@ -0,0 +1,9 @@
{
"weaponCoolDownImportance": "MIDDLE",
"showBlockBreaking": true,
"showRangeWeaponDraw": true,
"showItemCooldowns": true,
"showFoodAndPotions": true,
"disablePickaxesAndShovels": true,
"disableAxes": false
}

View file

@ -0,0 +1,28 @@
{
"logModelCreationData": false,
"debugOnRightClick": false,
"renderModeChoice": "NORMAL",
"vanillaModelHologramRenderMode_2": "OFF",
"modelExportMode": "NONE",
"modelUpdateFrequency": "Average",
"entityRenderModeOverrides": {},
"entityVanillaHologramOverrides": {},
"modelsNamesDisabled": [],
"allowEBEModConfigModify": true,
"animationLODDistance": 20,
"retainDetailOnLowFps": true,
"retainDetailOnLargerMobs": true,
"animationFrameSkipDuringIrisShadowPass": true,
"preventFirstPersonHandAnimating": false,
"onlyClientPlayerModel": false,
"doubleChestAnimFix": true,
"enforceOptifineVariationRequiresDefaultModel": false,
"enforceOptifineVariationRequiresDefaultModel_v2": false,
"resetPlayerModelEachRender": true,
"resetPlayerModelEachRender_v2": true,
"onlyDebugRenderOnHover": false,
"enforceOptifineSubFoldersVariantOnly": true,
"enforceOptiFineAnimSyntaxLimits": true,
"allowOptifineFallbackProperties": true,
"showReloadErrorToast": true
}

View file

@ -0,0 +1,40 @@
{
"optifine_limitRandomVariantGapsBy10": true,
"optifine_allowWeirdSkipsInTrueRandom": true,
"optifine_preventBaseTextureInOptifineDirectory": true,
"illegalPathSupportMode": "None",
"enableCustomTextures": true,
"enableCustomBlockEntities": true,
"textureUpdateFrequency_V2": "Fast",
"enableEmissiveTextures": true,
"enableEnchantedTextures": true,
"enableEmissiveBlockEntities": true,
"emissiveRenderMode": "DULL",
"alwaysCheckVanillaEmissiveSuffix": true,
"enableArmorAndTrims": true,
"skinFeaturesEnabled": true,
"skinTransparencyMode": "ETF_SKINS_ONLY",
"skinTransparencyInExtraPixels": true,
"skinFeaturesEnableTransparency": true,
"skinFeaturesEnableFullTransparency": false,
"tryETFTransparencyForAllSkins": false,
"enableEnemyTeamPlayersSkinFeatures": true,
"enableBlinking": true,
"blinkFrequency": 150,
"blinkLength": 1,
"advanced_IncreaseCacheSizeModifier": 1.0,
"debugLoggingMode": "None",
"logTextureDataInitialization": false,
"hideConfigButton": false,
"configButtonLoc": "BOTTOM_RIGHT",
"disableVanillaDirectoryVariantTextures": false,
"use3DSkinLayerPatch": true,
"enableFullBodyWardenTextures": true,
"entityEmissiveOverrides": {},
"propertiesDisabled": [],
"propertyInvertUpdatingOverrides": [],
"entityRandomOverrides": {},
"entityEmissiveBrightOverrides": {},
"entityRenderLayerOverrides": {},
"entityLightOverrides": {}
}

51
config/entityculling.json Normal file
View file

@ -0,0 +1,51 @@
{
"configVersion": 7,
"renderNametagsThroughWalls": true,
"blockEntityWhitelist": [
"create:rope_pulley",
"minecraft:beacon",
"create:hose_pulley",
"betterend:eternal_pedestal",
"cobblemon:healer",
"cobblemon:pc"
],
"entityWhitelist": [
"botania:mana_burst"
],
"tracingDistance": 128,
"debugMode": false,
"sleepDelay": 10,
"hitboxLimit": 50,
"skipMarkerArmorStands": true,
"tickCulling": true,
"tickCullingWhitelist": [
"minecraft:boat",
"minecraft:firework_rocket",
"mts:builder_existing",
"mts:builder_rendering",
"mts:builder_seat",
"minecraft:acacia_boat",
"minecraft:acacia_chest_boat",
"minecraft:birch_boat",
"minecraft:birch_chest_boat",
"minecraft:cherry_boat",
"minecraft:cherry_chest_boat",
"minecraft:dark_oak_boat",
"minecraft:dark_oak_chest_boat",
"minecraft:jungle_boat",
"minecraft:jungle_chest_boat",
"minecraft:mangrove_boat",
"minecraft:mangrove_chest_boat",
"minecraft:oak_boat",
"minecraft:oak_chest_boat",
"minecraft:pale_oak_boat",
"minecraft:pale_oak_chest_boat",
"minecraft:spruce_boat",
"minecraft:spruce_chest_boat",
"minecraft:bamboo_raft",
"minecraft:bamboo_chest_raft"
],
"disableF3": false,
"skipEntityCulling": false,
"skipBlockEntityCulling": false
}

3
config/etf_warnings.json Normal file
View file

@ -0,0 +1,3 @@
{
"ignoredConfigIds": []
}

View file

@ -0,0 +1,9 @@
#Indigo properties file
#Mon Dec 01 20:10:25 BRT 2025
always-tesselate-blocks=auto
ambient-occlusion-mode=hybrid
debug-compare-lighting=auto
fix-exterior-vertex-lighting=auto
fix-luminous-block-ambient-occlusion=auto
fix-mean-light-calculation=auto
fix-smooth-lighting-offset=auto

403
config/fallingleaves.json Normal file
View file

@ -0,0 +1,403 @@
{
"version": 1,
"displayDebugData": false,
"enabled": true,
"leafSize": 5,
"leafLifespan": 100,
"leafSpawnRate": 3,
"coniferLeafSpawnRate": 1,
"cherrySpawnRate": 10,
"snowflakeSpawnRate": 2,
"dropFromPlayerPlacedBlocks": true,
"leavesOnBlockHit": true,
"minimumFreeSpaceBelow": 1,
"windEnabled": false,
"windlessDimensions": [
"minecraft:the_end",
"minecraft:the_nether"
],
"leafSettings": {
"minecraft:jungle_leaves": {
"spawnRateFactor": 0.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"minecraft:flowering_azalea_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"minecraft:mangrove_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"cobblemon:apricorn_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"minecraft:azalea_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"minecraft:birch_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"minecraft:acacia_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"minecraft:oak_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"minecraft:dark_oak_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"minecraft:spruce_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": true,
"spawnBreakingLeaves": false
},
"byg:mahogany_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:flowering_jacaranda_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:red_oak_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:blooming_witch_hazel_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:redwood_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": true,
"spawnBreakingLeaves": false
},
"byg:pink_cherry_leaves": {
"spawnRateFactor": 1.4,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:green_apple_skyris_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:white_cherry_leaves": {
"spawnRateFactor": 1.4,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:rainbow_eucalyptus_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:ebony_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:witch_hazel_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:fir_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": true,
"spawnBreakingLeaves": false
},
"byg:palm_leaves": {
"spawnRateFactor": 0.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:lament_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:maple_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:withering_oak_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:brown_oak_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:orchard_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:brown_zelkova_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:cika_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:orange_spruce_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": true,
"spawnBreakingLeaves": false
},
"byg:yellow_birch_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:joshua_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:holly_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:jacaranda_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:red_spruce_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": true,
"spawnBreakingLeaves": false
},
"byg:orange_oak_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:nightshade_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:brown_birch_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:pine_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": true,
"spawnBreakingLeaves": false
},
"byg:silver_maple_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:flowering_palo_verde_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:green_enchanted_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:blue_enchanted_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:aspen_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:indigo_jacaranda_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:zelkova_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:ripe_orchard_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:red_maple_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:yellow_spruce_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": true,
"spawnBreakingLeaves": false
},
"byg:cypress_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": true,
"spawnBreakingLeaves": false
},
"byg:skyris_leaves": {
"spawnRateFactor": 1.4,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:blue_spruce_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": true,
"spawnBreakingLeaves": false
},
"byg:orange_birch_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:palo_verde_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:willow_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:red_birch_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:flowering_orchard_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:white_mangrove_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:flowering_nightshade_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:holly_berry_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:firecracker_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:flowering_indigo_jacaranda_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:ripe_joshua_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:araucaria_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": true,
"spawnBreakingLeaves": false
},
"byg:ether_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:baobab_leaves": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:imparius_vine": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:shulkren_vine": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:imparius_vine_plant": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:embur_gel_vines_plant": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:poison_ivy": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:skyris_vine": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:shulkren_vine_plant": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
},
"byg:embur_gel_vines": {
"spawnRateFactor": 1.0,
"isConiferBlock": false,
"spawnBreakingLeaves": false
}
},
"leafSpawners": [],
"fallSpawnRateFactor": 1.8,
"winterSpawnRateFactor": 0.1,
"startingSpawnRadius": 0,
"decaySpawnRateFactor": 2.6,
"maxDecayLeaves": 9,
"registerParticles": true
}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 464 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 290 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 290 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 482 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 955 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 934 B

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 422 B

View file

@ -0,0 +1,6 @@
[
{
"element_identifier": "5a6513e5-082f-40e2-a668-b46be0b06b90-1715451758508",
"volume": 1.0
}
]

View file

@ -0,0 +1,5 @@
type = custom_gui_screens
overridden_screens {
}

View file

@ -0,0 +1,17 @@
type = customizablemenus
net.minecraft.class_526 {
}
net.minecraft.class_500 {
}
net.minecraft.class_446 {
}
net.minecraft.class_4749 {
}
net.minecraft.class_442 {
}

View file

@ -0,0 +1,326 @@
type = fancymenu_layout
layout-meta {
identifier = join_multiplayer_screen
render_custom_elements_behind_vanilla = false
last_edited_time = 1715301271457
is_enabled = true
randommode = false
randomgroup = 1
randomonlyfirsttime = false
layout_index = 0
[loading_requirement_container_meta:13149620-17e7-4c42-ad6d-68bddc64f518-1715301243401] = [groups:][instances:]
}
customization {
action = backgroundoptions
keepaspectratio = false
}
scroll_list_customization {
preserve_scroll_list_header_footer_aspect_ratio = true
render_scroll_list_header_shadow = true
render_scroll_list_footer_shadow = true
show_scroll_list_header_footer_preview_in_editor = false
repeat_scroll_list_header_texture = false
repeat_scroll_list_footer_texture = false
}
element {
interactable = true
source = ^^^%n%There are _no_ official Cobblemon servers.%n%You can find listings of public servers on our website or Discord.%n%^^^
source_mode = direct
shadow = true
scale = 0.75
base_color = #FFFF55
text_border = 2
line_spacing = 2
enable_scrolling = false
auto_line_wrapping = true
remove_html_breaks = true
code_block_single_color = #737373FF
code_block_multi_color = #565656FF
headline_line_color = #A9A9A9FF
separation_line_color = #A9A9A9FF
hyperlink_color = #0771FCFF
quote_color = #818181FF
quote_indent = 8.0
quote_italic = false
bullet_list_dot_color = #A9A9A9FF
bullet_list_indent = 8.0
bullet_list_spacing = 3.0
parse_markdown = true
element_type = text_v2
instance_identifier = 9916fd82-64ce-4659-bd0b-6646f5cd438e-1715296886381
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in = false
fade_in_speed = 1.0
anchor_point = top-right
x = -151
y = -1
width = 168
height = 29
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = 89ed849d-74e5-47a2-9191-3a045834749f-1715296886381
[loading_requirement_container_meta:89ed849d-74e5-47a2-9191-3a045834749f-1715296886381] = [groups:][instances:]
}
vanilla_button {
button_element_executable_block_identifier = 797e62ac-aaaf-4ffe-b80f-ca4f21c0def4-1715296750530
[executable_block:797e62ac-aaaf-4ffe-b80f-ca4f21c0def4-1715296750530][type:generic] = [executables:]
restartbackgroundanimations = true
loopbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
element_type = vanilla_button
instance_identifier = 424970
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in = false
fade_in_speed = 1.0
anchor_point = vanilla
x = 164
y = 235
width = 74
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = 16b9907b-fec9-4075-b3b0-c60e0c1d41c0-1715296750530
[loading_requirement_container_meta:16b9907b-fec9-4075-b3b0-c60e0c1d41c0-1715296750530] = [groups:][instances:]
is_hidden = false
automated_button_clicks = 0
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
}
vanilla_button {
button_element_executable_block_identifier = eec149e9-18c2-4b64-8e50-2ccfdd8dbaa9-1715296750530
[executable_block:eec149e9-18c2-4b64-8e50-2ccfdd8dbaa9-1715296750530][type:generic] = [executables:]
restartbackgroundanimations = true
loopbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
element_type = vanilla_button
instance_identifier = 346970
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in = false
fade_in_speed = 1.0
anchor_point = vanilla
x = 86
y = 235
width = 74
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = a9d6e0fd-3219-4eff-9bdd-8dea471c4108-1715296750530
[loading_requirement_container_meta:a9d6e0fd-3219-4eff-9bdd-8dea471c4108-1715296750530] = [groups:][instances:]
is_hidden = false
automated_button_clicks = 0
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
}
vanilla_button {
button_element_executable_block_identifier = 357942e0-4837-4959-ae7b-e715dc0d43ab-1715296750530
[executable_block:357942e0-4837-4959-ae7b-e715dc0d43ab-1715296750530][type:generic] = [executables:]
restartbackgroundanimations = true
loopbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
element_type = vanilla_button
instance_identifier = 580970
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in = false
fade_in_speed = 1.0
anchor_point = vanilla
x = 320
y = 235
width = 74
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = d5268642-4134-40ce-9f3e-48f90fe3411a-1715296750530
[loading_requirement_container_meta:d5268642-4134-40ce-9f3e-48f90fe3411a-1715296750530] = [groups:][instances:]
is_hidden = false
automated_button_clicks = 0
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
}
vanilla_button {
button_element_executable_block_identifier = d20e5f55-8541-402d-8d39-a1ab5c13cf55-1715296750530
[executable_block:d20e5f55-8541-402d-8d39-a1ab5c13cf55-1715296750530][type:generic] = [executables:]
restartbackgroundanimations = true
loopbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
element_type = vanilla_button
instance_identifier = 554946
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in = false
fade_in_speed = 1.0
anchor_point = vanilla
x = 294
y = 211
width = 100
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = 5eb50c00-b659-40ee-9114-b729774f5391-1715296750530
[loading_requirement_container_meta:5eb50c00-b659-40ee-9114-b729774f5391-1715296750530] = [groups:][instances:]
is_hidden = false
automated_button_clicks = 0
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
}
vanilla_button {
button_element_executable_block_identifier = d2d35e8f-1ccf-44b3-b2df-86e3e05e1875-1715296750530
[executable_block:d2d35e8f-1ccf-44b3-b2df-86e3e05e1875-1715296750530][type:generic] = [executables:]
restartbackgroundanimations = true
loopbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
element_type = vanilla_button
instance_identifier = 502970
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in = false
fade_in_speed = 1.0
anchor_point = vanilla
x = 242
y = 235
width = 74
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = 53e3e65d-6244-47e6-9a9d-9e4137e4a90b-1715296750530
[loading_requirement_container_meta:53e3e65d-6244-47e6-9a9d-9e4137e4a90b-1715296750530] = [groups:][instances:]
is_hidden = false
automated_button_clicks = 0
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
}
vanilla_button {
button_element_executable_block_identifier = 135b6834-5123-41aa-828a-9d39d194a34f-1715296750530
[executable_block:135b6834-5123-41aa-828a-9d39d194a34f-1715296750530][type:generic] = [executables:]
restartbackgroundanimations = true
loopbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
element_type = vanilla_button
instance_identifier = 346946
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in = false
fade_in_speed = 1.0
anchor_point = vanilla
x = 86
y = 211
width = 100
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = 728bf912-28b7-4cbc-8289-d46fc814dd34-1715296750530
[loading_requirement_container_meta:728bf912-28b7-4cbc-8289-d46fc814dd34-1715296750530] = [groups:][instances:]
is_hidden = false
automated_button_clicks = 0
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
}
vanilla_button {
button_element_executable_block_identifier = 92c09dac-423c-451f-9e85-df6f6905be8e-1715296750530
[executable_block:92c09dac-423c-451f-9e85-df6f6905be8e-1715296750530][type:generic] = [executables:]
restartbackgroundanimations = true
loopbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
element_type = vanilla_button
instance_identifier = 450946
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in = false
fade_in_speed = 1.0
anchor_point = vanilla
x = 190
y = 211
width = 100
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = 52cba5da-8ce6-461d-879b-a6db6123c014-1715296750530
[loading_requirement_container_meta:52cba5da-8ce6-461d-879b-a6db6123c014-1715296750530] = [groups:][instances:]
is_hidden = false
automated_button_clicks = 0
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
}
vanilla_button {
button_element_executable_block_identifier = a2ed838d-c19d-4ae3-b800-b1e109df0824-1715296750530
[executable_block:a2ed838d-c19d-4ae3-b800-b1e109df0824-1715296750530][type:generic] = [executables:]
restartbackgroundanimations = true
loopbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
element_type = vanilla_button
instance_identifier = 66
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in = false
fade_in_speed = 1.0
anchor_point = vanilla
x = 6
y = 6
width = 20
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = 9938acd8-71ab-49d6-9ba1-b96e2c73a830-1715296750530
[loading_requirement_container_meta:9938acd8-71ab-49d6-9ba1-b96e2c73a830-1715296750530] = [groups:][instances:]
is_hidden = false
automated_button_clicks = 0
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
}

View file

@ -0,0 +1,73 @@
type = fancymenu_layout
layout-meta {
identifier = %fancymenu:universal_layout%
render_custom_elements_behind_vanilla = false
last_edited_time = 1763608179087
is_enabled = true
randommode = false
randomgroup = 1
randomonlyfirsttime = false
layout_index = 0
[loading_requirement_container_meta:61dbd2a2-590a-47b9-84b3-9af09d66d8d9-1763608110605] = [groups:][instances:]
}
customization {
action = backgroundoptions
keepaspectratio = false
}
scroll_list_customization {
preserve_scroll_list_header_footer_aspect_ratio = true
render_scroll_list_header_shadow = true
render_scroll_list_footer_shadow = true
show_scroll_list_header_footer_preview_in_editor = false
repeat_scroll_list_header_texture = false
repeat_scroll_list_footer_texture = false
show_screen_background_overlay_on_custom_background = false
apply_vanilla_background_blur = false
}
layout_action_executable_blocks {
}
element {
audio_instance_0 = [source:local]/config/fancymenu/assets/cm_audio/north_province.ogg
audio_instance_weight_0 = 1.0
play_mode = normal
looping = true
volume = 1.0
sound_source = music
element_type = audio_v2
instance_identifier = 5a6513e5-082f-40e2-a668-b46be0b06b90-1715451758508
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in_v2 = no_fading
fade_in_speed = 1.0
fade_out = no_fading
fade_out_speed = 1.0
base_opacity = 1.0
auto_sizing = false
auto_sizing_base_screen_width = 1920
auto_sizing_base_screen_height = 1080
sticky_anchor = false
anchor_point = mid-centered
x = -50
y = -48
width = 100
height = 100
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = 48c25128-a88a-4949-a26a-a69e79008863-1715451758508
[loading_requirement_container_meta:48c25128-a88a-4949-a26a-a69e79008863-1715451758508] = [groups:][instances:]
enable_parallax = false
parallax_intensity_v2 = 0.5
invert_parallax = false
animated_offset_x = 0
animated_offset_y = 0
load_once_per_session = false
in_editor_color = #5CA6EFFF
layer_hidden_in_editor = false
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,12 @@
type = layout_editor_widget_settings
settings {
offset_x = -1829.0
offset_y = 530.0
inner_width = 200.0
inner_height = 265.0
snapping_side = top-right
expanded = true
visible = false
}

View file

@ -0,0 +1,3 @@
##[legacy]
B:custom_guis_ported = 'true';

View file

@ -0,0 +1,95 @@
##[general]
B:force_fullscreen = 'false';
I:default_gui_scale = '-1';
B:play_vanilla_menu_music = 'false';
##[customization]
B:modpack_mode = 'true';
B:show_customization_overlay = 'false';
B:advanced_customization_mode = 'true';
##[loading]
S:preload_resources = '';
B:allow_game_intro_skip = 'true';
S:game_intro_animation_name = '';
B:game_intro_fade_out = 'true';
S:custom_game_intro_skip_text = '';
##[window]
S:custom_window_icon_16 = '/config/fancymenu/assets/cm_textures/icon16x16.png';
B:show_custom_window_icon = 'true';
S:custom_window_icon_macos = '/config/fancymenu/assets/cm_textures/iconmacos.icns';
S:custom_window_icon_32 = '/config/fancymenu/assets/cm_textures/icon32x32.png';
S:custom_window_title = 'Cobblemon 1.21.1';
##[multiplayer_screen]
B:show_multiplayer_screen_server_icons = 'true';
##[singleplayer_screen]
B:show_singleplayer_screen_world_icons = 'true';
##[layout_editor]
B:layout_editor_grid_snapping = 'true';
B:anchor_overlay_change_anchor_on_area_hover = 'true';
B:show_layout_editor_grid = 'true';
S:anchor_overlay_color_base_override = '';
B:enable_element_rotation_controls = 'true';
F:anchor_overlay_opacity_normal = '0.5';
F:anchor_overlay_opacity_busy = '0.7';
D:anchor_overlay_hover_charging_time_seconds = '2.0';
B:anchor_overlay_change_anchor_on_element_hover = 'true';
S:anchor_overlay_visibility_mode = 'dragging';
B:anchor_overlay_show_all_connection_lines = 'false';
F:layout_editor_grid_snapping_strength = '1.0';
I:layout_editor_grid_size = '10';
B:invert_anchor_overlay_color = 'false';
B:enable_buddy = 'true';
S:anchor_overlay_color_border_override = '';
B:enable_element_tilting_controls = 'true';
##[ui]
F:ui_scale = '4.0';
B:play_ui_click_sounds = 'true';
B:enable_ui_text_shadow = 'false';
I:context_menu_hover_open_speed = '1';
S:ui_theme = 'dark';
##[debug_overlay]
B:debug_overlay_show_basic_screen_category = 'true';
B:show_debug_overlay = 'false';
B:debug_overlay_show_resources_category = 'true';
B:debug_overlay_show_system_category = 'true';
B:debug_overlay_show_advanced_screen_category = 'true';
##[tutorial]
B:show_welcome_screen = 'false';
##[keyframe_editor]
B:arrow_keys_move_preview = 'false';
##[advanced]
L:placeholder_caching_duration_ms = '30';
L:requirement_caching_duration_ms = '0';

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 244 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 212 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 290 KiB

View file

@ -0,0 +1,12 @@
type = slideshow
slideshow-meta {
name = cm_showcase
width = 512
height = 316
x = 0
y = 0
duration = 5.0
fadespeed = 12.0
randomize = true
}

View file

@ -0,0 +1,262 @@
{
"identifier": "dark",
"display_name": "fancymenu.ui.themes.dark",
"menu_bar_bottom_line_color": {
"hex": "#5D6164FF"
},
"layout_editor_mouse_selection_rectangle_color": {
"hex": "#0394FCFF"
},
"layout_editor_grid_color_normal": {
"hex": "#BA79F164"
},
"layout_editor_grid_color_center": {
"hex": "#5B5EFF64"
},
"layout_editor_element_border_color_normal": {
"hex": "#0394FCFF"
},
"layout_editor_element_border_color_selected": {
"hex": "#03DBFCFF"
},
"layout_editor_element_border_rotation_controls_color": {
"hex": "#9E2BFFFF"
},
"layout_editor_element_border_vertical_tilting_controls_color": {
"hex": "#FFB52BFF"
},
"layout_editor_element_border_horizontal_tilting_controls_color": {
"hex": "#91FF2BFF"
},
"layout_editor_element_dragging_not_allowed_color": {
"hex": "#E83609C8"
},
"layout_editor_element_border_display_line_background_color": {
"hex": "#00000080"
},
"layout_editor_element_border_display_line_text_color": {
"hex": "#FFFFFFFF"
},
"layout_editor_anchor_point_overlay_color_base": {
"hex": "#25B479FF"
},
"layout_editor_anchor_point_overlay_color_border": {
"hex": "#114F34FF"
},
"layout_editor_close_icon_color": {
"hex": "#DA3C1EFF"
},
"scroll_grabber_color_normal": {
"hex": "#595B5D64"
},
"scroll_grabber_color_hover": {
"hex": "#66686864"
},
"screen_background_color": {
"hex": "#3C3F41FF"
},
"screen_background_color_darker": {
"hex": "#262626FF"
},
"element_border_color_normal": {
"hex": "#5D6164FF"
},
"element_border_color_hover": {
"hex": "#5D6164FF"
},
"element_background_color_normal": {
"hex": "#474747FF"
},
"element_background_color_hover": {
"hex": "#539CD4FF"
},
"slider_handle_color_normal": {
"hex": "#4784B4FF"
},
"slider_handle_color_hover": {
"hex": "#539CD4FF"
},
"area_background_color": {
"hex": "#2B2B2BFF"
},
"edit_box_background_color": {
"hex": "#2B2B2BFF"
},
"edit_box_border_color_normal": {
"hex": "#5D6164FF"
},
"edit_box_border_color_focused": {
"hex": "#5D6164FF"
},
"list_entry_color_selected_hovered": {
"hex": "#323232FF"
},
"actions_entry_background_color_action": {
"hex": "#3A3F44FF"
},
"actions_entry_background_color_action_hover": {
"hex": "#44494EFF"
},
"actions_entry_background_color_if": {
"hex": "#263F55FF"
},
"actions_entry_background_color_if_hover": {
"hex": "#2D516EFF"
},
"actions_entry_background_color_else_if": {
"hex": "#392D4FFF"
},
"actions_entry_background_color_else_if_hover": {
"hex": "#463A5FFF"
},
"actions_entry_background_color_else": {
"hex": "#4E3721FF"
},
"actions_entry_background_color_else_hover": {
"hex": "#5F462DFF"
},
"actions_entry_background_color_while": {
"hex": "#234A42FF"
},
"actions_entry_background_color_while_hover": {
"hex": "#2D5C52FF"
},
"actions_entry_background_color_folder": {
"hex": "#50303CFF"
},
"actions_entry_background_color_folder_hover": {
"hex": "#613E4DFF"
},
"actions_entry_background_color_generic_block": {
"hex": "#3A3B3EFF"
},
"actions_entry_background_color_generic_block_hover": {
"hex": "#47484CFF"
},
"actions_chain_indicator_color": {
"hex": "#587096B4"
},
"actions_chain_indicator_hovered_color": {
"hex": "#64B5F6D2"
},
"actions_chain_indicator_selected_color": {
"hex": "#FFC147DC"
},
"actions_minimap_background_color": {
"hex": "#181B20C8"
},
"actions_minimap_border_color": {
"hex": "#5E636CDC"
},
"actions_minimap_viewport_color": {
"hex": "#FFFFFF23"
},
"actions_minimap_viewport_border_color": {
"hex": "#D2DEFF64"
},
"actions_minimap_tooltip_border_color": {
"hex": "#78AADCDC"
},
"text_editor_sidebar_color": {
"hex": "#313335FF"
},
"text_editor_line_number_text_color_normal": {
"hex": "#5B5C5EFF"
},
"text_editor_line_number_text_color_selected": {
"hex": "#899396FF"
},
"listing_dot_color_1": {
"hex": "#3E86A0FF"
},
"listing_dot_color_2": {
"hex": "#AD6C79FF"
},
"listing_dot_color_3": {
"hex": "#AA823FFF"
},
"suggestions_background_color": {
"hex": "#474747FF"
},
"suggestions_text_color_normal": {
"hex": "#CEDDEDFF"
},
"suggestions_text_color_selected": {
"hex": "#64A5ECFF"
},
"ui_texture_color": {
"hex": "#FFFFFFFF"
},
"generic_text_base_color": {
"hex": "#FFFFFFFF"
},
"element_label_color_normal": {
"hex": "#CEDDEDFF"
},
"element_label_color_inactive": {
"hex": "#717577FF"
},
"edit_box_text_color_normal": {
"hex": "#CEDDEDFF"
},
"edit_box_text_color_uneditable": {
"hex": "#717577FF"
},
"edit_box_suggestion_text_color": {
"hex": "#808080FF"
},
"description_area_text_color": {
"hex": "#CEDDEDFF"
},
"text_editor_text_color": {
"hex": "#9EAAB8FF"
},
"success_text_color": {
"hex": "#31CE05FF"
},
"error_text_color": {
"hex": "#ED4545FF"
},
"warning_text_color": {
"hex": "#E59B12FF"
},
"text_editor_text_formatting_nested_text_color_1": {
"hex": "#EB7F7FFF"
},
"text_editor_text_formatting_nested_text_color_2": {
"hex": "#EBC97FFF"
},
"text_editor_text_formatting_nested_text_color_3": {
"hex": "#BEEB7FFF"
},
"text_editor_text_formatting_nested_text_color_4": {
"hex": "#7FEBE6FF"
},
"text_editor_text_formatting_nested_text_color_5": {
"hex": "#7F9EEBFF"
},
"text_editor_text_formatting_nested_text_color_6": {
"hex": "#967FEBFF"
},
"text_editor_text_formatting_nested_text_color_7": {
"hex": "#D47FEBFF"
},
"text_editor_text_formatting_nested_text_color_8": {
"hex": "#F53636FF"
},
"text_editor_text_formatting_nested_text_color_9": {
"hex": "#F59236FF"
},
"text_editor_text_formatting_nested_text_color_10": {
"hex": "#F5E536FF"
},
"text_editor_text_formatting_nested_text_color_11": {
"hex": "#69F536FF"
},
"text_editor_text_formatting_nested_text_color_12": {
"hex": "#3689F5FF"
},
"text_editor_text_formatting_brackets_color": {
"hex": "#FCDF03FF"
}
}

View file

@ -0,0 +1,262 @@
{
"identifier": "light",
"display_name": "fancymenu.ui.themes.light",
"menu_bar_bottom_line_color": {
"hex": "#777777FF"
},
"layout_editor_mouse_selection_rectangle_color": {
"hex": "#0394FCFF"
},
"layout_editor_grid_color_normal": {
"hex": "#BA79F164"
},
"layout_editor_grid_color_center": {
"hex": "#5B5EFF64"
},
"layout_editor_element_border_color_normal": {
"hex": "#0394FCFF"
},
"layout_editor_element_border_color_selected": {
"hex": "#03DBFCFF"
},
"layout_editor_element_border_rotation_controls_color": {
"hex": "#9E2BFFFF"
},
"layout_editor_element_border_vertical_tilting_controls_color": {
"hex": "#FFB52BFF"
},
"layout_editor_element_border_horizontal_tilting_controls_color": {
"hex": "#91FF2BFF"
},
"layout_editor_element_dragging_not_allowed_color": {
"hex": "#E83609C8"
},
"layout_editor_element_border_display_line_background_color": {
"hex": "#00000080"
},
"layout_editor_element_border_display_line_text_color": {
"hex": "#FFFFFFFF"
},
"layout_editor_anchor_point_overlay_color_base": {
"hex": "#25B479FF"
},
"layout_editor_anchor_point_overlay_color_border": {
"hex": "#114F34FF"
},
"layout_editor_close_icon_color": {
"hex": "#932813FF"
},
"scroll_grabber_color_normal": {
"hex": "#595B5D64"
},
"scroll_grabber_color_hover": {
"hex": "#66686864"
},
"screen_background_color": {
"hex": "#B2B2B2FF"
},
"screen_background_color_darker": {
"hex": "#ADADADFF"
},
"element_border_color_normal": {
"hex": "#777777FF"
},
"element_border_color_hover": {
"hex": "#777777FF"
},
"element_background_color_normal": {
"hex": "#CBCBCBFF"
},
"element_background_color_hover": {
"hex": "#AFAFAFFF"
},
"slider_handle_color_normal": {
"hex": "#858484FF"
},
"slider_handle_color_hover": {
"hex": "#A2A2A2FF"
},
"area_background_color": {
"hex": "#CBCBCBFF"
},
"edit_box_background_color": {
"hex": "#CBCBCBFF"
},
"edit_box_border_color_normal": {
"hex": "#383838FF"
},
"edit_box_border_color_focused": {
"hex": "#444444FF"
},
"list_entry_color_selected_hovered": {
"hex": "#AFAFAFFF"
},
"actions_entry_background_color_action": {
"hex": "#E0E0E0FF"
},
"actions_entry_background_color_action_hover": {
"hex": "#CECECEFF"
},
"actions_entry_background_color_if": {
"hex": "#C9DBEFFF"
},
"actions_entry_background_color_if_hover": {
"hex": "#B8CEE8FF"
},
"actions_entry_background_color_else_if": {
"hex": "#E9D7F0FF"
},
"actions_entry_background_color_else_if_hover": {
"hex": "#D8C6E3FF"
},
"actions_entry_background_color_else": {
"hex": "#F3E1C7FF"
},
"actions_entry_background_color_else_hover": {
"hex": "#E5D1B6FF"
},
"actions_entry_background_color_while": {
"hex": "#CCEBE3FF"
},
"actions_entry_background_color_while_hover": {
"hex": "#BCDED4FF"
},
"actions_entry_background_color_folder": {
"hex": "#F2D5DBFF"
},
"actions_entry_background_color_folder_hover": {
"hex": "#E6C7CEFF"
},
"actions_entry_background_color_generic_block": {
"hex": "#E5E5E5FF"
},
"actions_entry_background_color_generic_block_hover": {
"hex": "#D2D2D2FF"
},
"actions_chain_indicator_color": {
"hex": "#8CAAD296"
},
"actions_chain_indicator_hovered_color": {
"hex": "#6895D7BE"
},
"actions_chain_indicator_selected_color": {
"hex": "#DCA236D2"
},
"actions_minimap_background_color": {
"hex": "#ECECECC8"
},
"actions_minimap_border_color": {
"hex": "#ACACACDC"
},
"actions_minimap_viewport_color": {
"hex": "#5050503C"
},
"actions_minimap_viewport_border_color": {
"hex": "#D2DEFF64"
},
"actions_minimap_tooltip_border_color": {
"hex": "#78AADCDC"
},
"text_editor_sidebar_color": {
"hex": "#A4A4A4FF"
},
"text_editor_line_number_text_color_normal": {
"hex": "#696969FF"
},
"text_editor_line_number_text_color_selected": {
"hex": "#464646FF"
},
"listing_dot_color_1": {
"hex": "#438DD0FF"
},
"listing_dot_color_2": {
"hex": "#AB3950FF"
},
"listing_dot_color_3": {
"hex": "#B2740CFF"
},
"suggestions_background_color": {
"hex": "#A2A2A2FF"
},
"suggestions_text_color_normal": {
"hex": "#2D2D2DFF"
},
"suggestions_text_color_selected": {
"hex": "#205EA2FF"
},
"ui_texture_color": {
"hex": "#2D2D2DFF"
},
"generic_text_base_color": {
"hex": "#252525FF"
},
"element_label_color_normal": {
"hex": "#2D2D2DFF"
},
"element_label_color_inactive": {
"hex": "#8A8989FF"
},
"edit_box_text_color_normal": {
"hex": "#2D2D2DFF"
},
"edit_box_text_color_uneditable": {
"hex": "#8A8989FF"
},
"edit_box_suggestion_text_color": {
"hex": "#8A8989FF"
},
"description_area_text_color": {
"hex": "#2D2D2DFF"
},
"text_editor_text_color": {
"hex": "#484E53FF"
},
"success_text_color": {
"hex": "#197E02FF"
},
"error_text_color": {
"hex": "#A41B1BFF"
},
"warning_text_color": {
"hex": "#9B6105FF"
},
"text_editor_text_formatting_nested_text_color_1": {
"hex": "#A10F0FFF"
},
"text_editor_text_formatting_nested_text_color_2": {
"hex": "#B27D09FF"
},
"text_editor_text_formatting_nested_text_color_3": {
"hex": "#66A80AFF"
},
"text_editor_text_formatting_nested_text_color_4": {
"hex": "#089891FF"
},
"text_editor_text_formatting_nested_text_color_5": {
"hex": "#072E8DFF"
},
"text_editor_text_formatting_nested_text_color_6": {
"hex": "#26069DFF"
},
"text_editor_text_formatting_nested_text_color_7": {
"hex": "#6A0685FF"
},
"text_editor_text_formatting_nested_text_color_8": {
"hex": "#730303FF"
},
"text_editor_text_formatting_nested_text_color_9": {
"hex": "#854306FF"
},
"text_editor_text_formatting_nested_text_color_10": {
"hex": "#918504FF"
},
"text_editor_text_formatting_nested_text_color_11": {
"hex": "#267A07FF"
},
"text_editor_text_formatting_nested_text_color_12": {
"hex": "#363CF5FF"
},
"text_editor_text_formatting_brackets_color": {
"hex": "#FF3A0064"
}
}

View file

@ -0,0 +1,8 @@
type = user_variables
variable {
name = is_daytime
value = 0
reset_on_launch = false
}

View file

@ -0,0 +1,22 @@
# Replace the blockstate neighbor table
replaceNeighborLookup = true
# Do not store the properties of a state explicitly and read themfrom the replace neighbor table instead. Requires replaceNeighborLookup to be enabled
replacePropertyMap = true
# Cache the predicate instances used in multipart models
cacheMultipartPredicates = true
# Avoid creation of new strings when creating ModelResourceLocations
modelResourceLocations = true
# Do not create a new MultipartBakedModel instance for each block state using the same multipartmodel. Requires cacheMultipartPredicates to be enabled
multipartDeduplication = true
# Deduplicate cached data for blockstates, most importantly collision and render shapes
blockstateCacheDeduplication = true
# Deduplicate vertex data of baked quads in the basic model implementations
bakedQuadDeduplication = true
# Use smaller data structures for "simple" models, especially models with few side-specific faces
modelSides = true
# Replace objects used to detect multi-threaded access to chunks by a much smaller field. This option is disabled by default due to very rare and very hard-to-reproduce crashes, use at your own risk!
useSmallThreadingDetector = false
# Use a slightly more compact, but also slightly slower representation for block states
compactFastMap = false
# Populate the neighbor table used by vanilla. Enabling this slightly increases memory usage, but can help with issues in the rare case where mods access it directly.
populateNeighborTable = false

View file

@ -0,0 +1,4 @@
disableConfigWatcher = false
logUntranslatedConfigurationWarnings = true
#Path to load default configs from, intended for setting global server configs for newly created worlds, but also works when recreating client and common configs.
defaultConfigsPath = "defaultconfigs"

View file

@ -0,0 +1,21 @@
{
"REGULAR_INFO": "----- Regular config values below -----",
"font_atlas_resizing": true,
"map_atlas_generation": true,
"hud_batching": true,
"fast_text_lookup": true,
"fast_buffer_upload": true,
"COSMETIC_INFO": "----- Cosmetic only config values below (Does not optimize anything) -----",
"dont_add_info_into_debug_hud": false,
"EXPERIMENTAL_INFO": "----- Experimental config values below (Rendering glitches may occur) -----",
"experimental_disable_error_checking": false,
"experimental_disable_resource_pack_conflict_handling": false,
"experimental_sign_text_buffering": false,
"experimental_screen_batching": false,
"DEBUG_INFO": "----- Debug only config values below (Do not touch) -----",
"debug_only_and_not_recommended_disable_universal_batching": false,
"debug_only_and_not_recommended_disable_mod_conflict_handling": false,
"debug_only_and_not_recommended_disable_hardware_conflict_handling": false,
"debug_only_print_additional_error_information": false,
"debug_only_use_last_usage_for_batch_ordering": false
}

View file

@ -0,0 +1,47 @@
{
"package.name.className": {
"ignore": false,
"playerSideOnly": false,
"force": false,
"buttonHints": {
"SORT": {
"horizontalOffset": 0,
"top": 0,
"bottom": 0
},
"SORT_COLUMNS": {
"horizontalOffset": 0,
"top": 0,
"bottom": 0
},
"SORT_ROWS": {
"horizontalOffset": 0,
"top": 0,
"bottom": 0
},
"MOVE_TO_CONTAINER": {
"horizontalOffset": 0,
"top": 0,
"bottom": 0
},
"MOVE_TO_PLAYER": {
"horizontalOffset": 0,
"top": 0,
"bottom": 0
},
"CONTINUOUS_CRAFTING": {
"horizontalOffset": 0,
"top": 0,
"bottom": 0
},
"PROFILE_SELECTOR": {
"horizontalOffset": 0,
"top": 0,
"bottom": 0,
"hide": true
}
}
},
"another.package.name.className": {
}
}

View file

@ -0,0 +1,5 @@
{
"ModSettings": {
"first_run": false
}
}

View file

@ -0,0 +1,53 @@
{
"globalBookmarks": {
"armorer": [],
"butcher": [],
"cartographer": [],
"cleric": [],
"farmer": [],
"fisherman": [],
"fletcher": [],
"leatherworker": [],
"librarian": [],
"mason": [],
"shepherd": [],
"toolsmith": [],
"weaponsmith": [],
"nitwit": [],
"none": []
},
"globalBookmarks1": {
"armorer": [],
"butcher": [],
"cartographer": [],
"cleric": [],
"farmer": [],
"fisherman": [],
"fletcher": [],
"leatherworker": [],
"librarian": [],
"mason": [],
"shepherd": [],
"toolsmith": [],
"weaponsmith": [],
"nitwit": [],
"none": []
},
"globalBookmarks2": {
"armorer": [],
"butcher": [],
"cartographer": [],
"cleric": [],
"farmer": [],
"fisherman": [],
"fletcher": [],
"leatherworker": [],
"librarian": [],
"mason": [],
"shepherd": [],
"toolsmith": [],
"weaponsmith": [],
"nitwit": [],
"none": []
}
}

22
config/invmove.json Normal file
View file

@ -0,0 +1,22 @@
{
"general": {
"enable": true,
"debugDisplay": false
},
"movement": {
"enable": true,
"jump": true,
"sneak": "Maintain",
"dismount": false,
"textFieldDisables": true,
"unrecognizedScreenDefault": true,
"sneak_disallowed": "Maintain",
"sneak_flying": "Pressed"
},
"background": {
"enable": true,
"hideOnPause": "Show",
"unrecognizedScreenDefault": true
},
"allowedKeysOverrides": {}
}

View file

@ -0,0 +1,4 @@
{
"movement": {},
"backgroundHide": {}
}

4
config/invmove/emi.json Normal file
View file

@ -0,0 +1,4 @@
{
"movement": {},
"backgroundHide": {}
}

4
config/invmove/jei.json Normal file
View file

@ -0,0 +1,4 @@
{
"movement": {},
"backgroundHide": {}
}

4
config/invmove/rei.json Normal file
View file

@ -0,0 +1,4 @@
{
"movement": {},
"backgroundHide": {}
}

View file

@ -0,0 +1,39 @@
{
"allowMovement": {
"io.github.bumblesoftware.fastload.client.BuildingTerrainScreen": true,
"net.minecraft.class_433": false,
"me.shedaniel.rei.impl.client.gui.screen.DefaultDisplayViewingScreen": false,
"com.cobblemon.mod.common.client.gui.summary.Summary": true,
"com.cobblemon.mod.common.client.gui.battle.BattleGUI": true,
"me.shedaniel.clothconfig2.gui.ClothConfigScreen": false,
"net.minecraft.class_434": false,
"com.cobblemon.mod.common.client.gui.pokedex.PokedexGUI": false,
"net.minecraft.class_429": false,
"me.flashyreese.mods.reeses_sodium_options.client.gui.SodiumVideoOptionsScreen": false,
"net.minecraft.class_443": false,
"dev.emi.emi.screen.BoMScreen": true,
"dev.emi.emi.screen.RecipeScreen": true,
"com.cobblemon.mod.common.client.gui.startselection.StarterSelectionScreen": true,
"xaero.map.gui.GuiMap": true,
"xaero.map.gui.GuiWorldMapSettings": true,
"xaero.common.gui.GuiMinimapMain": true,
"xaero.common.gui.GuiMinimapViewSettings": true,
"xaero.common.gui.GuiEntityRadarSettings": true,
"net.minecraft.class_5375": true,
"net.minecraft.class_440": true,
"io.wispforest.accessories.client.gui.ScreenVariantSelectionScreen": true,
"xaero.common.gui.GuiWaypointSettings": true,
"io.wispforest.accessories.client.gui.AccessoriesExperimentalScreen": true,
"xaero.common.gui.GuiAddWaypoint": true,
"com.cobblemon.mod.common.client.gui.pc.PCGUI": true,
"com.cobblemon.mod.common.client.gui.interact.partyselect.PartySelectGUI": true
},
"hideBackground": {
"me.shedaniel.rei.impl.client.gui.screen.DefaultDisplayViewingScreen": true,
"com.cobblemon.mod.common.client.gui.summary.Summary": true,
"com.cobblemon.mod.common.client.gui.pokedex.PokedexGUI": true,
"dev.emi.emi.screen.RecipeScreen": true,
"com.cobblemon.mod.common.client.gui.pc.PCGUI": true,
"com.cobblemon.mod.common.client.gui.interact.partyselect.PartySelectGUI": true
}
}

View file

@ -0,0 +1,53 @@
{
"movement": {
"inventory": true,
"horseInventory": true,
"creative": true,
"crafting": true,
"chest": true,
"shulker": true,
"dispenser": true,
"hopper": true,
"enchantment": true,
"anvil": true,
"beacon": true,
"brewing": true,
"furnace": true,
"blastFurnace": true,
"smoker": true,
"loom": true,
"cartography": true,
"grindstone": true,
"stonecutter": true,
"villager": true,
"book": true,
"advancements": true,
"recipeBook": true,
"smithing": true
},
"backgroundHide": {
"inventory": true,
"horseInventory": true,
"creative": true,
"crafting": true,
"chest": true,
"shulker": true,
"dispenser": true,
"hopper": true,
"enchantment": true,
"anvil": true,
"beacon": true,
"brewing": true,
"furnace": true,
"blastFurnace": true,
"smoker": true,
"loom": true,
"cartography": true,
"grindstone": true,
"stonecutter": true,
"villager": true,
"book": true,
"advancements": true,
"smithing": true
}
}

View file

@ -0,0 +1 @@
{"excluded":["put:valuesHere"]}

9
config/iris.properties Normal file
View file

@ -0,0 +1,9 @@
#This file stores configuration options for Iris, such as the currently active shaderpack
#Mon Dec 01 20:10:29 BRT 2025
allowUnknownShaders=false
colorSpace=SRGB
disableUpdateMessage=true
enableDebugOptions=false
enableShaders=true
maxShadowRenderDistance=32
shaderPack=ComplementaryReimagined_r5.6.1.zip

View file

@ -0,0 +1,6 @@
{
"__comment": "This is an ignore list for the target of Jade. You can add registry ids to the \"values\" list.",
"values": [
"barrier"
]
}

View file

@ -0,0 +1,10 @@
{
"__comment": "This is an ignore list for the target of Jade. You can add registry ids to the \"values\" list.",
"values": [
"area_effect_cloud",
"firework_rocket",
"interaction",
"text_display",
"lightning_bolt"
]
}

47
config/jade/jade.json Normal file
View file

@ -0,0 +1,47 @@
{
"general": {
"itemModNameTooltip": false,
"bossBarOverlapMode": "PUSH_DOWN",
"builtinCamouflage": true,
"hideFromTabList": true,
"hideFromGUIs": true,
"accessibilityModMemory": false,
"enableAccessibilityPlugin": false,
"fluidMode": "ANY",
"perspectiveMode": "CAMERA",
"extendedReach": 0.0,
"debug": false,
"displayBosses": true,
"displayMode": "TOGGLE",
"enableTextToSpeech": false,
"ttsMode": "PRESS",
"previewOverlay": true,
"displayTooltip": true,
"displayBlocks": true,
"displayEntities": true
},
"overlay": {
"alpha": 0.7,
"iconMode": "TOP",
"animation": true,
"disappearingDelay": 0.0,
"overlaySquare": false,
"flipMainHand": false,
"autoScaleThreshold": 0.4,
"overlayScale": 1.0,
"overlayAnchorX": 0.5,
"overlayAnchorY": 0.0,
"activeTheme": "jade:dark",
"overlayPosX": 0.5,
"overlayPosY": 1.0
},
"formatting": {
"itemModNameStyle": {
"italic": true,
"color": "blue"
}
},
"history": {
"themesHash": -328442023
}
}

76
config/jade/plugins.json Normal file
View file

@ -0,0 +1,76 @@
{
"minecraft": {
"item_storage.show_name_amount": 5,
"furnace": true,
"harvest_tool.show_unbreakable": false,
"animal_owner": true,
"harvest_tool.effective_tool": true,
"energy_storage.style": "PROGRESS_BAR",
"item_storage.normal_amount": 9,
"item_storage": true,
"harvest_tool": true,
"armor_stand": true,
"fluid_storage.detailed": false,
"next_entity_drop": true,
"energy_storage": true,
"entity_armor.max_for_render": 20,
"breaking_progress": true,
"tnt_stability": true,
"item_storage.items_per_line": 9,
"item_frame": true,
"crop_progress": true,
"command_block": true,
"mob_growth": true,
"waxed": true,
"harvest_tool.new_line": false,
"entity_health.max_for_render": 40,
"entity_health.show_fractions": false,
"mob_spawner": true,
"redstone": true,
"fluid_storage": true,
"jukebox": true,
"brewing_stand": true,
"energy_storage.detailed": false,
"note_block": true,
"fluid_storage.style": "PROGRESS_BAR",
"beehive": true,
"item_storage.detailed_amount": 54,
"player_head": true,
"lectern": true,
"entity_armor": true,
"harvest_tool.creative": false,
"horse_stats": true,
"item_tooltip": true,
"entity_health": true,
"enchantment_power": true,
"zombie_villager": true,
"villager_profession": true,
"mob_breeding": true,
"entity_health.icons_per_line": 10,
"total_enchantment_power": true,
"potion_effects": true,
"painting": true,
"chiseled_bookshelf": true
},
"jade_access": {
"held_item": true,
"sign": true,
"block": true,
"entity": true,
"entity_variant": true
},
"jade": {
"coordinates.rel": false,
"registry_name.special": false,
"block_states": false,
"distance": false,
"block_face": false,
"coordinates": false,
"registry_name": "OFF",
"block_properties": false,
"mod_name": true
},
"balm": {
"jade": true
}
}

View file

@ -0,0 +1,63 @@
{
"balm:jade": null,
"jade:block_face": null,
"jade:block_properties": null,
"jade:block_states": null,
"jade:distance": null,
"jade:mod_name": null,
"jade:object_name": null,
"jade:registry_name": null,
"jade_access:block": null,
"jade_access:block_amount": null,
"jade_access:block_body": null,
"jade_access:entity": null,
"jade_access:entity_body": null,
"jade_access:entity_variant": null,
"jade_access:held_item": null,
"jade_access:sign": null,
"minecraft:animal_owner": null,
"minecraft:armor_stand": null,
"minecraft:beehive": null,
"minecraft:block_display": null,
"minecraft:brewing_stand": null,
"minecraft:campfire": null,
"minecraft:chiseled_bookshelf": null,
"minecraft:command_block": null,
"minecraft:crop_progress": null,
"minecraft:enchantment_power": null,
"minecraft:energy_storage": null,
"minecraft:energy_storage.default": null,
"minecraft:entity_armor": null,
"minecraft:entity_health": null,
"minecraft:falling_block": null,
"minecraft:fluid_storage": null,
"minecraft:fluid_storage.default": null,
"minecraft:furnace": null,
"minecraft:harvest_tool": null,
"minecraft:hopper_lock": null,
"minecraft:horse_stats": null,
"minecraft:item_ber": null,
"minecraft:item_display": null,
"minecraft:item_frame": null,
"minecraft:item_storage": null,
"minecraft:item_storage.default": null,
"minecraft:item_tooltip": null,
"minecraft:jukebox": null,
"minecraft:lectern": null,
"minecraft:mob_breeding": null,
"minecraft:mob_growth": null,
"minecraft:mob_spawner": null,
"minecraft:mob_spawner.cooldown": null,
"minecraft:next_entity_drop": null,
"minecraft:note_block": null,
"minecraft:painting": null,
"minecraft:player_head": null,
"minecraft:potion_effects": null,
"minecraft:progress": null,
"minecraft:redstone": null,
"minecraft:tnt_stability": null,
"minecraft:total_enchantment_power": null,
"minecraft:villager_profession": null,
"minecraft:waxed": null,
"minecraft:zombie_villager": null
}

View file

@ -0,0 +1,6 @@
{
"55a58451-8fe9-4dfe-8011-1509e948e7a6": "WizardLink",
"2d247b13-58ca-4951-a7cd-b2192948c772": "reell089",
"89571ba6-29b1-477a-af75-2d0ca2016950": "ViridianX3",
"98bf77dc-6bf7-4840-8a5c-054286372a2b": "CodieCher"
}

View file

@ -0,0 +1,3 @@
[
{"version":2}
]

323
config/jei/jei-client.ini Normal file
View file

@ -0,0 +1,323 @@
[appearance]
# Name: Center Search Bar
# Description: Move the JEI search bar to the bottom center of the screen.
# Valid Values: [true, false]
# Default Value: false
centerSearch = false
# Name: Recipe GUI Height
# Description: The maximum height for the Recipes Gui (in pixels).
# Valid Values: Any integer greater than or equal to 175
# Default Value: 350
recipeGuiHeight = 350
[cheating]
# Name: Give Mode
# Description: Choose if JEI should give ingredients directly to the inventory or pick them up with the mouse.
# 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: Add Bookmarks to Front
# Description: When true, add new bookmarks to the front of the list. When false, add them to the end.
# 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: @Mod Name Search Mode
# Description: Search mode for mod names (prefix: @).
# Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED]
# Default Value: REQUIRE_PREFIX
modNameSearchMode = REQUIRE_PREFIX
# Name: #Tag Search Mode
# Description: Search mode for tags (prefix: #).
# Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED]
# Default Value: REQUIRE_PREFIX
tagSearchMode = REQUIRE_PREFIX
# Name: $Tooltip Search Mode
# Description: Search mode for tooltips (prefix: $).
# Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED]
# Default Value: ENABLED
tooltipSearchMode = ENABLED
# Name: ^Color Search Mode
# Description: Search mode for colors (prefix: ^).
# Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED]
# Default Value: DISABLED
colorSearchMode = DISABLED
# Name: &Resource Location Search Mode
# Description: Search mode for resource locations (prefix: &).
# Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED]
# Default Value: DISABLED
resourceLocationSearchMode = DISABLED
# Name: %Creative Tab Search Mode
# Description: Search mode for creative mode tab names (prefix: %).
# Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED]
# Default Value: DISABLED
creativeTabSearchMode = DISABLED
# Name: Search Advanced Tooltips
# 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

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