Merge pull request #490 from Arcaratus/1.8-Rewrite

Finished the Altar
This commit is contained in:
Nick Ignoffo 2015-11-03 07:35:50 -08:00
commit 081698c6f9
10 changed files with 415 additions and 65 deletions

View file

@ -18,6 +18,19 @@ public class AltarUpgrade {
}
public AltarUpgrade(int speedCount, int efficiencyCount, int sacrificeCount, int selfSacrificeCount, int displacementCount, int capacityCount, int orbCapacityCount, int betterCapacityCount, int accelerationCount)
{
this.speedCount = speedCount;
this.efficiencyCount = efficiencyCount;
this.sacrificeCount = sacrificeCount;
this.selfSacrificeCount = selfSacrificeCount;
this.displacementCount = displacementCount;
this.capacityCount = capacityCount;
this.orbCapacityCount = orbCapacityCount;
this.betterCapacityCount = betterCapacityCount;
this.accelerationCount = accelerationCount;
}
// Adders
public AltarUpgrade addSpeed() {

View file

@ -0,0 +1,5 @@
package WayofTime.bloodmagic.api.iface;
public interface IAltarReader
{
}