v0.7.2: ring of wealth adjustments:

- wraiths no longer progress special wealth drops
- wealth no longer drops scroll of enchantment, to prevent exploits
This commit is contained in:
Evan Debenham 2019-02-20 13:18:55 -05:00
parent d23ad85596
commit b5edad2b2e
2 changed files with 3 additions and 1 deletions

View File

@ -46,6 +46,8 @@ public class Wraith extends Mob {
HP = HT = 1; HP = HT = 1;
EXP = 0; EXP = 0;
maxLvl = -2;
flying = true; flying = true;
properties.add(Property.UNDEAD); properties.add(Property.UNDEAD);

View File

@ -217,7 +217,7 @@ public class RingOfWealth extends Ring {
case 0: default: case 0: default:
return new StoneOfEnchantment(); return new StoneOfEnchantment();
case 1: case 1:
return new ScrollOfEnchantment(); return new StoneOfEnchantment().quantity(2);
case 2: case 2:
return new PotionOfExperience(); return new PotionOfExperience();
case 3: case 3: