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,10 +9989,14 @@ 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": [
{
"name": "Per Hit",
"type": "damage",
"multipliers": [ "multipliers": [
40, 40,
0, 0,
@ -10003,15 +10007,15 @@ const atrees = {
] ]
}, },
{ {
"type": "add_spell_prop", "name": "Total Damage",
"base_spell": 1, "type": "total",
"target_part": "Total Damage",
"behavior": "modify",
"hits": { "hits": {
"Spin Attack": 3 "Per Hit": 3
} }
} }
] ]
}
]
}, },
{ {
"display_name": "Silent Killer", "display_name": "Silent Killer",
@ -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