This repository has been archived by the owner on Jun 16, 2021. It is now read-only.
Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Research pages
- Loading branch information
Stanislav Zhukov
committed
Jan 18, 2015
1 parent
21896db
commit 114822e8f64cdbc4c8c8ff8ac91090d729854f94
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Basic Damage | ||
============ | ||
``` | ||
pure_dmg = ((skill + 100) / 2)*(base_dmg / 100) | ||
damage =(pure_dmg - (pure_dmg * DamageResist / 100)) * scale * difficulty | ||
damage_inhead = damage * 2 | ||
``` | ||
**skill** - current weapon skill | ||
**base_dmg** - base weapon damage | ||
**scale** - attacker scale | ||
**DamageResist** - enemy damage resistance | ||
**difficulty** - from 0.5 to 2, where 1 - normal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Health | ||
====== | ||
``` | ||
health = (endurance * 20) + 90 + (level * 10) | ||
``` |