Minecraft Dungeon Tweaks mod 2024 download
logo
minecraft mod Dungeon Tweaks

Dungeon Tweaks

Game Version: 1.12.2
Total Downloads: 24,759
Updated: Mar 15, 2019
Created: Mar 5, 2018
Download Dungeon TweaksDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
DungeonTweaks-1.2.6.4 release 132.59 KB Mar 15, 2019 1.12.2 9,769 download Dungeon Tweaks DungeonTweaks-1.2.6.4 releaseDownload
DungeonTweaks-1.2.6.3 release 132.58 KB Feb 22, 2019 1.12.2 178 download Dungeon Tweaks DungeonTweaks-1.2.6.3 releaseDownload
DungeonTweaks-1.2.6.2 release 132.60 KB Feb 17, 2019 1.12.2 81 download Dungeon Tweaks DungeonTweaks-1.2.6.2 releaseDownload
DungeonTweaks-1.2.6.1 release 132.82 KB Feb 3, 2019 1.12.2 130 download Dungeon Tweaks DungeonTweaks-1.2.6.1 releaseDownload
DungeonTweaks-1.2.6 release 133.15 KB Jan 15, 2019 1.12.2 200 download Dungeon Tweaks DungeonTweaks-1.2.6 releaseDownload
DungeonTweaks-1.2.5.2 release 131.60 KB Oct 10, 2018 1.12.2 636 download Dungeon Tweaks DungeonTweaks-1.2.5.2 releaseDownload
DungeonTweaks-1.2.5.1 release 130.96 KB Sep 25, 2018 1.12.2 153 download Dungeon Tweaks DungeonTweaks-1.2.5.1 releaseDownload
DungeonTweaks-1.2.5 release 130.91 KB Sep 24, 2018 1.12.2 73 download Dungeon Tweaks DungeonTweaks-1.2.5 releaseDownload
DungeonTweaks-1.2.4.8.jar release 139.77 KB Mar 27, 2018 1.12.2 12,417 download Dungeon Tweaks DungeonTweaks-1.2.4.8.jar releaseDownload
DungeonTweaks-1.2.4.7.jar release 139.02 KB Mar 21, 2018 1.12.2 141 download Dungeon Tweaks DungeonTweaks-1.2.4.7.jar releaseDownload
DungeonTweaks-1.2.4.6.jar release 558.10 KB Mar 20, 2018 1.12.2 89 download Dungeon Tweaks DungeonTweaks-1.2.4.6.jar releaseDownload
DungeonTweaks-1.2.jar release 542.97 KB Mar 10, 2018 1.12.2 92 download Dungeon Tweaks DungeonTweaks-1.2.jar releaseDownload
DungeonTweaks-1.2.4.5.jar beta 553.53 KB Mar 19, 2018 1.12.2 280 download Dungeon Tweaks DungeonTweaks-1.2.4.5.jar betaDownload
DungeonTweaks-1.2.4.4.jar beta 553.42 KB Mar 18, 2018 1.12.2 78 download Dungeon Tweaks DungeonTweaks-1.2.4.4.jar betaDownload
DungeonTweaks-1.2.4.3.jar beta 549.30 KB Mar 17, 2018 1.12.2 73 download Dungeon Tweaks DungeonTweaks-1.2.4.3.jar betaDownload
DungeonTweaks-1.2.4.jar beta 503.34 KB Mar 15, 2018 1.12.2 82 download Dungeon Tweaks DungeonTweaks-1.2.4.jar betaDownload
DungeonTweaks-1.2.3.jar beta 540.81 KB Mar 14, 2018 1.12.2 76 download Dungeon Tweaks DungeonTweaks-1.2.3.jar betaDownload
DungeonTweaks-1.0.jar beta 878.25 KB Mar 6, 2018 1.12.2 132 download Dungeon Tweaks DungeonTweaks-1.0.jar betaDownload

Description

Share this:

Credits: elix_x , choonster
Discord: https://discord.gg/Y8sHf52
Donate: https://www.patreon.com/jredfox

More ScreenShots:

Battle Towers Support:

 

 

Requires:

Evil Notch Lib

Config Dungeons Mobs
Dungeon
Mansion
Mineshaft
NetherFortess
Stronghold

Features:
Config dungeons mobs weights
Add nbt custom entries like powered creepers see faq for how to do it
Define Dungeons based on EntityId and get a whole new list to configure
Dimension and Biome Specific lists that you define per dungeon and override the current one for the biome/dimension.

Supported Mods:
Battle Towers Supported
Quark
Recurrent Complex(You must set the id of the mob to the resource location defined by the user in order for it to work) Note: you might have to set chunk scan radius for the overworld to 1-2 depending on your structure.
need another join discord or msg me…..

Goes Good with silkspawners to mine spawner
https://minecraft.curseforge.com/projects/silk-spawners-forge-edition

Api-Modders(easy to use):

to get started you first need to tell dungeon tweaks your dungeon. where true/false is enabled dungeon by default
DungeonMobs.addDefinition(new ResourceLocation("battletowers:cobblestone"), true/false);

Next you can define your default weights that users can later override in the config by mobs like so. Note that there are also versions which you can use nbt for as well.
DungeonMobs.addDungeonMob(DungeonMobs.mansion, new ResourceLocation("minecraft:spider"), 150);

Then in your worldgen when it fires simple tell dungeon tweaks to fire itself.
DungeonMobs.fireDungeonTweaks(DungeonMobs.dungeon, tileentity, rand, worldIn);

What is a DungeonLocation?: it is a resource location with additional data such as anydimension, specific dimension, or specific biome applied to it. All other questions should be self answered browsing the source code which is only a couple classes

There is an alternate way of adding dungeon tweaks support without dependencies or reflection but, is depreciated. You need to have your spawner when populating be equal to the dungeon resource location users specify and if you don't want users inputting that location you can use reflection to add the dungeon definition from step one.

Tatorial:

File:
#Dungeon tweaks
"minecraft:creeper" = 20

Line:
all lines are resource location mob id. Then you can append the nbt before the equals sign if you wish. After the equal sign you put the weight.

Add nbt entry:
"minecraft:spider" {Passengers:[{id:skeleton} ] } = 20

Add multi index spawner entry:
"minecraft:blank" {SpawnData:{id:creeper},SpawnPotentials:[{Weight:1,Entity:{id:creeper}  } ,{Weight:1,Entity:{id:zombie}  }] }

this is recommended to write the entry into custom.txt for your dungeon. This entry will have your spawner spawn a creeper, and then have a chance of changing between a creeper or a zombie.

Validation:
all config files when turned on will validate the mob ids. if your using an advanced nbt entry you may use "minecraft:blank { } = weight"

Comments
start with "#" before a line or directly above one. They can also start at the header or footer of the file. Also can be directly after the line as an attached comment.

Weights:
the weight is the value which the line holds. The greater the number the more common it is

Question: do I need to put the quotes?
Answer:no unless it contains special parsing characters or you have an outdated version of dungeon tweaks < 1.2.5.

Definitions: definitions are user defined dungeons. Definitions are defined at the global regular forge config under the dungeon tweaks folder.

The format is "modid:dungeon" <dim/biome> = true/false

the meta data after the dungoen id is optional. If it's an integer <1> it will be a dimension. If it's a string <"1"> it will try to be a biome id however biomes in 1.12 now use resource location so this isn't proper. For biomes use <minecraft:plains> as a biome for example. Quotes are not required if it's a string and not a number.

use /dungeonTweaksReload to reload and add your new definition of a dungeon. Notice the weights will be 0 because nothing in coded registry setup for dim/biome specific ones unless you have some sort of dungeon tweaks addon. This is normal just config what you want or copy and paste from another dungeon files if you wish. Also you might need to notify the user to up the chunk radius from 0-1 to 1-2. This is how I added support for all of the vanilla structures that were not the dungeon from chunk scanning.

FAQ:
Q: how to add basic mob
A: set weight in configs to above 0 make sure it's the right dungeon folder first
Q: how to add nbt entry
A: go to the modid file the mob belongs to and add it in this format "modid:mobid" { }  = weight
Q:does this mod replace structures I am worried that it's going to be incompatible with xmod:
A:Yes but, only the main dungeon for 1.12.2 the rest has a chunk scanner
Q:why does non living entities not spawn
A: vanilla spawner logic there is a way to get around this using nbt and spawn potentials but, it's complicated
Q: why isn't dungeon tweeks always working for my custom definitions
A: what is your chunk scanning radius if 0-1 set to 1-2 if it still occurs report it as an issue to my github but, I already tested this it should never occur if structures spawn in the way they are suppose to in 1.10.2+

Comments

Add a comment