v0.6.3b: nerfed glyph of obfuscation
This commit is contained in:
parent
c471cc6b96
commit
4f654f1bec
|
@ -1298,7 +1298,7 @@ public class Hero extends Char {
|
||||||
int stealth = super.stealth();
|
int stealth = super.stealth();
|
||||||
|
|
||||||
if (belongings.armor != null && belongings.armor.hasGlyph(Obfuscation.class)){
|
if (belongings.armor != null && belongings.armor.hasGlyph(Obfuscation.class)){
|
||||||
stealth += belongings.armor.level();
|
stealth += 1 + belongings.armor.level()/3;
|
||||||
}
|
}
|
||||||
return stealth;
|
return stealth;
|
||||||
}
|
}
|
||||||
|
|
|
@ -578,7 +578,7 @@ public class DriedRose extends Artifact {
|
||||||
int stealth = super.stealth();
|
int stealth = super.stealth();
|
||||||
|
|
||||||
if (rose != null && rose.armor != null && rose.armor.hasGlyph(Obfuscation.class)){
|
if (rose != null && rose.armor != null && rose.armor.hasGlyph(Obfuscation.class)){
|
||||||
stealth += rose.armor.level();
|
stealth += 1 + rose.armor.level()/3;
|
||||||
}
|
}
|
||||||
|
|
||||||
return stealth;
|
return stealth;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user