[Crossfire-wiki] [Crossfire DokuWiki] page changed: skills:melee

no-reply_wiki at metalforge.org no-reply_wiki at metalforge.org
Sun Sep 7 07:15:14 CDT 2014


A page in your DokuWiki was added or changed. Here are the details:

Date        : 2014/09/07 07:15
User        : saru
Edit Summary: working out damage calculations

@@ -3,13 +3,42 @@
  
  A player must be in melee range (adjacent tile) to use these skills.
  
    DPS (Damage per second) = Melee Damage * Character's Attack Speed * Chance to hit (WC/AC)
+ 
  
  ===== Character's Melee Damage =====
  FIXME For each attacktype used:
  
    Melee Damage = Weapon Damage + Item bonus to damage + ?? Characters Damage (Str bonus)??
+ line 1046
+ op->stats.dam += (wc_obj->level-1)/4;
+ 
+ 
+ op->stats.dam += get_dam_bonus(op->stats.Str);
+ 
+    if (op->stats.dam < 1)
+         op->stats.dam = 1;
+ 
+ op->stats.dam += get_dam_bonus(op->stats.Str);
+ 
+ op->stats.dam = op->arch->clone.stats.dam;
+ 
+ line 1417
+ op->stats.dam += tmp->stats.dam*(1+(op->chosen_skill->level/9));
+ 
+ adds 1 + the melee skill level in question (one handed or two handed)/9
+ 
+ damage added from each item
+ from cloak
+ op->stats.dam += (tmp->stats.dam+tmp->magic);
+ 
+ from weapon
+ op->stats.dam += (tmp->stats.dam+tmp->magic);
+ 
+ from bracers
+ op->stats.dam += (tmp->stats.dam+tmp->magic);
+ 
  
  ===== Character's Attack Speed =====
  A character's attack speed in combat is used to calculate the rate of attacks a player makes. It is based on the [[characters:dex]] bonus and the total character load based on [[characters:Carrying_load]] and total load being carried. The minimum weapon speed for a character is 0.05.
  


IP-Address  : 59.167.121.117
Old Revision: http://wiki.metalforge.net/doku.php/skills:melee?rev=1410088642
New Revision: http://wiki.metalforge.net/doku.php/skills:melee

-- 
This mail was generated by DokuWiki at
http://wiki.metalforge.net/



More information about the crossfire-wiki mailing list