Fix lacerate vs. spin attack interaction

thanks good documentation!
This commit is contained in:
hppeng 2022-07-20 09:54:05 -07:00
parent 99408e5e16
commit b07faf7b47
2 changed files with 25 additions and 21 deletions

View file

@ -9989,27 +9989,31 @@ const atrees = {
"properties": {}, "properties": {},
"effects": [ "effects": [
{ {
"type": "add_spell_prop", "type": "replace_spell",
"name": "Lacerate",
"base_spell": 1, "base_spell": 1,
"target_part": "Spin Attack", "display": "Total Damage",
"behavior": "modify", "parts": [
"multipliers": [ {
40, "name": "Per Hit",
0, "type": "damage",
0, "multipliers": [
10, 40,
0, 0,
20 0,
10,
0,
20
]
},
{
"name": "Total Damage",
"type": "total",
"hits": {
"Per Hit": 3
}
}
] ]
},
{
"type": "add_spell_prop",
"base_spell": 1,
"target_part": "Total Damage",
"behavior": "modify",
"hits": {
"Spin Attack": 3
}
} }
] ]
}, },
@ -10992,7 +10996,7 @@ const atrees = {
"base_spell": 1, "base_spell": 1,
"target_part": "Total Damage", "target_part": "Total Damage",
"hits": { "hits": {
"Spin Attack": 1 "Per Hit": 1
} }
} }
] ]

File diff suppressed because one or more lines are too long