mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 14:31:16 +00:00
36 lines
924 B
Python
36 lines
924 B
Python
import tasks.character.keywords.character_list as KEYWORDS_CHARACTER_LIST
|
|
import tasks.character.keywords.combat_type as KEYWORDS_COMBAT_TYPE
|
|
from tasks.character.keywords.character_list import *
|
|
from tasks.character.keywords.classes import CharacterList, CombatType
|
|
|
|
DICT_SORTED_RANGES = {
|
|
# Mage, hit instantly, no trajectories
|
|
'Mage': [
|
|
DanHengImbibitorLunae,
|
|
Welt,
|
|
FuXuan,
|
|
# Longer precast
|
|
BlackSwan,
|
|
],
|
|
# Mage, but character moved after attack
|
|
'MageSecondary': [
|
|
Yanqing,
|
|
],
|
|
# Archer
|
|
'Archer': [
|
|
Yukong,
|
|
TopazNumby,
|
|
March7th,
|
|
Bronya,
|
|
Asta,
|
|
Pela,
|
|
Qingque,
|
|
],
|
|
# Archer, but her parabolic trajectory has 0% accuracy on moving targets
|
|
'ArcherSecondary': [
|
|
Natasha,
|
|
],
|
|
# Melee
|
|
# rest of the characters are classified as melee and will not be switched to
|
|
}
|