content updates

This commit is contained in:
sainagh
2026-02-11 18:42:38 -06:00
parent 45ccc16c43
commit c6137e9101
659 changed files with 32161 additions and 5105 deletions
+15
View File
@@ -0,0 +1,15 @@
#priority 20
#loader crafttweaker lateAddTC
import native.com.blamejared.compat.thaumcraft.handlers.ThaumCraft;
import native.thaumcraft.api.ThaumcraftApiHelper;
import crafttweaker.item.IItemStack;
import thaumcraft.aspect.CTAspectStack;
/*
Easily make a vis crystal for a specified aspect. Stack returned is size 1.
*/
global makeVisCrystal as function(CTAspectStack)IItemStack = function (aspect as CTAspectStack) as IItemStack {
return ThaumcraftApiHelper.makeCrystal(ThaumCraft.getAspect(aspect)).wrapper;
};