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