Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Delay research on Normal for Alpha 1
Browse files Browse the repository at this point in the history
KJeff01 committed Dec 1, 2023
1 parent 34c83b6 commit 0cbc6c7
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions data/base/script/campaign/cam1a.js
Original file line number Diff line number Diff line change
@@ -64,6 +64,8 @@ camAreaEvent("roadblockArea", function(droid)
// Scavengers hiding in the split canyon area between base two and three.
function raidAttack()
{
camCompleteRequiredResearch(mis_scavengerRes, CAM_SCAV_6);
camCompleteRequiredResearch(mis_scavengerRes, CAM_SCAV_7);
camManageGroup(camMakeGroup("raidTrigger", ENEMIES), CAM_ORDER_ATTACK, {
pos: camMakePos("scavBase3Cleanup")
});
@@ -158,8 +160,13 @@ function eventStartLevel()

enableBaseStructures();
camCompleteRequiredResearch(mis_playerRes, CAM_HUMAN_PLAYER);
camCompleteRequiredResearch(mis_scavengerRes, CAM_SCAV_6);
camCompleteRequiredResearch(mis_scavengerRes, CAM_SCAV_7);
completeResearch("R-Wpn-Flamer-Range01-ScavReduce", CAM_SCAV_6);
completeResearch("R-Wpn-Flamer-Range01-ScavReduce", CAM_SCAV_7);
if (difficulty >= HARD)
{
camCompleteRequiredResearch(mis_scavengerRes, CAM_SCAV_6);
camCompleteRequiredResearch(mis_scavengerRes, CAM_SCAV_7);
}
if (difficulty === INSANE)
{
completeResearch("R-Wpn-Flamer-Range01-ScavReduce-Undo", CAM_SCAV_6);

0 comments on commit 0cbc6c7

Please sign in to comment.