v0.3.2: balance tweaks to new warlock effect
This commit is contained in:
parent
c8ce515720
commit
1bc96bda43
|
@ -138,7 +138,7 @@ public abstract class Wand extends Item {
|
||||||
protected void processSoulMark(Char target, int chargesUsed){
|
protected void processSoulMark(Char target, int chargesUsed){
|
||||||
if (target != Dungeon.hero &&
|
if (target != Dungeon.hero &&
|
||||||
Dungeon.hero.subClass == HeroSubClass.WARLOCK &&
|
Dungeon.hero.subClass == HeroSubClass.WARLOCK &&
|
||||||
Random.Float() < .08f + (level*chargesUsed*0.04f)){
|
Random.Float() < .15f + (level*chargesUsed*0.03f)){
|
||||||
SoulMark.prolong(target, SoulMark.class, SoulMark.DURATION);
|
SoulMark.prolong(target, SoulMark.class, SoulMark.DURATION);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user