v0.4.1: glyph of stone now increases min dr.

This commit is contained in:
Evan Debenham 2016-07-19 04:35:37 -04:00 committed by Evan Debenham
parent 9c992a9c07
commit a26d7030a5
2 changed files with 4 additions and 6 deletions

View File

@ -230,6 +230,9 @@ public class Armor extends EquipableItem {
} }
public int DRMin(int lvl){ public int DRMin(int lvl){
if (glyph != null && glyph instanceof Stone)
return 2 + 2*lvl;
else
return lvl; return lvl;
} }

View File

@ -34,11 +34,6 @@ public class Stone extends Armor.Glyph {
return damage; return damage;
} }
@Override
public int tierDRAdjust() {
return 1;
}
@Override @Override
public int tierSTRAdjust() { public int tierSTRAdjust() {
return 1; return 1;