Testing the creation of hell
This commit is contained in:
parent
796e75b1f9
commit
a2b006105e
2587 changed files with 0 additions and 129617 deletions
|
@ -1,105 +0,0 @@
|
|||
package WayofTime.alchemicalWizardry.common.bloodAltarUpgrade;
|
||||
|
||||
public class AltarUpgradeComponent
|
||||
{
|
||||
private int speedUpgrades;
|
||||
private int efficiencyUpgrades;
|
||||
private int sacrificeUpgrades;
|
||||
private int selfSacrificeUpgrades;
|
||||
private int displacementUpgrades;
|
||||
private int altarCapacitiveUpgrades;
|
||||
private int orbCapacitiveUpgrades;
|
||||
private int betterCapacitiveUpgrades;
|
||||
|
||||
public AltarUpgradeComponent()
|
||||
{
|
||||
speedUpgrades = 0;
|
||||
efficiencyUpgrades = 0;
|
||||
sacrificeUpgrades = 0;
|
||||
selfSacrificeUpgrades = 0;
|
||||
displacementUpgrades = 0;
|
||||
altarCapacitiveUpgrades = 0;
|
||||
orbCapacitiveUpgrades = 0;
|
||||
betterCapacitiveUpgrades = 0;
|
||||
}
|
||||
|
||||
public void addSpeedUpgrade()
|
||||
{
|
||||
speedUpgrades++;
|
||||
}
|
||||
|
||||
public void addEfficiencyUpgrade()
|
||||
{
|
||||
efficiencyUpgrades++;
|
||||
}
|
||||
|
||||
public void addSacrificeUpgrade()
|
||||
{
|
||||
sacrificeUpgrades++;
|
||||
}
|
||||
|
||||
public void addSelfSacrificeUpgrade()
|
||||
{
|
||||
selfSacrificeUpgrades++;
|
||||
}
|
||||
|
||||
public void addDisplacementUpgrade()
|
||||
{
|
||||
displacementUpgrades++;
|
||||
}
|
||||
|
||||
public void addaltarCapacitiveUpgrade()
|
||||
{
|
||||
altarCapacitiveUpgrades++;
|
||||
}
|
||||
|
||||
public void addorbCapacitiveUpgrade()
|
||||
{
|
||||
orbCapacitiveUpgrades++;
|
||||
}
|
||||
|
||||
public void addBetterCapacitiveUpgrade()
|
||||
{
|
||||
betterCapacitiveUpgrades++;
|
||||
}
|
||||
|
||||
public int getSpeedUpgrades()
|
||||
{
|
||||
return speedUpgrades;
|
||||
}
|
||||
|
||||
public int getEfficiencyUpgrades()
|
||||
{
|
||||
return efficiencyUpgrades;
|
||||
}
|
||||
|
||||
public int getSacrificeUpgrades()
|
||||
{
|
||||
return sacrificeUpgrades;
|
||||
}
|
||||
|
||||
public int getSelfSacrificeUpgrades()
|
||||
{
|
||||
return selfSacrificeUpgrades;
|
||||
}
|
||||
|
||||
public int getDisplacementUpgrades()
|
||||
{
|
||||
return displacementUpgrades;
|
||||
}
|
||||
|
||||
public int getAltarCapacitiveUpgrades()
|
||||
{
|
||||
return this.altarCapacitiveUpgrades;
|
||||
}
|
||||
|
||||
public int getOrbCapacitiveUpgrades()
|
||||
{
|
||||
return this.orbCapacitiveUpgrades;
|
||||
}
|
||||
|
||||
public int getBetterCapacitiveUpgrades()
|
||||
{
|
||||
return this.betterCapacitiveUpgrades;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue