Gangels show DPS

also, dog
This commit is contained in:
hppeng 2022-07-23 13:32:11 -07:00
parent 3ae9f2725b
commit 19341bdbfc
2 changed files with 45 additions and 17 deletions

View file

@ -392,10 +392,10 @@ const atrees = {
"type": "replace_spell", "type": "replace_spell",
"name": "Guardian Angels", "name": "Guardian Angels",
"base_spell": 4, "base_spell": 4,
"display": "Total Damage", "display": "DPS",
"parts": [ "parts": [
{ {
"name": "Single Arrow", "name": "Single Shot",
"type": "damage", "type": "damage",
"multipliers": [ "multipliers": [
30, 30,
@ -410,7 +410,14 @@ const atrees = {
"name": "Single Bow", "name": "Single Bow",
"type": "total", "type": "total",
"hits": { "hits": {
"Single Arrow": 8 "Single Shot": 8
}
},
{
"name": "DPS",
"type": "total",
"hits": {
"Single Shot": 2
} }
}, },
{ {
@ -910,16 +917,28 @@ const atrees = {
"properties": {}, "properties": {},
"effects": [ "effects": [
{ {
"type": "add_spell_prop", "type": "replace_spell",
"base_spell": 4, "name": "Call of the Hound",
"target_part": "Hound Damage", "base_spell": 8,
"multipliers": [ "display": "DPS",
40, "parts": [
0, {
0, "name": "Single Hit",
0, "multipliers": [
0, 40,
0 0,
0,
0,
0,
0
]
},
{
"name": "DPS",
"hits": {
"Single Hit": 4
}
}
] ]
} }
] ]
@ -1198,7 +1217,7 @@ const atrees = {
{ {
"type": "add_spell_prop", "type": "add_spell_prop",
"base_spell": 4, "base_spell": 4,
"target_part": "Single Arrow", "target_part": "Single Shot",
"multipliers": [ "multipliers": [
0, 0,
0, 0,
@ -1213,7 +1232,7 @@ const atrees = {
"base_spell": 4, "base_spell": 4,
"target_part": "Single Bow", "target_part": "Single Bow",
"hits": { "hits": {
"Single Arrow": 5 "Single Shot": 5
} }
} }
] ]
@ -1620,6 +1639,15 @@ const atrees = {
"Single Bow": 2 "Single Bow": 2
} }
}, },
{
"type": "add_spell_prop",
"base_spell": 4,
"target_part": "DPS",
"behavior": "modify",
"hits": {
"Single Shot": 2
}
},
{ {
"type": "raw_stat", "type": "raw_stat",
"bonuses": [ "bonuses": [
@ -1836,7 +1864,7 @@ const atrees = {
"base_spell": 4, "base_spell": 4,
"target_part": "Single Bow", "target_part": "Single Bow",
"hits": { "hits": {
"Single Arrow": 4 "Single Shot": 4
} }
} }
] ]

File diff suppressed because one or more lines are too long