Item Aspects
Modtweaker’s Thaumcraft integration extends IItemStacks.
That means that you can use the methods below on any IItemStack object:
Set aspects
You can use this to override what aspects an item would normally have.
Requires a CTAspectStack[] or many CTAspectStack objects.
<minecraft:stone>.setAspects(<aspect:ignis>*5);
Remove aspects
You can use this to prevent certain aspects from being added to an item.
Requires a CTAspectStack[] or many CTAspectStack objects.
<minecraft:iron_ore>.removeAspects(<aspect:terra>);