diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-09-23 17:03:06 +0200 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-09-23 17:03:06 +0200 |
commit | 70a999fe850469b4769265005bd93003634f0dd8 (patch) | |
tree | 256d50c4f7e6ec366236c1fb44330061ccc31b97 /tools | |
parent | 0d9bfb4098faae1fba53fe5a01a4928275ad6d30 (diff) | |
download | algeria-70a999fe850469b4769265005bd93003634f0dd8.tar.gz |
locations and such
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gendata.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/gendata.js b/tools/gendata.js index 83b8493..0f49c71 100644 --- a/tools/gendata.js +++ b/tools/gendata.js @@ -83,9 +83,16 @@ def_area("Laghouat", REMOTE, "V", 1191, 1615.6) def_area("Sidi Aissa", REMOTE, "VI", 1385, 1186) def_area("Ain Qussera", RURAL, "VI", 1070.6, 1235.6) + +let free_deploy_locations = [] +for (let l of ["I", "II", "III", "IV", "V", "VI"]) { + free_deploy_locations.push(locations[l]) +} + data.areas = areas data.zones = zones data.locations = locations +data.free_deploy_locations = free_deploy_locations let units = [] @@ -130,6 +137,7 @@ def_unit(GOV, EL_X, "fr_elite_x_marine", 3) def_unit(GOV, AL_X, "alg_x", 6) def_unit(GOV, POL, "alg_police", 10) +console.log("last_gov_unit =", units.length) def_unit(FLN, FAILEK, "fln_failek", 10) def_unit(FLN, BAND, "fln_band", 24) |