-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
General bug fixes and stuff. Personality AL now properly builds whirlwind AA sites when stormbringer AA sites are missing. Personality AR uses Gauss instead of missiles since that would produce an absurd research time anyway when it researches cannons in the first place. Moved mini code into it own file.
- Loading branch information
Showing
15 changed files
with
4,755 additions
and
4,823 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,26 @@ | ||
|
||
//This is the main file that brings everything all together. | ||
//Order can be changed except the first two includes. | ||
|
||
|
||
include("/multiplay/skirmish/cobra_rulesets/CobraStandard.js"); | ||
include("/multiplay/skirmish/cobra_includes/globalVariables.js"); | ||
include("/multiplay/skirmish/cobra_includes/miscFunctions.js"); | ||
include("/multiplay/skirmish/cobra_includes/build.js"); | ||
include("/multiplay/skirmish/cobra_includes/production.js"); | ||
include("/multiplay/skirmish/cobra_includes/tactics.js"); | ||
include("/multiplay/skirmish/cobra_includes/NEXUSIntruderProgram.js"); | ||
include("/multiplay/skirmish/cobra_includes/mapDynamics.js"); | ||
include("/multiplay/skirmish/cobra_includes/research.js"); | ||
include("/multiplay/skirmish/cobra_includes/events.js"); | ||
include("/multiplay/skirmish/cobra_includes/chat.js"); | ||
include("/multiplay/skirmish/cobra_includes/adaption.js"); | ||
//This is the main file that brings everything all together. | ||
//TODO: Make sure ground units do not chase VTOL units if they can not hit them. | ||
|
||
//Make this false to reduce performance average/worst times. | ||
const DEVELOPMENT = true; | ||
const COBRA_INCLUDES = "/multiplay/skirmish/cobra_includes/"; | ||
const COBRA_RULESETS = "/multiplay/skirmish/cobra_rulesets/"; | ||
|
||
include(COBRA_RULESETS + "CobraStandard.js"); | ||
|
||
if(DEVELOPMENT) { | ||
include(COBRA_INCLUDES + "globalVariables.js"); | ||
include(COBRA_INCLUDES + "miscFunctions.js"); | ||
include(COBRA_INCLUDES + "build.js"); | ||
include(COBRA_INCLUDES + "production.js"); | ||
include(COBRA_INCLUDES + "tactics.js"); | ||
include(COBRA_INCLUDES + "NEXUSIntruderProgram.js"); | ||
include(COBRA_INCLUDES + "mapDynamics.js"); | ||
include(COBRA_INCLUDES + "research.js"); | ||
include(COBRA_INCLUDES + "events.js"); | ||
include(COBRA_INCLUDES + "chat.js"); | ||
include(COBRA_INCLUDES + "adaption.js"); | ||
} | ||
else { | ||
include(COBRA_INCLUDES + "cobraMini.js"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"AI": { | ||
"js": "Cobra.js", | ||
"name": "Cobra", | ||
"tip": "Designed for team battles." | ||
} | ||
} | ||
{ | ||
"AI": { | ||
"js": "Cobra.js", | ||
"name": "Cobra", | ||
"tip": "Designed for team battles." | ||
} | ||
} |
Oops, something went wrong.