v0.3.1: adjusted etheral chains' recharge speed to accomodate new target charge.

This commit is contained in:
Evan Debenham 2015-08-17 23:16:34 -04:00 committed by Evan Debenham
parent ddabd4facb
commit 65fa397a6c

View File

@ -207,7 +207,7 @@ public class EtherealChains extends Artifact {
public boolean act() { public boolean act() {
int chargeTarget = 5+(level*2); int chargeTarget = 5+(level*2);
if (!cursed && charge < chargeTarget) { if (!cursed && charge < chargeTarget) {
partialCharge += 1 / (40f - (chargeTarget - charge)*3f); partialCharge += 1 / (40f - (chargeTarget - charge)*2f);
} else if (cursed && Random.Int(100) == 0){ } else if (cursed && Random.Int(100) == 0){
Buff.prolong( target, Roots.class, 3f); Buff.prolong( target, Roots.class, 3f);
Buff.prolong( target, Cripple.class, 9f); Buff.prolong( target, Cripple.class, 9f);