v1.1.0: increased ghost hero hp regen to match rose recharge speed
This commit is contained in:
+2
-2
@@ -374,10 +374,10 @@ public class DriedRose extends Artifact {
|
||||
if (ghost != null){
|
||||
defaultAction = AC_DIRECT;
|
||||
|
||||
//heals to full over 1000 turns
|
||||
//heals to full over 500 turns
|
||||
LockedFloor lock = target.buff(LockedFloor.class);
|
||||
if (ghost.HP < ghost.HT && (lock == null || lock.regenOn())) {
|
||||
partialCharge += (ghost.HT / 1000f) * RingOfEnergy.artifactChargeMultiplier(target);
|
||||
partialCharge += (ghost.HT / 500f) * RingOfEnergy.artifactChargeMultiplier(target);
|
||||
updateQuickslot();
|
||||
|
||||
if (partialCharge > 1) {
|
||||
|
||||
Reference in New Issue
Block a user