Warp (Thaumcraft)
Description
Determines if holding an item or equipping a piece of armor or a bauble gives warp, and how much warp it gives.
Identifier
The identifier mods.thaumcraft.warp will be used as the default on this page.
All Identifiers
Any of these can be used to refer to this compat:
groovy
mods.tc.warp
mods.tc.Warp
mods.thaum.warp
mods.thaum.Warp
mods.thaumcraft.warp/* Used as page default */
mods.thaumcraft.WarpAdding Recipes
Adds Warp to the given item in the format
item,amount:groovymods.thaumcraft.warp.addWarp(ItemStack, int)
Example
groovy
mods.thaumcraft.warp.addWarp(item('minecraft:pumpkin'), 3)Removing Recipes
Removes Warp from the given item:
groovymods.thaumcraft.warp.removeWarp(ItemStack)Removes all registered recipes:
groovymods.thaumcraft.warp.removeAll()
Example
groovy
mods.thaumcraft.warp.removeWarp(item('thaumcraft:void_hoe'))
mods.thaumcraft.warp.removeAll()