Anti-comments sweep!
This commit is contained in:
parent
e6a10f3f06
commit
dea1f87078
454 changed files with 23594 additions and 26739 deletions
|
@ -1,20 +1,20 @@
|
|||
package WayofTime.alchemicalWizardry.common.spell.complex.enhancement;
|
||||
|
||||
public class SpellEnhancement
|
||||
public class SpellEnhancement
|
||||
{
|
||||
public static final int POWER = 0;
|
||||
public static final int EFFICIENCY = 1;
|
||||
public static final int POTENCY = 2;
|
||||
|
||||
private int state = this.POWER;
|
||||
|
||||
protected SpellEnhancement(int state)
|
||||
{
|
||||
this.state = state;
|
||||
}
|
||||
|
||||
public int getState()
|
||||
{
|
||||
return this.state;
|
||||
}
|
||||
public static final int POWER = 0;
|
||||
public static final int EFFICIENCY = 1;
|
||||
public static final int POTENCY = 2;
|
||||
|
||||
private int state = this.POWER;
|
||||
|
||||
protected SpellEnhancement(int state)
|
||||
{
|
||||
this.state = state;
|
||||
}
|
||||
|
||||
public int getState()
|
||||
{
|
||||
return this.state;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
package WayofTime.alchemicalWizardry.common.spell.complex.enhancement;
|
||||
|
||||
public class SpellEnhancementCost extends SpellEnhancement
|
||||
public class SpellEnhancementCost extends SpellEnhancement
|
||||
{
|
||||
|
||||
public SpellEnhancementCost()
|
||||
{
|
||||
super(SpellEnhancement.EFFICIENCY);
|
||||
}
|
||||
public SpellEnhancementCost()
|
||||
{
|
||||
super(SpellEnhancement.EFFICIENCY);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
package WayofTime.alchemicalWizardry.common.spell.complex.enhancement;
|
||||
|
||||
public class SpellEnhancementPotency extends SpellEnhancement
|
||||
public class SpellEnhancementPotency extends SpellEnhancement
|
||||
{
|
||||
public SpellEnhancementPotency()
|
||||
{
|
||||
super(SpellEnhancement.POTENCY);
|
||||
}
|
||||
public SpellEnhancementPotency()
|
||||
{
|
||||
super(SpellEnhancement.POTENCY);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
package WayofTime.alchemicalWizardry.common.spell.complex.enhancement;
|
||||
|
||||
public class SpellEnhancementPower extends SpellEnhancement
|
||||
public class SpellEnhancementPower extends SpellEnhancement
|
||||
{
|
||||
|
||||
public SpellEnhancementPower()
|
||||
{
|
||||
super(SpellEnhancement.POWER);
|
||||
}
|
||||
public SpellEnhancementPower()
|
||||
{
|
||||
super(SpellEnhancement.POWER);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue