2021-09-27 23:09:48 +02:00
|
|
|
import { Action } from "./Action";
|
|
|
|
import { IMap } from "../types";
|
|
|
|
|
|
|
|
export const GeneralActions: IMap<Action> = {};
|
|
|
|
|
2022-04-07 01:30:08 +02:00
|
|
|
const actionNames: Array<string> = [
|
2021-10-18 06:02:23 +02:00
|
|
|
"Training",
|
|
|
|
"Field Analysis",
|
|
|
|
"Recruitment",
|
|
|
|
"Diplomacy",
|
|
|
|
"Hyperbolic Regeneration Chamber",
|
2022-04-07 01:30:08 +02:00
|
|
|
"Incite Violence",
|
2021-10-18 02:02:22 +02:00
|
|
|
];
|
2021-10-18 06:02:23 +02:00
|
|
|
|
2022-04-07 01:30:08 +02:00
|
|
|
for (const actionName of actionNames) {
|
2021-10-18 06:02:23 +02:00
|
|
|
GeneralActions[actionName] = new Action({
|
|
|
|
name: actionName,
|
|
|
|
});
|
2022-03-06 05:34:04 +01:00
|
|
|
}
|