Merge pull request #106 from hppeng-wynn/atree_hotfix
fixed cheaper tp 2 to actually be for tp
This commit is contained in:
commit
7522fe4b5a
3 changed files with 3 additions and 5 deletions
|
@ -1882,8 +1882,6 @@ const atrees = {
|
|||
{
|
||||
"display_name": "Phantom Ray",
|
||||
"desc": "Condense Arrow Storm into a single ray that damages enemies 10 times per second",
|
||||
"archetype": "Sharpshooter",
|
||||
"archetype_req": 0,
|
||||
"base_abil": "Arrow Storm",
|
||||
"parents": ["Water Mastery", "Fire Creep"],
|
||||
"dependencies": ["Arrow Storm"],
|
||||
|
@ -4826,7 +4824,7 @@ const atrees = {
|
|||
"effects": [
|
||||
{
|
||||
"type": "add_spell_prop",
|
||||
"base_spell": 4,
|
||||
"base_spell": 2,
|
||||
"cost": -5
|
||||
}
|
||||
]
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
|||
|
||||
|
||||
const classDefenseMultipliers = new Map([ ["relik",0.50], ["bow",0.60], ["wand", 0.80], ["dagger", 1.0], ["spear",1.20], ["sword", 1.10]]);
|
||||
const classDefenseMultipliers = new Map([ ["relik",0.50], ["bow",0.60], ["wand", 0.80], ["dagger", 1.0], ["spear",1.0], ["sword", 1.10]]);
|
||||
|
||||
/*
|
||||
* Class that represents a wynn player's build.
|
||||
|
|
Loading…
Reference in a new issue