Civilization Wiki
Advertisement

Documentation for this module may be created at Module:Data/Civ5/BNW/Automates/doc

--[Field]                              [Type]
--Type                                 String
--Description                          String
--Help                                 String
--DisabledHelp                         String
--HotKey                               String
--HotKeyAlt                            String
--HotKeyPriority                        Int64
--HotKeyPriorityAlt                     Int64
--OrderPriority                         Int64
--AltDown                             Boolean
--AltDownAlt                          Boolean
--ShiftDown                           Boolean
--ShiftDownAlt                        Boolean
--CtrlDown                            Boolean
--CtrlDownAlt                         Boolean
--Visible                             Boolean
--ConfirmCommand                      Boolean
--Automate                             String
--Command                              String
--IconIndex                             Int64
--IconAtlas                            String

local data ={

AUTOMATE_BUILD={
Description=[=[Build Improvements (Automated)]=];
Help=[=[Automate all Worker actions. The unit will continue working until you cancel its automation.]=];
HotKey="KB_A";
OrderPriority=1;
Visible=true;
Automate="AUTOMATE_BUILD";
Command="COMMAND_AUTOMATE";
IconIndex=6;
IconAtlas="UNIT_ACTION_ATLAS";};

AUTOMATE_EXPLORE={
Description=[=[Explore (Automated)]=];
Help=[=[This order tells the unit to explore the uncharted regions on the map. The unit will continue to move until it has run out of places to explore.]=];
DisabledHelp=[=[No reachable areas to explore at the moment.]=];
HotKey="KB_E";
OrderPriority=1;
Visible=true;
Automate="AUTOMATE_EXPLORE";
Command="COMMAND_AUTOMATE";
IconIndex=43;
IconAtlas="UNIT_ACTION_ATLAS";};

}
return data
Advertisement