Huh? Is the damage formula different? Cause broadsword has more attack right?
The damage formula...is in fact different!
Swords:
Code:
Attack = Weapon Attack + (0..(Weapon Attack)/8))
M = (Level*Strength)/128 + 2
Defense = Defense
Knives:
Code:
Attack = Weapon Attack + (0..3)
M = (Level*Strength)/128 + (Level*Agility)/128 + 2
Defense = Defense
Note, due to a bug, only the first byte of (Level*Agility) is used (see Section
12)
This bug is fixed in the GBA and smartphone version (fun fact, the only knife in the game that worked properly before this was Chicken Knife!) and this makes daggers competitive early on.