1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-25 19:17:45 +00:00
This commit is contained in:
collett 2020-04-11 05:00:41 +09:00
parent 8262ebd4e9
commit 47d2bb2ef7
2 changed files with 6 additions and 1 deletions

View file

@ -84,7 +84,6 @@ bool Action::Action::init()
auto actionCategory = static_cast< Common::ActionCategory >( m_actionData->actionCategory );
if( actionCategory == Common::ActionCategory::Spell || actionCategory == Common::ActionCategory::Weaponskill )
{
auto haste = m_pSource->getStatValue( Common::BaseParam::Haste );
m_castTimeMs = static_cast< uint32_t >( m_castTimeMs * ( m_pSource->getStatValue( Common::BaseParam::Haste ) / 100.0f ) );
}

View file

@ -3534,10 +3534,16 @@ ActionLut::StatusEffectTable ActionLut::m_statusEffectTable =
//Sheltron, シェルトロン: BlockParryRateBonus, block 100%, parry 0%
{ 1856, { 14, 0, 100, 0, 0 } },
//Blood Weapon, ブラッドウェポン: MPRestorePerGCD, 6%
{ 742, { 15, 6, 0, 0, 0 } },
//Delirium, ブラッドデリリアム: MPRestorePerGCD, 2%
{ 1972, { 15, 2, 7392, 7391, 0 } },
//Meikyo Shisui, 明鏡止水: AlwaysCombo, 3 uses
{ 1233, { 16, 3, 0, 0, 0 } },
//Shifu, 士風: Haste, 13%
{ 1299, { 12, 13, 0, 0, 0 } },
};