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