2014-06-27 23:43:09 +00:00
|
|
|
package WayofTime.alchemicalWizardry.api.items.interfaces;
|
|
|
|
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
|
|
|
public interface ArmourUpgrade
|
|
|
|
{
|
|
|
|
//Called when the armour ticks
|
2015-07-02 15:05:07 +00:00
|
|
|
void onArmourUpdate(World world, EntityPlayer player, ItemStack thisItemStack);
|
2014-06-27 23:43:09 +00:00
|
|
|
|
2015-07-02 15:05:07 +00:00
|
|
|
boolean isUpgrade();
|
2014-06-27 23:43:09 +00:00
|
|
|
|
2015-07-02 15:05:07 +00:00
|
|
|
int getEnergyForTenSeconds();
|
2014-06-27 23:43:09 +00:00
|
|
|
}
|