Skip to content

NPC weapons that make different numbers of attacks only attack once #3529

@RobJohnson459

Description

@RobJohnson459

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"

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No fields configured for Task.

    Projects

    Status

    In progress

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions