
I redone where the items/blocsks are stored and how the configs are handled to clean up it and give space. You can change the config line to AWWayofTime if you want to keep the compatibility with old configs. Now you reference the blocks from the ModBlocks and Items from the ModItems.
12 lines
445 B
Java
12 lines
445 B
Java
package thaumcraft.api;
|
|
|
|
/**
|
|
* @author Azanor
|
|
* ItemArmor with this interface will grant a discount to the vis cost of actions the wearer performs with casting wands.
|
|
* The amount returned is the percentage by which the cost is discounted. There is a built-int max discount of 50%, but
|
|
* individual items really shouldn't have a discount more than 5%
|
|
*/
|
|
public interface IVisDiscounter {
|
|
int getVisDiscount();
|
|
}
|