Thaumcraft NBT Data Issues.
JustLiam040 opened this issue ยท 4 comments
So im trying to create a modpack centered around using a combination of ex nihilo/thaumcraft to get resources. I have used content tweaker to create crushed arcane stone which can be sieved, this works fine when i set it to something simple such as emeralds etc, however i of course want to set it to farm the primal vis crystals. These crystals seem to identify via nbt data and tags; eg.
Aspects: {
[0] {
amount:1
key "aer"
}
}
My question is, how would i go about adding this to a drop from a sieve, ive only ever seen one thread stating NBT data can be used however this seemed to break the JSON and stop me using the sieve altogether, any help would be much appreciated!
That particular example is breaking because you are using nested quotations.
The actual way you'll want to do it is something like so:
{
"drop": {
"name": "thaumcraft:crystal_essence",
"nbt": "{Aspects:[{amount: 1, key: 'perditio'}]}"
},
"chance": 0.75,
"meshLevel": 1
}
Use /enhandnbt while holding the item to get the exact string to past into the "nbt" tag.
Sorry to comment again, the post was closed before i woke up so i was unable to read your reply. I chucked all of that into the thread and the sieve is still useable etc. However instead of giving me the crystals ive specified it seems to give me between 4-6 of any of the thaumcraft crystals, so now not only is it ignoring the key we have put in, it is now just giving me random amounts?