Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update invader core-related constants to their actual values #249

Merged
merged 1 commit into from
Dec 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 18 additions & 5 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ declare const PWR_OPERATE_FACTORY: PWR_OPERATE_FACTORY;
declare const EFFECT_INVULNERABILITY: EFFECT_INVULNERABILITY;
declare const EFFECT_COLLAPSE_TIMER: EFFECT_COLLAPSE_TIMER;

declare const INVADER_CORE_HITS: 1000000;
declare const INVADER_CORE_HITS: 100000;
declare const INVADER_CORE_CREEP_SPAWN_TIME: {
0: 0;
1: 0;
Expand All @@ -852,11 +852,24 @@ declare const INVADER_CORE_CREEP_SPAWN_TIME: {
4: 2;
5: 1;
};
declare const INVADER_CORE_EXPAND_TIME: 15000;
declare const INVADER_CORE_CONTROLLER_POWER: 100;
declare const INVADER_CORE_EXPAND_TIME: {
1: 4000;
2: 3500;
3: 3000;
4: 2500;
5: 2000;
};
declare const INVADER_CORE_CONTROLLER_POWER: 2;
declare const INVADER_CORE_CONTROLLER_DOWNGRADE: 5000;
declare const STRONGHOLD_RAMPART_HITS: { 0: 0; 1: 50000; 2: 200000; 3: 500000; 4: 1000000; 5: 2000000 };
declare const STRONGHOLD_DECAY_TICKS: 150000;
declare const STRONGHOLD_RAMPART_HITS: {
0: 0;
1: 100000;
2: 200000;
3: 500000;
4: 1000000;
5: 2000000;
};
declare const STRONGHOLD_DECAY_TICKS: 75000;

declare const POWER_INFO: {
[powerID: number]: {
Expand Down
23 changes: 18 additions & 5 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ declare const PWR_OPERATE_FACTORY: PWR_OPERATE_FACTORY;
declare const EFFECT_INVULNERABILITY: EFFECT_INVULNERABILITY;
declare const EFFECT_COLLAPSE_TIMER: EFFECT_COLLAPSE_TIMER;

declare const INVADER_CORE_HITS: 1000000;
declare const INVADER_CORE_HITS: 100000;
declare const INVADER_CORE_CREEP_SPAWN_TIME: {
0: 0;
1: 0;
Expand All @@ -837,11 +837,24 @@ declare const INVADER_CORE_CREEP_SPAWN_TIME: {
4: 2;
5: 1;
};
declare const INVADER_CORE_EXPAND_TIME: 15000;
declare const INVADER_CORE_CONTROLLER_POWER: 100;
declare const INVADER_CORE_EXPAND_TIME: {
1: 4000;
2: 3500;
3: 3000;
4: 2500;
5: 2000;
};
declare const INVADER_CORE_CONTROLLER_POWER: 2;
declare const INVADER_CORE_CONTROLLER_DOWNGRADE: 5000;
declare const STRONGHOLD_RAMPART_HITS: { 0: 0; 1: 50000; 2: 200000; 3: 500000; 4: 1000000; 5: 2000000 };
declare const STRONGHOLD_DECAY_TICKS: 150000;
declare const STRONGHOLD_RAMPART_HITS: {
0: 0;
1: 100000;
2: 200000;
3: 500000;
4: 1000000;
5: 2000000;
};
declare const STRONGHOLD_DECAY_TICKS: 75000;

declare const POWER_INFO: {
[powerID: number]: {
Expand Down