v0.2.3: Sandals of nature buffed (in anticipation of nerfs to potion farming)

This commit is contained in:
Evan Debenham 2014-11-28 16:26:31 -05:00
parent a0617572bb
commit dfff62ef05

View File

@ -175,8 +175,9 @@ public class SandalsOfNature extends Artifact {
public class Naturalism extends ArtifactBuff{
public void charge() {
if (charge < 25*level){
charge++;
if (charge < target.HT){
//gain 1+(1*level)% of the difference between current charge and max HP.
charge+= (Math.round( (target.HT-charge) * (.01+ level*0.01) ));
}
}
}