v0.7.0: ties alchemist's toolkit into artifact recharging

This commit is contained in:
Evan Debenham 2018-09-05 17:29:13 -04:00
parent 66e4cf339d
commit f78331ccef

View File

@ -87,6 +87,13 @@ public class AlchemistsToolkit extends Artifact {
return new kitEnergy();
}
@Override
public void charge(Hero target) {
if (charge < chargeCap){
partialCharge += 0.5f;
}
}
public void absorbEnergy( int energy ){
exp += energy;