When Sinclair uses "Lycan Curse" with "Audiance Participation" the abilities "Go for the Throat", "Mauling leap" and "Tail Whack" do not share ability upgrades or imbues with "Vexing Bolt", "Spectral assistant" and "Rabbit Hex", making Lycan Curse significantly weaker when Sinclair uses it.
I have created a fix that simply makes Lycan Curse abilities Inherit the imbues, it also attempts to inherit Ability upgrades but this only appears to function for Rabbit Hex (I believe due to the "triggers" of Vexing Bolt and Spectral Assistant causing issues). A copy of abilities.vsnd_c and abilities.vsnd with the changes will be linked.
This is added to "Audiance Participation":
m_mapDependentAbilities =
{
ability_werewolf_frenzy = null
ability_werewolf_maulingleap = null
ability_werewolf_cripplingslash = null
}
This is added to "Vexing Bolt", replacing the original m_mapDependentAbilities:
m_mapDependentAbilities =
{
ability_magician_magicbolt_trigger = null
ability_werewolf_frenzy =
{
m_eFlags = "LinkImbues | LinkUpgrades"
}
}
This is added to "Spectral Assistant", replacing the original m_mapDependentAbilities:
m_mapDependentAbilities =
{
ability_magician_cloneturret_trigger = null
ability_werewolf_maulingleap =
{
m_eFlags = "LinkImbues | LinkUpgrades"
}
}
This is added to "Rabbit Hex":
m_mapDependentAbilities =
{
ability_werewolf_cripplingslash =
{
m_eFlags = "LinkImbues | LinkUpgrades"
}
}
I have created a fix that simply makes Lycan Curse abilities Inherit the imbues, it also attempts to inherit Ability upgrades but this only appears to function for Rabbit Hex (I believe due to the "triggers" of Vexing Bolt and Spectral Assistant causing issues). A copy of abilities.vsnd_c and abilities.vsnd with the changes will be linked.
This is added to "Audiance Participation":
m_mapDependentAbilities =
{
ability_werewolf_frenzy = null
ability_werewolf_maulingleap = null
ability_werewolf_cripplingslash = null
}
This is added to "Vexing Bolt", replacing the original m_mapDependentAbilities:
m_mapDependentAbilities =
{
ability_magician_magicbolt_trigger = null
ability_werewolf_frenzy =
{
m_eFlags = "LinkImbues | LinkUpgrades"
}
}
This is added to "Spectral Assistant", replacing the original m_mapDependentAbilities:
m_mapDependentAbilities =
{
ability_magician_cloneturret_trigger = null
ability_werewolf_maulingleap =
{
m_eFlags = "LinkImbues | LinkUpgrades"
}
}
This is added to "Rabbit Hex":
m_mapDependentAbilities =
{
ability_werewolf_cripplingslash =
{
m_eFlags = "LinkImbues | LinkUpgrades"
}
}