v0.4.1: glyph of stone now increases min dr.
This commit is contained in:
parent
9c992a9c07
commit
a26d7030a5
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user