1.7.10 moving forward to v1.1.0!
This commit is contained in:
parent
1778cfa737
commit
a92efa364d
51 changed files with 849 additions and 175 deletions
|
@ -9,6 +9,7 @@ public class AltarUpgradeComponent
|
|||
private int displacementUpgrades;
|
||||
private int altarCapacitiveUpgrades;
|
||||
private int orbCapacitiveUpgrades;
|
||||
private int betterCapacitiveUpgrades;
|
||||
|
||||
public AltarUpgradeComponent()
|
||||
{
|
||||
|
@ -19,6 +20,7 @@ public class AltarUpgradeComponent
|
|||
displacementUpgrades = 0;
|
||||
altarCapacitiveUpgrades = 0;
|
||||
orbCapacitiveUpgrades = 0;
|
||||
betterCapacitiveUpgrades = 0;
|
||||
}
|
||||
|
||||
public void addSpeedUpgrade()
|
||||
|
@ -55,6 +57,11 @@ public class AltarUpgradeComponent
|
|||
{
|
||||
orbCapacitiveUpgrades++;
|
||||
}
|
||||
|
||||
public void addBetterCapacitiveUpgrade()
|
||||
{
|
||||
betterCapacitiveUpgrades++;
|
||||
}
|
||||
|
||||
public int getSpeedUpgrades()
|
||||
{
|
||||
|
@ -90,4 +97,9 @@ public class AltarUpgradeComponent
|
|||
{
|
||||
return this.orbCapacitiveUpgrades;
|
||||
}
|
||||
|
||||
public int getBetterCapacitiveUpgrades()
|
||||
{
|
||||
return this.betterCapacitiveUpgrades;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -189,6 +189,10 @@ public class UpgradedAltars
|
|||
case 7:
|
||||
upgrades.addorbCapacitiveUpgrade();
|
||||
break;
|
||||
|
||||
case 8:
|
||||
upgrades.addBetterCapacitiveUpgrade();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue