Skip to content

Commit

Permalink
Update for 3.5.1 and feature addition: PMC LL4
Browse files Browse the repository at this point in the history
* Updated package json to increment to v1.3.6
* Updated boss.ts to reduce bosschances to 5%
* Updated mod.ts to remove locationConfig from PMCs.ts
* Updated pmc.ts to remove locationConfig, and add LL4 whitelist for PMCs.
  • Loading branch information
VforValens committed Mar 6, 2023
1 parent 773d045 commit 6262418
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 45 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Valens-Progression",
"version": "1.3.5",
"version": "1.3.6",
"main": "src/mod.js",
"license": "CC BY-NC-ND 4.0",
"author": "Valens",
Expand Down
24 changes: 12 additions & 12 deletions src/boss.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class Boss
pmcBoss.factory4_day = [{
"sptId": "sptBearFactoryDayBossSpawn",
"BossName": "sptBear",
"BossChance": 10,
"BossChance": 5,
"BossZone": "BotZone",
"BossPlayer": false,
"BossDifficult": "normal",
Expand All @@ -38,7 +38,7 @@ export class Boss
}, {
"sptId": "sptUsecFactoryDayBossSpawn",
"BossName": "sptUsec",
"BossChance": 10,
"BossChance": 5,
"BossZone": "BotZone",
"BossPlayer": false,
"BossDifficult": "normal",
Expand All @@ -64,7 +64,7 @@ export class Boss
[{
"sptId": "sptBearCustomsScavBaseNormalSpawn",
"BossName": "sptBear",
"BossChance": 10,
"BossChance": 5,
"BossZone": "ZoneScavBase",
"BossPlayer": false,
"BossDifficult": "normal",
Expand All @@ -86,7 +86,7 @@ export class Boss
}, {
"sptId": "sptUsecCustomsScavBaseNormalSpawn",
"BossName": "sptUsec",
"BossChance": 10,
"BossChance": 5,
"BossZone": "ZoneScavBase",
"BossPlayer": false,
"BossDifficult": "normal",
Expand All @@ -112,7 +112,7 @@ export class Boss
[{
"sptId": "sptBearWoodScavBaseNormalSpawn",
"BossName": "sptBear",
"BossChance": 10,
"BossChance": 5,
"BossZone": "ZoneScavBase2",
"BossPlayer": false,
"BossDifficult": "normal",
Expand All @@ -134,7 +134,7 @@ export class Boss
}, {
"sptId": "sptUsecWoodScavBaseNormalSpawn",
"BossName": "sptUsec",
"BossChance": 10,
"BossChance": 5,
"BossZone": "ZoneScavBase2",
"BossPlayer": false,
"BossDifficult": "normal",
Expand All @@ -159,7 +159,7 @@ export class Boss
[{
"sptId": "sptBearShorelinePortNormalSpawn",
"BossName": "sptBear",
"BossChance": 10,
"BossChance": 5,
"BossZone": "ZonePort",
"BossPlayer": false,
"BossDifficult": "normal",
Expand All @@ -181,7 +181,7 @@ export class Boss
}, {
"sptId": "sptUsecShorelinePortNormalSpawn",
"BossName": "sptUsec",
"BossChance": 10,
"BossChance": 5,
"BossZone": "ZonePort",
"BossPlayer": false,
"BossDifficult": "normal",
Expand All @@ -204,7 +204,7 @@ export class Boss
{
"sptId": "sptUsecShorelineSanatorium1NormalSpawn",
"BossName": "sptUsec",
"BossChance": 7,
"BossChance": 5,
"BossZone": "ZoneSanatorium1",
"BossPlayer": false,
"BossDifficult": "normal",
Expand All @@ -227,7 +227,7 @@ export class Boss
{
"sptId": "sptBearShorelineSanatorium1NormalSpawn",
"BossName": "sptBear",
"BossChance": 7,
"BossChance": 5,
"BossZone": "ZoneSanatorium1",
"BossPlayer": false,
"BossDifficult": "normal",
Expand All @@ -250,7 +250,7 @@ export class Boss
{
"sptId": "sptUsecShorelineSanatorium2NormalSpawn",
"BossName": "sptUsec",
"BossChance": 7,
"BossChance": 5,
"BossZone": "ZoneSanatorium2",
"BossPlayer": false,
"BossDifficult": "normal",
Expand All @@ -273,7 +273,7 @@ export class Boss
{
"sptId": "sptBearShorelineSanatorium2NormalSpawn",
"BossName": "sptBear",
"BossChance": 7,
"BossChance": 5,
"BossZone": "ZoneSanatorium2",
"BossPlayer": false,
"BossDifficult": "normal",
Expand Down
2 changes: 1 addition & 1 deletion src/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class ValensProgression implements IPostDBLoadMod
this.boss = new Boss(this.locationConfig);
this.boss.updateBoss();

this.pmcs = new PMCs(this.locationConfig, this.botConfig, this.databaseServer);
this.pmcs = new PMCs(this.botConfig, this.databaseServer);
this.pmcs.updatePmcs();
}
}
Expand Down
Loading

0 comments on commit 6262418

Please sign in to comment.