Potential fix for Zephyr ritual dupe bug, some adjustments to rendering of a fancy new health bar.
This commit is contained in:
parent
8315dcf864
commit
ca74a33a12
8 changed files with 110 additions and 38 deletions
|
@ -0,0 +1,24 @@
|
|||
package WayofTime.alchemicalWizardry.common.omega;
|
||||
|
||||
import WayofTime.alchemicalWizardry.api.alchemy.energy.ReagentRegistry;
|
||||
import WayofTime.alchemicalWizardry.common.items.armour.OmegaArmour;
|
||||
|
||||
public class OmegaParadigmEarth extends OmegaParadigm
|
||||
{
|
||||
public OmegaParadigmEarth(OmegaArmour helmet, OmegaArmour chestPiece, OmegaArmour leggings, OmegaArmour boots)
|
||||
{
|
||||
super(ReagentRegistry.terraeReagent, helmet, chestPiece, leggings, boots, new ReagentRegenConfiguration(50, 10, 100));
|
||||
}
|
||||
|
||||
// @Override
|
||||
// public float getCostPerTickOfUse(EntityPlayer player)
|
||||
// {
|
||||
// if(player.isInWater())
|
||||
// {
|
||||
// return 0.5f;
|
||||
// }else
|
||||
// {
|
||||
// return 1;
|
||||
// }
|
||||
// }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue