XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

SpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 1 Star 0
返回提交历史

XFEstudio/SpaceNinjaServer

feat: add completeAllQuests to config (#268)

defaf61b
Sainan <sainan@calamity.gg>
提交于

代码差异

4 个文件 +51 -37
Modified config.json.example +1 -0
@@ -14,6 +14,7 @@
14 14 "unlockAllScans": true,
15 15 "unlockAllMissions": true,
16 16 "unlockAllQuests": true,
17 "completeAllQuests": false,
17 18 "infiniteResources": true,
18 19 "unlockallShipFeatures": true,
19 20 "unlockAllShipDecorations": true,
Modified src/controllers/api/inventoryController.ts +13 -1
@@ -50,7 +50,19 @@ const inventoryController: RequestHandler = async (request: Request, response: R
50 50 inventoryResponse.NodeIntrosCompleted.push("TeshinHardModeUnlocked");
51 51 }
52 52
53 if (config.unlockAllQuests) inventoryResponse.QuestKeys = allQuestKeys;
53 if (config.unlockAllQuests) {
54 for (const questKey of allQuestKeys) {
55 if (!inventoryResponse.QuestKeys.find(quest => quest.ItemType == questKey)) {
56 inventoryResponse.QuestKeys.push({ ItemType: questKey });
57 }
58 }
59 }
60 if (config.completeAllQuests) {
61 for (const quest of inventoryResponse.QuestKeys) {
62 quest.Completed = true;
63 }
64 }
65
54 66 if (config.unlockAllShipDecorations) inventoryResponse.ShipDecorations = allShipDecorations;
55 67 if (config.unlockAllFlavourItems) inventoryResponse.FlavourItems = allFlavourItems satisfies IFlavourItem[];
56 68
Modified src/services/configService.ts +1 -0
@@ -12,6 +12,7 @@ interface IConfig {
12 12 unlockAllScans?: boolean;
13 13 unlockAllMissions?: boolean;
14 14 unlockAllQuests?: boolean;
15 completeAllQuests?: boolean;
15 16 infiniteResources?: boolean;
16 17 unlockallShipFeatures?: boolean;
17 18 unlockAllShipDecorations?: boolean;
Modified static/fixed_responses/allQuestKeys.json +36 -36
@@ -1,38 +1,38 @@
1 1 [
2 { "ItemType": "/Lotus/Types/Keys/VorsPrize/VorsPrizeQuestKeyChain" },
3 { "ItemType": "/Lotus/Types/Keys/GlassQuest/GlassQuestKeyChain" },
4 { "ItemType": "/Lotus/Types/Keys/SolarisQuest/SolarisQuestKeyChain" },
5 { "ItemType": "/Lotus/Types/Keys/InfestedIntroQuest/InfestedIntroQuestKeyChain" },
6 { "ItemType": "/Lotus/Types/Keys/KubrowQuest/KubrowQuestKeyChain" },
7 { "ItemType": "/Lotus/Types/Keys/ArchwingQuest/ArchwingQuestKeyChain" },
8 { "ItemType": "/Lotus/Types/Keys/GetClemQuest/GetClemQuestKeyChain" },
9 { "ItemType": "/Lotus/Types/Keys/SpyQuestKeyChain/SpyQuestKeyChain" },
10 { "ItemType": "/Lotus/Types/Keys/DragonQuest/DragonQuestKeyChain" },
11 { "ItemType": "/Lotus/Types/Keys/LimboQuest/LimboQuestKeyChain" },
12 { "ItemType": "/Lotus/Types/Keys/SentientQuest/SentientQuestKeyChain" },
13 { "ItemType": "/Lotus/Types/Keys/OrokinMoonQuest/OrokinMoonQuestKeyChain" },
14 { "ItemType": "/Lotus/Types/Keys/MirageQuest/MirageQuestKeyChain" },
15 { "ItemType": "/Lotus/Types/Keys/WarWithinQuest/WarWithinQuestKeyChain" },
16 { "ItemType": "/Lotus/Types/Keys/InfestedAladVQuest/InfestedAladVQuestKeyChain" },
17 { "ItemType": "/Lotus/Types/Keys/GolemQuest/GolemQuestKeyChainItem" },
18 { "ItemType": "/Lotus/Types/Keys/BardQuest/BardQuestKeyChain" },
19 { "ItemType": "/Lotus/Types/Keys/FairyQuest/FairyQuestKeyChain" },
20 { "ItemType": "/Lotus/Types/Keys/IndexQuest/IndexQuestKeyChain" },
21 { "ItemType": "/Lotus/Types/Keys/PriestFrameQuest/PriestQuestKeyChain" },
22 { "ItemType": "/Lotus/Types/Keys/ApostasyQuest/ApostasyKeyChain" },
23 { "ItemType": "/Lotus/Types/Keys/SacrificeQuest/SacrificeQuestKeyChain" },
24 { "ItemType": "/Lotus/Types/Keys/ChimeraQuest/ChimeraKeyChain" },
25 { "ItemType": "/Lotus/Types/Keys/MummyQuest/MummyQuestKeyChain" },
26 { "ItemType": "/Lotus/Types/Keys/RailJackBuildQuest/RailjackBuildQuestKeyChain" },
27 { "ItemType": "/Lotus/Types/Keys/NewWarIntroQuest/NewWarIntroKeyChain" },
28 { "ItemType": "/Lotus/Types/Keys/ProteaQuest/ProteaQuestKeyChain" },
29 { "ItemType": "/Lotus/Types/Keys/RevenantQuest/RevenantQuestKeyChain" },
30 { "ItemType": "/Lotus/Types/Keys/InfestedMicroplanetQuest/InfestedMicroplanetQuestKeyChain" },
31 { "ItemType": "/Lotus/Types/Keys/WraithQuest/WraithQuestKeyChain" },
32 { "ItemType": "/Lotus/Types/Keys/YareliQuest/YareliQuestKeyChain" },
33 { "ItemType": "/Lotus/Types/Keys/NewWarQuest/NewWarQuestKeyChain" },
34 { "ItemType": "/Lotus/Types/Keys/ZarimanQuest/ZarimanQuestKeyChain" },
35 { "ItemType": "/Lotus/Types/Keys/KahlQuest/KahlQuestKeyChain" },
36 { "ItemType": "/Lotus/Types/Keys/DuviriQuest/DuviriQuestKeyChain" },
37 { "ItemType": "/Lotus/Types/Keys/EntratiLab/EntratiQuestKeyChain" }
2 "/Lotus/Types/Keys/VorsPrize/VorsPrizeQuestKeyChain",
3 "/Lotus/Types/Keys/GlassQuest/GlassQuestKeyChain",
4 "/Lotus/Types/Keys/SolarisQuest/SolarisQuestKeyChain",
5 "/Lotus/Types/Keys/InfestedIntroQuest/InfestedIntroQuestKeyChain",
6 "/Lotus/Types/Keys/KubrowQuest/KubrowQuestKeyChain",
7 "/Lotus/Types/Keys/ArchwingQuest/ArchwingQuestKeyChain",
8 "/Lotus/Types/Keys/GetClemQuest/GetClemQuestKeyChain",
9 "/Lotus/Types/Keys/SpyQuestKeyChain/SpyQuestKeyChain",
10 "/Lotus/Types/Keys/DragonQuest/DragonQuestKeyChain",
11 "/Lotus/Types/Keys/LimboQuest/LimboQuestKeyChain",
12 "/Lotus/Types/Keys/SentientQuest/SentientQuestKeyChain",
13 "/Lotus/Types/Keys/OrokinMoonQuest/OrokinMoonQuestKeyChain",
14 "/Lotus/Types/Keys/MirageQuest/MirageQuestKeyChain",
15 "/Lotus/Types/Keys/WarWithinQuest/WarWithinQuestKeyChain",
16 "/Lotus/Types/Keys/InfestedAladVQuest/InfestedAladVQuestKeyChain",
17 "/Lotus/Types/Keys/GolemQuest/GolemQuestKeyChainItem",
18 "/Lotus/Types/Keys/BardQuest/BardQuestKeyChain",
19 "/Lotus/Types/Keys/FairyQuest/FairyQuestKeyChain",
20 "/Lotus/Types/Keys/IndexQuest/IndexQuestKeyChain",
21 "/Lotus/Types/Keys/PriestFrameQuest/PriestQuestKeyChain",
22 "/Lotus/Types/Keys/ApostasyQuest/ApostasyKeyChain",
23 "/Lotus/Types/Keys/SacrificeQuest/SacrificeQuestKeyChain",
24 "/Lotus/Types/Keys/ChimeraQuest/ChimeraKeyChain",
25 "/Lotus/Types/Keys/MummyQuest/MummyQuestKeyChain",
26 "/Lotus/Types/Keys/RailJackBuildQuest/RailjackBuildQuestKeyChain",
27 "/Lotus/Types/Keys/NewWarIntroQuest/NewWarIntroKeyChain",
28 "/Lotus/Types/Keys/ProteaQuest/ProteaQuestKeyChain",
29 "/Lotus/Types/Keys/RevenantQuest/RevenantQuestKeyChain",
30 "/Lotus/Types/Keys/InfestedMicroplanetQuest/InfestedMicroplanetQuestKeyChain",
31 "/Lotus/Types/Keys/WraithQuest/WraithQuestKeyChain",
32 "/Lotus/Types/Keys/YareliQuest/YareliQuestKeyChain",
33 "/Lotus/Types/Keys/NewWarQuest/NewWarQuestKeyChain",
34 "/Lotus/Types/Keys/ZarimanQuest/ZarimanQuestKeyChain",
35 "/Lotus/Types/Keys/KahlQuest/KahlQuestKeyChain",
36 "/Lotus/Types/Keys/DuviriQuest/DuviriQuestKeyChain",
37 "/Lotus/Types/Keys/EntratiLab/EntratiQuestKeyChain"
38 38 ]