Implemented group attack logic

This commit is contained in:
WBHarry 2026-04-03 17:37:45 +02:00
parent 02cca277da
commit 54fab46b66
12 changed files with 154 additions and 11 deletions

View file

@ -70,6 +70,14 @@ export const range = {
}
};
export const groupAttackRange = {
melee: range.melee,
veryClose: range.veryClose,
close: range.close,
far: range.far,
veryFar: range.veryFar
};
/* circle|cone|rect|ray used to be CONST.MEASURED_TEMPLATE_TYPES. Hardcoded for now */
export const templateTypes = {
CIRCLE: 'circle',