remove inventory hover text again, buff hybridblast / hastestrike dmg
This commit is contained in:
parent
2c77d035bd
commit
31bfffab26
@ -42,6 +42,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
- Haste
|
||||
- Cooldown reduced to 1T (was 2T)
|
||||
- Duration increased from 2/3/4T -> 3/4/5T
|
||||
- HasteStrike damage multiplier changed from 30% -> 60%
|
||||
|
||||
- Sleep
|
||||
- Cooldown reduced to 2T (was 3T)
|
||||
@ -50,6 +51,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
- Hybrid
|
||||
- Cooldown reduced to 1T (was 3T)
|
||||
- Duration increased from 2/3/4T -> 3/4/5T
|
||||
- HybridBlast damage multiplier changed from 25% -> 50%
|
||||
|
||||
- Silence
|
||||
- Cooldown reduced to 2T (was 3T)
|
||||
|
||||
@ -404,12 +404,9 @@ class Vbox extends preact.Component {
|
||||
return true;
|
||||
}
|
||||
|
||||
const inventoryHover = vbox.bound.length > 1 || vboxSelected[0] ? false : e => hoverInfo(e, 'inventory');
|
||||
|
||||
return (
|
||||
<div class={inventoryClass}
|
||||
onMouseDown={inventoryClick}
|
||||
onMouseOver={inventoryHover}
|
||||
onClick={e => e.stopPropagation()}
|
||||
style={vboxSelecting || (itemUnequip.length) ? { cursor: 'pointer' } : null}>
|
||||
<div class="vbox-hdr">
|
||||
|
||||
@ -830,9 +830,9 @@ impl Skill {
|
||||
Skill::RestrictPlusPlus => 100,
|
||||
|
||||
// Buff base
|
||||
Skill::HybridBlast => 25,
|
||||
Skill::HybridBlast => 50,
|
||||
|
||||
Skill::HasteStrike => 30,
|
||||
Skill::HasteStrike => 60,
|
||||
|
||||
Skill::Intercept=> 80,
|
||||
Skill::InterceptPlus => 110,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user