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