v0.2.4: added more items to shops, tweaked several item prices.

This commit is contained in:
Evan Debenham
2015-02-09 22:32:59 -05:00
parent f0df50d42f
commit 78b4f36ccf
12 changed files with 92 additions and 43 deletions
@@ -230,9 +230,9 @@ public class Artifact extends KindofMisc {
@Override
public int price() {
int price = 200;
int price = 100;
if (level > 0)
price += 30*((level*10)/levelCap);
price += 50*((level*10)/levelCap);
if (cursed && cursedKnown) {
price /= 2;
}