I'd love to know if any of this syntax is available yet for use in the .json files.
A new CoFH version was released a few days ago with all this new features
I'd love to know if any of this syntax is available yet for use in the .json files.
Zilch. Their website briefly mentions Fractal. Makes me sad, sounds like there are some good things that I can play with.Is there documentation anywhere for it?
{
"testQuartz": {
"template": {"type": "fractal", "generator": "large-vein", "sparse": false},
"block": "appliedenergistics2:tile.OreQuartzCharged",
"clusterSize": 16,
"numClusters": 5,
"chunkChance": 80,
"minHeight": 20,
"veinHeight": 24,
"veinDiameter": 65,
"verticalDensity": 15,
"horizontalDensity": 15,
"retrogen": "true",
"biomeRestriction": "none",
"biomes": [
"all"
],
"dimensionRestriction": "blacklist",
"dimensions": [
-1,
1
]
}
}
This. Even just giving a link to that paste would've been better than nothing...Zilch. Their website briefly mentions Fractal. Makes me sad, sounds like there are some good things that I can play with.
Great find @SirChamomile!
chunkChance seems to be something like 1 spawn per n chunks - the lower the number the more spawns there are.
Actually, it means the chance to spawn on the chunk. The cluster will have 1/n chance of spawning being 'n' the number you indicated.
{
"testIron": {
"template": {"type": "fractal", "generator": "large-vein", "sparse": false},
"block": [
{
"name": "minecraft:iron_ore",
"metadata": 0,
"weight": 30
},
{
"name": "Railcraft:tile.railcraft.ore",
"metadata": 7,
"weight": 70
}
],
"clusterSize": 16,
"numClusters": 3,
"chunkChance": 2.5,
"minHeight": 20,
"veinHeight": 44,
"veinDiameter": 65,
"verticalDensity": 15,
"horizontalDensity": 20,
"retrogen": "true",
"biomeRestriction": "none",
"biomes": [
"all"
],
"dimensionRestriction": "blacklist",
"dimensions": [
-1,
1
]
},
"testLead/Silver": {
"template": {"type": "fractal", "generator": "large-vein", "sparse": false},
"block": [
{
"name": "ThermalFoundation:Ore",
"metadata": 2,
"weight": 60
},
{
"name": "ThermalFoundation:Ore",
"metadata": 3,
"weight": 32
},
{
"name": "Metallurgy:precious.ore",
"metadata": 2,
"weight": 8
}
],
"clusterSize": 5,
"numClusters": 2,
"chunkChance": 2,
"minHeight": 10,
"veinHeight": 20,
"veinDiameter": 25,
"verticalDensity": 10,
"horizontalDensity": 10,
"retrogen": "true",
"biomeRestriction": "none",
"biomes": [
"all"
],
"dimensionRestriction": "blacklist",
"dimensions": [
-1,
1
]
},
"testSaltBed": {
"template": {"type": "fractal", "generator": "large-vein", "sparse": false},
"block": [
{
"name": "harvestcraft:salt",
"metadata": 0,
"weight": 90
},
{
"name": "Metallurgy:utility.ore",
"metadata": 1,
"weight": 5
},
{
"name": "Metallurgy:utility.ore",
"metadata": 5,
"weight": 5
}
],
"clusterSize": 2,
"numClusters": 16,
"chunkChance": 6,
"minHeight": 54,
"veinHeight": 1,
"veinDiameter": 50,
"verticalDensity": 2,
"horizontalDensity": 24,
"retrogen": "true",
"biomeRestriction": "none",
"biomes": [
"all"
],
"dimensionRestriction": "blacklist",
"dimensions": [
-1,
1
]
}
}
return new FeatureGenUnderfluid(featureName, gen, matList, fluidList, numClusters, biomeRes, retrogen, dimRes);
"sulfurGen": {
"template": {"type": "underfluid"},
"block": {"name": "Metallurgy:utility.ore", "metadata": 0},
"material": [
"minecraft:stone",
"minecraft:bedrock"
],
"fluid": "lava_fluid",
"clusterSize": 6,
"numClusters": 40,
"retrogen": true,
"biomeRestriction": "none",
"biomes": [
"all"
],
"dimensionRestriction": "blacklist",
"dimensions": [
-1,
1
]
}