CurseForge · Minecraft mod
Twilight Tweaks
Adds a very configurable final boss among other config options.
Quick answer
Which Twilight Tweaks release should I use?
Twilight Tweaks twilighttweaks-1.21.1-1.3.jar targets 1.21.1 with NeoForge. The project page does not say whether this file belongs on the client, dedicated server, or both. No extra mods listed for this file.
Where it goes
Is Twilight Tweaks required on the client, server, or both?
The project page does not say whether this file belongs on the client, dedicated server, or both.
The source does not explicitly classify this release as client-only or server-only.
What else does Twilight Tweaks twilighttweaks-1.21.1-1.3.jar need?
twilighttweaks-1.21.1-1.3.jar. Change the file and its required mods may change too.
This file does not list any required mods. Do not add a library just because a different file uses it.
This file does not list any required or optional mods.
Before you install it
Add Twilight Tweaks without breaking your instance.
Built for Twilight Tweaks twilighttweaks-1.21.1-1.3.jar. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use twilighttweaks-1.21.1-1.3.jar. It targets 1.21.1 with NeoForge; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
This file does not list any required mods. Do not add a library just because a different file uses it.
- 03
Put it on the correct side
The project page does not say whether this file belongs on the client, dedicated server, or both.
- 04
Pick the file you checked
Use the “Get this file” button beside twilighttweaks-1.21.1-1.3.jar. It opens that exact file at the source.
About this project
What does Twilight Tweaks add?
Twilight Tweaks is an addon mod that adds configurable features to The Twilight Forest mod.
#: The final boss spawner now has a function: By default it runs a mcfunction that spawns a very strong husk with reinforcements, but you can set the config to make it summon any mob from any mod you want or run any command you want. This is mostly intended for modpack creation, but the boss that is summoned by default without changing any settings should be a challenge to most players. (Unless you're using really strong items from other mods).
(In 1.12 mcfuntions can not be added the same way with a mod, so by default it runs a very long command instead)
(1.19 + Only) : Bosses can be fought again! Simply obtain time powder from killing mobs inside of the Twilight Forest dimension, and use it on whatever is left of a boss spawner once you've killed the boss!
1.16-And down: (version higher than this have these features in the base mod)
What mobs the transformation powder effects is now configurable. Again, this is mostly for pack creation and won't change anything on it's own. You configure it with the config file.
The uncrafting table now has JEI support and custom recipe support. The mod comes with a few example recipes that you can base new ones on with your own datapack. The recipes are almost the same as vanilla ones, with the exception that you can set if the recipe overrides others and what the exp cost of the recipe is.
1.12-CraftTweaker
1.12 also has CraftTweaker support, which you can use to add Uncrafting recipes of your own to the game. I recommend using the guide.
The methods added are:
#1 ".addRecipe(boolean Replace, int Cost, IIngredient[][] Output, IIngredient Input)" lets you add a new recipe for uncrafting an item.
-Replace dictates if the new recipe will prevent the player from uncrafting the item in any other way.
-Cost dictates how many levels the recipe will consume to uncraft
-Output is a two dimensional array of ingredients that you get from unrafting this recipe
-Input is the item that needs to be uncrafted
Example: This will make a new uncrafting recipe that lets the player uncraft 3 apples into 9 carrots at the cost of 2 levels.
import crafttweaker.item.IIngredient;
val appleInput = <minecraft:apple> * 3;
val carrotOutput = [[<minecraft:carrot>, <minecraft:carrot>, <minecraft:carrot>],
[<minecraft:carrot>, <minecraft:carrot>, <minecraft:carrot>],
[<minecraft:carrot>, <minecraft:carrot>, <minecraft:carrot>]] as IIngredient[][];
mods.twilighttweaks.uncrafting.addRecipe(false, 2, carrotOutput, appleInput);
#2 ".removeDefaultRecipes(boolean[] toKeep)" lets you remove any of the 5 default uncrafting recipes that are unique to this mod, I've added this just in case, since the #1 method can not replace them
-toKeep is an array of 5 bolleans. Each one represents a default uncrafting recipe. True means the recipe is enabled and false disables it. The recipes are, in the same order:
Slightly Damaged Anvil uncrafting recipeVery Damaged Anvil uncrafting recipeKnightmetal Ingot uncrafting recipeTipped Arrow uncrafting recipeWritten Book uncrafting recipe
Example: This will disable the second and third default recipe. You have to list all 5 booleans, or else it won't work.
val boolArray = [true, false, false, true, true] as bool[];
mods.twilighttweaks.uncrafting.removeDefaultRecipes(boolArray);
#3 ".banUncraft(IItemStack input)" This let's you ban an item from being uncrafted. Any recipe that you add with #1 will ignore this ban.
-input is the item you don't want players to uncraft.
Example: This will prevent the Magic Map Focus from being uncraftable.
import crafttweaker.item.IIngredient;
mods.twilighttweaks.uncrafting.banUncraft(<twilightforest:magic_map_focus>);
Project description from CurseForge.
Pick your setup
Twilight Tweaks by Minecraft version and loader
Choose the version and loader you play, then open the matching release.
1.20.1
1 loader build1.19.4
1 loader build1.19.2
1 loader build1.18.2
1 loader build1.17.1
1 loader build1.16.5
1 loader build1.12.2
1 loader buildCheck the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
Twilight Tweaks versions and loaders
twilighttweaks-1.21.1-1.3.jar
twilighttweaks-1.3.jar
18 May 2025
twilighttweaks-1.20.1-1.2.jar
twilighttweaks-1.20.x-1.2.jar
13 Aug 2023
twilighttweaks-1.19.4-1.2.jar
13 Aug 2023
twilighttweaks-1.19.2-1.2.jar
12 Aug 2023
twilighttweaks-1.17.1-1.1.jar
13 Jul 2022
twilighttweaks-1.18.2-1.1.jar
12 Jul 2022
twilighttweaks-1.18.2-v1.0.jar
twilighttweaks-1.18.2-v1.0.jar.jar
7 Jun 2022
twilighttweaks-1.12.2-v1.0.2.jar
twilighttweaks-1.12.2-v1.0.2.jar.jar
20 Apr 2022
twilighttweaks-1.16.5-v1.0.jar
21 Nov 2021
Looking for an older file? The official CurseForge project page is in Resources.