Home Getting Started With Scripts Using this wiki Commands CTGUI Global functions Bracket Handlers
Modtweaker

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.

script.zs
<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.

script.zs
<minecraft:iron_ore>.removeAspects(<aspect:terra>);