1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
#include "side.as"
#include "role.as"
namespace Init {
void Init(dictionary@ data)
{
aiLog("AngelScript Rules!");
dictionary category;
category["air"] = "FIXEDWING GUNSHIP";
category["land"] = "LAND SINK TURRET SHIP SWIM FLOAT HOVER";
category["water"] = "SUB";
category["bad"] = "TERRAFORM STUPIDTARGET MINE";
category["good"] = "TURRET FLOAT";
data["category"] = @category;
dictionary profile;
profile["default"] = @(array<string> = {"behaviour", "block_map", "build_chain", "commander", "economy", "factory", "response"});
profile["easy"] = @(array<string> = {"behaviour", "block_map", "build_chain", "commander", "economy", "factory", "response"});
profile["previous"] = @(array<string> = {"behaviour", "block_map", "build_chain", "commander", "economy", "factory", "response"});
data["profile"] = @profile;
}
}
|