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:
parent
a222ec64f7
commit
93846eb272
|
@ -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;
|
||||
|
|
|
@ -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 {
|
||||
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ public class ChargrilledMeat extends Food {
|
|||
|
||||
{
|
||||
image = ItemSpriteSheet.STEAK;
|
||||
energy = Hunger.STARVING - Hunger.HUNGRY;
|
||||
energy = Hunger.HUNGRY/2f;
|
||||
hornValue = 1;
|
||||
}
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@ public class FrozenCarpaccio extends Food {
|
|||
|
||||
{
|
||||
image = ItemSpriteSheet.CARPACCIO;
|
||||
energy = Hunger.STARVING - Hunger.HUNGRY;
|
||||
energy = Hunger.HUNGRY/2f;
|
||||
hornValue = 1;
|
||||
}
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ public class MysteryMeat extends Food {
|
|||
|
||||
{
|
||||
image = ItemSpriteSheet.MEAT;
|
||||
energy = Hunger.STARVING - Hunger.HUNGRY;
|
||||
energy = Hunger.HUNGRY/2f;
|
||||
hornValue = 1;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user