Skip to content

Commit

Permalink
Reduced used energy per damage
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethryan committed Oct 31, 2024
1 parent ad65cf0 commit 1a2b5c0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public ItemElectricVoidwalkerBoots(final ArmorMaterial material, final int j, fi
protected void setBootsData() {
super.setBootsData();
maxCharge = 100_000;
energyPerDamage = 500; // allows for 2k hits 2x more than base electric (for this mod)
energyPerDamage = 100; // allows for 2k hits 2x more than base electric (for this mod)
runicCharge = 0;
visDiscount = 5 + 2; // voidwalker + electric discount
provideEnergy = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public ItemNanoVoidwalkerBoots(final ArmorMaterial material, final int j, final
protected void setBootsData() {
super.setBootsData();
maxCharge = 1_000_000;
energyPerDamage = 2_500; // allows for 4k hits 2x more than base nano, 2x more than prev (for this mod)
energyPerDamage = 500; // allows for 4k hits 2x more than base nano, 2x more than prev (for this mod)
visDiscount = 5 + 4; // voidwalker + nano discount
damageAbsorptionRatio = 2.75D;
transferLimit = 2_400;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public ItemQuantumVoidwalkerBoots(final ArmorMaterial material, final int j, fin
protected void setBootsData() {
super.setBootsData();
maxCharge = 10_000_000;
energyPerDamage = 12_500; // allows for 8k hits 2x more than base quantum, 2x more than prev (for this mod)
energyPerDamage = 2_500; // allows for 8k hits 2x more than base quantum, 2x more than prev (for this mod)
visDiscount = 5 + 5; // voidwalker + quantum discount
damageAbsorptionRatio = 3.0D;
transferLimit = 24_000;
Expand Down

0 comments on commit 1a2b5c0

Please sign in to comment.