2016-01-02 22:04:51 -05:00
|
|
|
package WayofTime.bloodmagic.registry;
|
|
|
|
|
|
|
|
import WayofTime.bloodmagic.api.livingArmour.LivingArmourHandler;
|
2016-01-03 15:39:59 -05:00
|
|
|
import WayofTime.bloodmagic.livingArmour.LivingArmourUpgradeDigging;
|
2016-01-03 14:12:55 -05:00
|
|
|
import WayofTime.bloodmagic.livingArmour.LivingArmourUpgradeSpeed;
|
2016-01-03 15:39:59 -05:00
|
|
|
import WayofTime.bloodmagic.livingArmour.StatTrackerDigging;
|
2016-01-02 22:04:51 -05:00
|
|
|
import WayofTime.bloodmagic.livingArmour.StatTrackerMovement;
|
|
|
|
|
|
|
|
public class ModArmourTrackers
|
|
|
|
{
|
|
|
|
public static void init()
|
|
|
|
{
|
|
|
|
LivingArmourHandler.registerStatTracker(StatTrackerMovement.class);
|
2016-01-03 15:39:59 -05:00
|
|
|
LivingArmourHandler.registerStatTracker(StatTrackerDigging.class);
|
2016-01-03 14:12:55 -05:00
|
|
|
|
|
|
|
LivingArmourHandler.registerArmourUpgrade(new LivingArmourUpgradeSpeed(1));
|
2016-01-03 15:39:59 -05:00
|
|
|
LivingArmourHandler.registerArmourUpgrade(new LivingArmourUpgradeDigging(0));
|
2016-01-02 22:04:51 -05:00
|
|
|
}
|
|
|
|
}
|