Skip to content
Carmina16 edited this page Apr 23, 2018 · 29 revisions

Weapons

Bows

The bow attack is possible every (256-pc.attr[SPEED])/16+4 frames.

Bashing

If the melee attack didn't affect any targets, and one of 8 neighboring threatened cells contain a chest or a door, the bashing is performed.

(to do)

Arrows and spells

The speed of arrows and spells is 100 units/frame. Two collision checks are made per frame, for 50 and 100 unit distance.

The arrows and spells exist for 30 frames.

The spell projectiles have a light radius of 500.

Armor class

The armor class is separate for each of 7 paperdoll slots. It is calculated as the sum of the corresponding item AC, shield AC if the shield covers the corresponding slot, and any AC-affecting items the (N)PC has equipped.

7-item byte arrays for each shield type are located @45159, @45160, @45168, and @4516F. If the corresponding element is non-zero, the shield AC is added.

Hit chance

Successful attacks break the invisibility for 20 frames.

(to do)

Critical hit

Critical hit is an x3 multiplier. It's chances are:

Thieves: 2%/level if no ranged weapon equipped (ranged weapons include daggers for some reason) Assassins: 3%/level Monks: 3%/(level*2) Archers: 3%/level if a ranged weapon equipped Everyone else who has Critical hit: 1%/level, no ranged weapon.

Damage modifiers

Weapons

Unarmored damage depends on the equipped gauntlets type. It is stored in pairs are 6-byte array @475FC.

The primary damage lies in the minDamage .. (maxDamage - 1) range. (That is probably a bug.)

If a weapon is equipped, a racial bonus is added:

  • Dark elves: npc.level/4
  • Redguards: npc.level/3 if a ranged weapon equipped (see above). (That is probably a bug.)
  • Wood elves: npc.level/3 if no ranged weapon equipped.

For rangers, their npc.level+1 is added, if the target is not undead. (This is broken in the original game.)

Undead monsters are the seven from the list @47624.

If the target is undead, and the weapon is silver, the damage is doubled.

The damage at this point is used to calculate the weapon degradation.

If the target is a Skeleton, and the weapon is in blade/axe/bow family, the damage is halved.

The damage at this point is used to calculate the target's armor degradation.

If the weapon is Volendrung or the Auriel's Bow, the damage is tripled.

If the weapon is Volendrung and the target is not a Knight, the target is paralyzed for 10 minutes (?), and the weapon's health is decreased by 800.

If the weapon is Ebony Blade, the half of the damage is added to the player.

Item degradation

(to do)

From bashing

(to do)

Clone this wiki locally