Initial Commit

Commit Suicide

add disabled jars to lfs

remove mods

re-add mods
This commit is contained in:
luxtracon
2025-11-01 17:56:55 +01:00
commit 60535c0011
377 changed files with 14211 additions and 0 deletions

View File

@@ -0,0 +1,93 @@
/*
This config makes it possible to change the spacing, separation, salt (and frequency) of Minecraft's structure sets.
SPACING --- controls how far a structure can be from others of its kind
SEPARATION --- controls how close to each other two structures of the same type can be.
KEEP IN MIND THAT SPACING ALWAYS NEEDS TO BE HIGHER THAN SEPARATION.
=====
Created by Cristel Lib
*/
{
"ancient_cities": {
"salt": 20083232,
"separation": 8,
"spacing": 24
},
"buried_treasures": {
"frequency": 0.01,
"salt": 0,
"separation": 0,
"spacing": 1
},
"desert_pyramids": {
"salt": 14357617,
"separation": 8,
"spacing": 32
},
"end_cities": {
"salt": 10387313,
"separation": 11,
"spacing": 20
},
"igloos": {
"salt": 14357618,
"separation": 8,
"spacing": 32
},
"jungle_temples": {
"salt": 14357619,
"separation": 8,
"spacing": 32
},
"nether_complexes": {
"salt": 30084232,
"separation": 4,
"spacing": 27
},
"nether_fossils": {
"salt": 14357921,
"separation": 1,
"spacing": 2
},
"ocean_monuments": {
"salt": 10387313,
"separation": 5,
"spacing": 32
},
"ocean_ruins": {
"salt": 14357621,
"separation": 8,
"spacing": 20
},
"pillager_outposts": {
"frequency": 0.2,
"salt": 165745296,
"separation": 8,
"spacing": 32
},
"ruined_portals": {
"salt": 34222645,
"separation": 15,
"spacing": 40
},
"shipwrecks": {
"salt": 165745295,
"separation": 4,
"spacing": 24
},
"swamp_huts": {
"salt": 14357620,
"separation": 8,
"spacing": 32
},
"villages": {
"salt": 10387312,
"separation": 8,
"spacing": 34
},
"woodland_mansions": {
"salt": 10387319,
"separation": 20,
"spacing": 80
}
}

View File

@@ -0,0 +1,74 @@
/*
This config makes it possible to switch off any Minecraft structure.
To disable a structure, simply set the value of that structure to "false".
To change the rarity of a structure category use the structure placement config.
=====
Created by Cristel Lib
*/
{
"ancient_cities": {
"ancient_city": true
},
"buried_treasures": {
"buried_treasure": true
},
"desert_pyramids": {
"desert_pyramid": true
},
"end_cities": {
"end_city": true
},
"igloos": {
"igloo": true
},
"jungle_temples": {
"jungle_pyramid": true
},
"nether_complexes": {
"bastion_remnant": true,
"fortress": true
},
"nether_fossils": {
"nether_fossil": true
},
"ocean_monuments": {
"monument": true
},
"ocean_ruins": {
"ocean_ruin_cold": true,
"ocean_ruin_warm": true
},
"pillager_outposts": {
"pillager_outpost": true
},
"ruined_portals": {
"ruined_portal": true,
"ruined_portal_desert": true,
"ruined_portal_jungle": true,
"ruined_portal_mountain": true,
"ruined_portal_nether": true,
"ruined_portal_ocean": true,
"ruined_portal_swamp": true
},
"shipwrecks": {
"shipwreck": true,
"shipwreck_beached": true
},
"strongholds": {
"stronghold": true
},
"swamp_huts": {
"swamp_hut": true
},
"villages": {
"village_desert": true,
"village_plains": true,
"village_savanna": true,
"village_snowy": true,
"village_taiga": true
},
"woodland_mansions": {
"mansion": true
}
}