v0.3.2: balance / polish pass on elemental embers quest

This commit is contained in:
Evan Debenham 2015-10-20 01:45:45 -04:00 committed by Evan Debenham
parent 82cb22f1bf
commit fc921f748c
2 changed files with 8 additions and 4 deletions

View File

@ -37,7 +37,7 @@ public class NewbornElemental extends Elemental {
defenseSkill = 12; defenseSkill = 12;
EXP = 4; EXP = 7;
loot = new Embers(); loot = new Embers();
lootChance = 1f; lootChance = 1f;
@ -46,7 +46,7 @@ public class NewbornElemental extends Elemental {
@Override @Override
public int damageRoll() { public int damageRoll() {
return super.damageRoll()/2; return super.damageRoll()/2;
} } //8-10
@Override @Override
public void add(Buff buff) { public void add(Buff buff) {
@ -59,6 +59,10 @@ public class NewbornElemental extends Elemental {
@Override @Override
public String description() { public String description() {
return "young fire elemental"; //TODO return "Fire elementals are a byproduct of summoning greater entities. " +
"They are too chaotic in their nature to be controlled by even the most powerful demonologist.\n\n" +
"This fire elemental is freshy summoned, and is waekened as a result. " +
"In this state is it especially vulnerable to the cold. " +
"Its offensive capabilities are still great though, caution is advised.";
} }
} }

View File

@ -46,7 +46,7 @@ public class Embers extends Item {
@Override @Override
public String info() { public String info() {
return return
"ember"; //TODO "Special embers which can only be harvested from young fire elementals. They radiate thermal energy.";
} }
@Override @Override