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

chore: add supplemental data for archwing quest pre-U18.5 (#4037)

Closes #4036 Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/4037 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>

7c4aca19
Sainan <63328889+Sainan@users.noreply.github.com>
提交于

代码差异

1 个文件 +31 -0
Modified src/services/itemDataService.ts +31 -0
@@ -2158,6 +2158,37 @@ export const getKey = (uniqueName: string, buildLabel?: string): IKey | undefine
2158 2158 ]
2159 2159 };
2160 2160 }
2161 } else if (uniqueName == "/Lotus/Types/Keys/ArchwingQuest/ArchwingQuestKeyChain") {
2162 if (buildLabel && version_compare(buildLabel, gameToBuildVersion["18.5.0"]) < 0) {
2163 const latestData = ExportKeys[uniqueName];
2164 return {
2165 ...latestData,
2166 chainStages: [
2167 latestData.chainStages![0], // Give BP
2168 latestData.chainStages![1], // Mission 1
2169 latestData.chainStages![2], // Mission 2
2170 {
2171 itemsToGiveWhenTriggered: []
2172 },
2173 {
2174 itemsToGiveWhenTriggered: []
2175 },
2176 {
2177 itemsToGiveWhenTriggered: [
2178 "/Lotus/StoreItems/Weapons/Tenno/Archwing/Primary/FoldingMachineGun/ArchMachineGun",
2179 "/Lotus/StoreItems/Weapons/Tenno/Archwing/Melee/Archsword/ArchSwordWeapon"
2180 ]
2181 },
2182 {
2183 itemsToGiveWhenTriggered: []
2184 },
2185 latestData.chainStages![4], // Mission 4
2186 {
2187 itemsToGiveWhenTriggered: []
2188 }
2189 ]
2190 };
2191 }
2161 2192 }
2162 2193
2163 2194 return ExportKeys[uniqueName];