2014-01-17 19:12:49 +00:00
|
|
|
package thaumcraft.api;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Azanor
|
2014-01-17 21:05:38 +00:00
|
|
|
* 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%
|
2014-01-17 19:12:49 +00:00
|
|
|
*/
|
2014-01-17 21:43:13 +00:00
|
|
|
public interface IVisDiscounter
|
|
|
|
{
|
2014-01-17 19:12:49 +00:00
|
|
|
int getVisDiscount();
|
|
|
|
}
|