COFH and Thaumcraft

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

Outlawstar15a2

New Member
Jul 29, 2019
6
0
0
So I was experimenting with COFH ore gen and this stuff is AWESOME. So I'm playing Mage Quest and was trying to add thaumcraft ores to COFH gen I got the game to see and retrogen the first ore but it ignores the rest of them.

,
"cinnabar": {
"template": "uniform",
"block": "Thaumcraft:blockCustomOre",
"metadata": 0, 1, 2, 3, 4, 5, 6, 7,
"material": "minecraft:stone",
"clusterSize": 16,
"numClusters": 20,
"minHeight": 10,
"maxHeight": 128,
"retrogen": "true",
"biomeRestriction": "none",
"biomes": [],
"dimensionRestriction": "blacklist",
"dimensions": [
-1
]
}

I couldn't even get it to add that until I added the metadata field not quite sure how to add multiple metadata and no matter what it ignores the other seven ores.
 

SolManX

New Member
Jul 29, 2019
987
-1
1
Just from first principles, a list of numbers is probably supposed to be an array so you might try changing that line to ...

"metadata": [0, 1, 2, 3, 4, 5, 6, 7],

Just a guess though, as I don't know how COFH works.
 

SevenMass

Well-Known Member
Jan 2, 2013
283
137
69
The Netherlands
cinnabar is specifically Thaumcraft:blockCustomOre:0
The other metadata's are for the infused stone shards.

try the following instead; one entry per ore:
Code:
{
  "Cinnabar": {
  "template": "uniform",
  "block": {"name": "Thaumcraft:blockCustomOre", "metadata": 0},
  "clusterSize": 1,
  "numClusters": 4,
  "chunkChance": 1,
  "minHeight": 20,
  "maxHeight": 60,
  "retrogen": "true",
  "biomeRestriction": "none",
  "biomes": [
  "all"
  ],
  "dimensionRestriction": "blacklist",
  "dimensions": [
  -1,
  1
  ]
  },
  "AirInfStone": {
  "template": "uniform",
  "block": {"name": "Thaumcraft:blockCustomOre", "metadata": 1},
  "clusterSize": 4,
  "numClusters": 4,
  "chunkChance": 1,
  "minHeight": 20,
  "maxHeight": 60,
  "retrogen": "true",
  "biomeRestriction": "none",
  "biomes": [
  "all"
  ],
  "dimensionRestriction": "blacklist",
  "dimensions": [
  -1,
  1
  ]
  },
  "FireInfStone": {
  "template": "uniform",
  "block": {"name": "Thaumcraft:blockCustomOre", "metadata": 2},
  "clusterSize": 4,
  "numClusters": 4,
  "chunkChance": 1,
  "minHeight": 20,
  "maxHeight": 60,
  "retrogen": "true",
  "biomeRestriction": "none",
  "biomes": [
  "all"
  ],
  "dimensionRestriction": "blacklist",
  "dimensions": [
  -1,
  1
  ]
  },
  "WaterInfStone": {
  "template": "uniform",
  "block": {"name": "Thaumcraft:blockCustomOre", "metadata": 3},
  "clusterSize": 4,
  "numClusters": 4,
  "chunkChance": 1,
  "minHeight": 20,
  "maxHeight": 60,
  "retrogen": "true",
  "biomeRestriction": "none",
  "biomes": [
  "all"
  ],
  "dimensionRestriction": "blacklist",
  "dimensions": [
  -1,
  1
  ]
  },
  "EarthInfStone": {
  "template": "uniform",
  "block": {"name": "Thaumcraft:blockCustomOre", "metadata": 4},
  "clusterSize": 4,
  "numClusters": 4,
  "chunkChance": 1,
  "minHeight": 20,
  "maxHeight": 60,
  "retrogen": "true",
  "biomeRestriction": "none",
  "biomes": [
  "all"
  ],
  "dimensionRestriction": "blacklist",
  "dimensions": [
  -1,
  1
  ]
  },
  "OrderInfStone": {
  "template": "uniform",
  "block": {"name": "Thaumcraft:blockCustomOre", "metadata": 5},
  "clusterSize": 4,
  "numClusters": 4,
  "chunkChance": 1,
  "minHeight": 20,
  "maxHeight": 60,
  "retrogen": "true",
  "biomeRestriction": "none",
  "biomes": [
  "all"
  ],
  "dimensionRestriction": "blacklist",
  "dimensions": [
  -1,
  1
  ]
  },
  "EntropyInfStone": {
  "template": "uniform",
  "block": {"name": "Thaumcraft:blockCustomOre", "metadata": 6},
  "clusterSize": 4,
  "numClusters": 4,
  "chunkChance": 1,
  "minHeight": 20,
  "maxHeight": 60,
  "retrogen": "true",
  "biomeRestriction": "none",
  "biomes": [
  "all"
  ],
  "dimensionRestriction": "blacklist",
  "dimensions": [
  -1,
  1
  ]
  },
  "AmberStone": {
  "template": "uniform",
  "block": {"name": "Thaumcraft:blockCustomOre", "metadata": 7},
  "clusterSize": 1,
  "numClusters": 4,
  "chunkChance": 1,
  "minHeight": 20,
  "maxHeight": 60,
  "retrogen": "true",
  "biomeRestriction": "none",
  "biomes": [
  "all"
  ],
  "dimensionRestriction": "blacklist",
  "dimensions": [
  -1,
  1
  ]
  }
}

You can change the variables such as clusterSize to whatever, it s the structure that matters.