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

Entity Aspects

Modtweaker’s Thaumcraft integration extends IEntityDefinition.
That means that you can use the methods below on any IEntityDefinition object:

Set aspects

You can use this to override what aspects an entity would normally have.
Requires a CTAspectStack[] or many CTAspectStack objects.

script.zs
<entity:sheep>.setAspects(<aspect:terra>*5);

Remove aspects

You can use this to prevent certain aspects from being added to an entity.
Requires a CTAspectStack[] or many CTAspectStack objects.

script.zs
<entity:blaze>.removeAspects(<aspect:ignis>);