Problem or Motivation
Many NPC weapons have the phrase "At T2, this weapon can make two attacks at a time, targeting either the same character or two different ones. At T3, it can make three attacks at a time", however, current implementation only allows for one attack against one character.
Proposed Solution
psudeocode:
numberAttacks = 1
if "T2," in weaponBlock:
numberAttacks = NPCtier
elif "T2-" in weaponBlock:
numberAttacks = min(NPCtier, 2)
for _ in range(numberAttacks):
addAttackField()
Related Area
None
Alternatives Considered
Add a button saying "additional attack for higher tier enemies"
Problem or Motivation
Many NPC weapons have the phrase "At T2, this weapon can make two attacks at a time, targeting either the same character or two different ones. At T3, it can make three attacks at a time", however, current implementation only allows for one attack against one character.
Proposed Solution
psudeocode:
Related Area
None
Alternatives Considered
Add a button saying "additional attack for higher tier enemies"