From 71c5d20877c7bf051315335787559f3eb496b003 Mon Sep 17 00:00:00 2001 From: Sky Splash Date: Mon, 14 Oct 2024 20:35:25 +0200 Subject: [PATCH] made it work as inteded --- .../client/config/sodiumextras-client.toml | 125 ++++++++++++++++++ TrotCraft/client/index.toml | 15 ++- TrotCraft/client/mods/controlify.pw.toml | 13 -- TrotCraft/client/mods/owo-lib.pw.toml | 13 ++ TrotCraft/client/mods/particular.pw.toml | 13 ++ TrotCraft/client/pack.toml | 2 +- 6 files changed, 163 insertions(+), 18 deletions(-) create mode 100644 TrotCraft/client/config/sodiumextras-client.toml delete mode 100644 TrotCraft/client/mods/controlify.pw.toml create mode 100644 TrotCraft/client/mods/owo-lib.pw.toml create mode 100644 TrotCraft/client/mods/particular.pw.toml diff --git a/TrotCraft/client/config/sodiumextras-client.toml b/TrotCraft/client/config/sodiumextras-client.toml new file mode 100644 index 0000000..21dd968 --- /dev/null +++ b/TrotCraft/client/config/sodiumextras-client.toml @@ -0,0 +1,125 @@ + [embeddiumextras.general] + #Set Fullscreen mode + #Borderless let you change between screens more faster and move your mouse across monitors + #Allowed Values: WINDOWED, BORDERLESS, FULLSCREEN + fullscreen = "WINDOWED" + #Configure FPS Display mode + #Complete mode gives you min FPS count and average count + #Allowed Values: OFF, SIMPLE, ADVANCED + fpsDisplay = "OFF" + #Configure FPS Display gravity + #Places counter on specified corner of your screen + #Allowed Values: LEFT, CENTER, RIGHT + fpsDisplayGravity = "LEFT" + #Shows GPU and memory usage onto FPS display + #Allowed Values: OFF, ON, GPU, RAM + fpsDisplaySystem = "OFF" + #Configure FPS Display margin + #Give some space between corner and text + #Range: 0 ~ 48 + fpsDisplayMargin = 12 + #Toggle FPS Display shadow + #In case sometimes you can't see the text + fpsDisplayShadow = false + + [embeddiumextras.quality] + #Toggle fog feature + #Fog was a vanilla feature, toggling off may increases performance + fog = true + #Raise clouds + #Modify clouds height perfect for a adaptative world experience + #Range: 0 ~ 512 + cloudsHeight = 192 + #Chunks fade in speed + #This option doesn't affect performance, just changes speed + #Allowed Values: OFF, FAST, SLOW + chunkFadeSpeed = "SLOW" + + [embeddiumextras.quality.darkness] + #Configure Darkness Mode + #Each config changes what is considered 'true darkness' + #Allowed Values: PITCH_BLACK, TOTAL_DARKNESS, DARK, DIM, OFF + mode = "OFF" + #Toggle Darkness on Overworld dimension + enableOnOverworld = true + #Toggle Darkness on Nether dimension + enableOnNether = false + #Configure fog brightness on nether when darkness is enabled + #Range: 0.0 ~ 1.0 + netherFogBright = 0.5 + #Toggle Darkness on End dimension + enableOnEnd = false + #Configure fog brightness on nether when darkness is enabled + #Range: 0.0 ~ 1.0 + endFogBright = 0.5 + #Toggle Darkness default mode for modded dimensions + valueByDefault = false + #List of all dimensions to use True Darkness + #This option overrides 'valueByDefault' state + dimensionWhitelist = [] + #Toggle darkness when dimension has no SkyLight + enableOnNoSkyLight = false + #Disables all bright sources of darkness like moon or fog + #Only affects darkness effect + enableBlockLightOnly = false + #Toggles if moon phases affects darkness in the overworld + affectedByMoonPhase = true + #Configure max moon brightness level with darkness + #Range: 0.0 ~ 1.0 + fullMoonBright = 0.25 + #Configure min moon brightness level with darkness + #Range: 0.0 ~ 1.0 + newMoonBright = 0.0 + + [embeddiumextras.performance] + #Toggles JREI item rendering until searching + #Increases performance a little bit and cleans your screen when you don't want to use it + hideJREI = false + #Toggles Minecraft Fonts shadows + #Depending of the case may increase performance + #Gives a flat style text + fontShadows = true + + [embeddiumextras.performance.distanceCulling.tileEntities] + #Toggles distance culling for Block Entities + #Maybe you use another mod for that :( + enable = true + #Configure horizontal max distance before cull Block entities + #Value is squared, default was 64^2 (or 64x64) + #Range: > 0 + cullingMaxDistanceX = 4096 + #Configure vertical max distance before cull Block entities + #Value is raw + #Range: 0 ~ 512 + cullingMaxDistanceY = 32 + #List of all Block Entities to be ignored by distance culling + #Uses ResourceLocation to identify it + #Example 1: "minecraft:chest" - Ignores chests only + #Example 2: "ae2:*" - ignores all Block entities from Applied Energetics 2 + whitelist = ["waterframes:*"] + + [embeddiumextras.performance.distanceCulling.entities] + #Toggles distance culling for entities + #Maybe you use another mod for that :( + enable = true + #Configure horizontal max distance before cull entities + #Value is squared, default was 64^2 (or 64x64) + #Range: > 0 + cullingMaxDistanceX = 4096 + #Configure vertical max distance before cull entities + #Value is raw + #Range: 0 ~ 512 + cullingMaxDistanceY = 32 + #List of all Entities to be ignored by distance culling + #Uses ResourceLocation to identify it + #Example 1: "minecraft:bat" - Ignores bats only + #Example 2: "alexsmobs:*" - ignores all entities for alexmobs mod + whitelist = ["minecraft:ghast", "minecraft:ender_dragon", "iceandfire:*", "create:*"] + + [embeddiumextras.others] + #Configure if borderless fullscreen option should be attached to F11 or replace vanilla fullscreen + #Allowed Values: ATTACH, REPLACE, OFF + borderlessAttachModeOnF11 = "OFF" + #Toggles fast language reload + #Embeddedt points it maybe cause troubles to JEI, so ¿why not add it as a toggleable option? + fastLanguageReload = true diff --git a/TrotCraft/client/index.toml b/TrotCraft/client/index.toml index 0ac1391..5fea8fa 100644 --- a/TrotCraft/client/index.toml +++ b/TrotCraft/client/index.toml @@ -1,5 +1,8 @@ hash-format = "sha256" +[[files]] +file = "config/sodiumextras-client.toml" + [[files]] file = "config/yosbr/config/NoChatReports/NCR-Client.json" @@ -155,10 +158,6 @@ metafile = true file = "mods/continuity.pw.toml" metafile = true -[[files]] -file = "mods/controlify.pw.toml" -metafile = true - [[files]] file = "mods/cubes-without-borders.pw.toml" metafile = true @@ -295,10 +294,18 @@ metafile = true file = "mods/optigui.pw.toml" metafile = true +[[files]] +file = "mods/owo-lib.pw.toml" +metafile = true + [[files]] file = "mods/paginatedadvancements.pw.toml" metafile = true +[[files]] +file = "mods/particular.pw.toml" +metafile = true + [[files]] file = "mods/polytone.pw.toml" metafile = true diff --git a/TrotCraft/client/mods/controlify.pw.toml b/TrotCraft/client/mods/controlify.pw.toml deleted file mode 100644 index 1fe842d..0000000 --- a/TrotCraft/client/mods/controlify.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Controlify" -filename = "Controlify-2.0.0-beta.14+1.21-fabric.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/DOUdJVEm/versions/QiCZiPOr/Controlify-2.0.0-beta.14%2B1.21-fabric.jar" -hash-format = "sha1" -hash = "4643968fcdaee38ea921c0f4cc2cc1aebc21d058" - -[update] -[update.modrinth] -mod-id = "DOUdJVEm" -version = "QiCZiPOr" diff --git a/TrotCraft/client/mods/owo-lib.pw.toml b/TrotCraft/client/mods/owo-lib.pw.toml new file mode 100644 index 0000000..e969cdb --- /dev/null +++ b/TrotCraft/client/mods/owo-lib.pw.toml @@ -0,0 +1,13 @@ +name = "oωo (owo-lib)" +filename = "owo-lib-0.12.15+1.21.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ccKDOlHs/versions/vCCHsvEa/owo-lib-0.12.15%2B1.21.jar" +hash-format = "sha1" +hash = "6360554402859113fdd72abdb8ff9fd5d6c731ca" + +[update] +[update.modrinth] +mod-id = "ccKDOlHs" +version = "vCCHsvEa" diff --git a/TrotCraft/client/mods/particular.pw.toml b/TrotCraft/client/mods/particular.pw.toml new file mode 100644 index 0000000..b53a30e --- /dev/null +++ b/TrotCraft/client/mods/particular.pw.toml @@ -0,0 +1,13 @@ +name = "Particular ✨" +filename = "particular-1.1.1+1.21.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/B1CcCd9h/versions/WFcZYoYh/particular-1.1.1%2B1.21.jar" +hash-format = "sha1" +hash = "850f5f1e4b8b3d41c5c2f19aafa4ca08f0fd1285" + +[update] +[update.modrinth] +mod-id = "B1CcCd9h" +version = "WFcZYoYh" diff --git a/TrotCraft/client/pack.toml b/TrotCraft/client/pack.toml index f66f305..459e533 100644 --- a/TrotCraft/client/pack.toml +++ b/TrotCraft/client/pack.toml @@ -1,6 +1,6 @@ name = "TrotCraft" author = "Terra" -version = "1.2.0" +version = "2.0.0" pack-format = "packwiz:1.1.0" [index]