V0.2.0c : Reduced Horn of Plenty scaling slightly

This commit is contained in:
Evan Debenham 2014-09-21 23:57:50 -04:00
parent 8febc963e5
commit 2198e5e3b7

View File

@ -146,9 +146,9 @@ public class HornOfPlenty extends Artifact {
public boolean act() { public boolean act() {
if (charge < chargeCap) { if (charge < chargeCap) {
//generates 0.2 food value every round, +0.02 value per level //generates 0.2 food value every round, +0.01667 value per level
//to a max of 0.8 food value per round (0.2+0.6, at level 30) //to a max of ~0.7 food value per round (0.2+~0.5, at level 30)
partialCharge += 0.2f + (0.02f*level); partialCharge += 0.2f + (0.01667f*level);
//charge is in increments of 36 food value. //charge is in increments of 36 food value.
if (partialCharge >= 36) { if (partialCharge >= 36) {