2025-05-15
Av Latta Magicka v1.25で気になったところ。
- Destruction Skill Perks
- Apprentice: Fire, Frost and Shock spells can deal up to 20% more damage based an target's missing Health, Fatigue or Magicka percentage.
- Journeyman: Elemental Destruction spells have a chance to cause recoil on impact.
- Expert: Unlocks special impact effects from elemental Destruction spells.
- Master: Each hit with Destruction spells applies 10 seconds 15% Weakness to Magic effect on target. Stacks up to 3 times.
ただし、下記条件の魔法を詠唱すると自分に対してWeakness to Magicが発動してしまう。
Av Latta Magicka.esm
内のスクリプト almHandlerMagicApplySpell
には、Disintegrate WeaponとElemental Weaponに関する処理に記述ミスがある。
;===========Disintegrate Weapon if code == GetMECode DIWE if HasMagicEffect WEFI || HasMagicEffect WEFR || HasMagicEffect WESH if GetAVCurrentF almAVDamageBonusFire > 0 Call almFnDealDamage target caster (GetAVCurrentF almAVDamageBonusFire) 2 endif if GetAVCurrentF almAVDamageBonusFrost > 0 Call almFnDealDamage target caster (GetAVCurrentF almAVDamageBonusFrost) 3 endif if GetAVCurrentF almAVDamageBonusFire > 0 Call almFnDealDamage target caster (GetAVCurrentF almAVDamageBonusShock) 4 endif if caster == PlayerRef Call almFnMessageBig "Menus\Class\Attributes\load_image_alteration.dds" "Spell Combination: Meltdown%r%rDisintegrate Weapon effect causes Fire, Frost or Shock Weapons to become unstable and backfire on wielder." endif endif break endif
if GetAVCurrentF almAVDamageBonusFire > 0 Call almFnDealDamage target caster (GetAVCurrentF almAVDamageBonusShock) 4 endif
たぶん、上記if文の almAVDamageBonusFire
は almAVDamageBonusShock
が正しい。
if GetAVCurrentF almAVDamageBonusShock > 0 Call almFnDealDamage target caster (GetAVCurrentF almAVDamageBonusShock) 4 endif