v0.6.0: adjusted food values:

small food items: 100 to 150
regular food items: 300 (unchanged)
large food items: 400 to 450
going from hungry to starving now takes 50% longer
This commit is contained in:
Evan Debenham 2017-06-03 14:11:08 -04:00
parent a222ec64f7
commit 93846eb272
7 changed files with 8 additions and 6 deletions

View File

@ -38,7 +38,7 @@ public class Hunger extends Buff implements Hero.Doom {
private static final float STEP = 10f;
public static final float HUNGRY = 300f;
public static final float STARVING = 400f;
public static final float STARVING = 450f;
private float level;
private float partialDamage;

View File

@ -45,6 +45,7 @@ import com.watabou.utils.Bundle;
import java.util.ArrayList;
//TODO perhaps adjust leveling mechanics on this to go along with 0.6.0 hunger changes
public class HornOfPlenty extends Artifact {

View File

@ -28,7 +28,7 @@ public class ChargrilledMeat extends Food {
{
image = ItemSpriteSheet.STEAK;
energy = Hunger.STARVING - Hunger.HUNGRY;
energy = Hunger.HUNGRY/2f;
hornValue = 1;
}

View File

@ -43,7 +43,7 @@ public class FrozenCarpaccio extends Food {
{
image = ItemSpriteSheet.CARPACCIO;
energy = Hunger.STARVING - Hunger.HUNGRY;
energy = Hunger.HUNGRY/2f;
hornValue = 1;
}

View File

@ -38,7 +38,7 @@ public class MysteryMeat extends Food {
{
image = ItemSpriteSheet.MEAT;
energy = Hunger.STARVING - Hunger.HUNGRY;
energy = Hunger.HUNGRY/2f;
hornValue = 1;
}

View File

@ -24,11 +24,12 @@ package com.shatteredpixel.shatteredpixeldungeon.items.food;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Hunger;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
//TODO rename this class to small ration in the next update
public class OverpricedRation extends Food {
{
image = ItemSpriteSheet.OVERPRICED;
energy = Hunger.STARVING - Hunger.HUNGRY;
energy = Hunger.HUNGRY/2f;
hornValue = 1;
}

View File

@ -363,7 +363,7 @@ items.food.mysterymeat.not_well=You are not feeling well.
items.food.mysterymeat.stuffed=You are stuffed.
items.food.mysterymeat.desc=Eat at your own risk!
items.food.overpricedration.name=overpriced food ration
items.food.overpricedration.name=small food ration
items.food.overpricedration.eat_msg=That food tasted ok.
items.food.overpricedration.desc=It looks exactly like a standard ration of food but smaller.