v0.6.3b: nerfed glyph of obfuscation

This commit is contained in:
Evan Debenham 2018-02-28 21:59:46 -05:00
parent c471cc6b96
commit 4f654f1bec
2 changed files with 2 additions and 2 deletions

View File

@ -1298,7 +1298,7 @@ public class Hero extends Char {
int stealth = super.stealth();
if (belongings.armor != null && belongings.armor.hasGlyph(Obfuscation.class)){
stealth += belongings.armor.level();
stealth += 1 + belongings.armor.level()/3;
}
return stealth;
}

View File

@ -578,7 +578,7 @@ public class DriedRose extends Artifact {
int stealth = super.stealth();
if (rose != null && rose.armor != null && rose.armor.hasGlyph(Obfuscation.class)){
stealth += rose.armor.level();
stealth += 1 + rose.armor.level()/3;
}
return stealth;