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

XFESpaceNinjaServer

A simple server for a small space ninja game

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

XFEstudio/XFESpaceNinjaServer

chore: add supplemental recipe data for paris in U7-ish (#4178)

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

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

代码差异

1 个文件 +26 -0
Modified src/services/itemDataService.ts +26 -0
@@ -2075,7 +2075,33 @@ export const getRecipe = (uniqueName: string, buildLabel: string): IRecipe | und
2075 2075 data.ingredients[0].ItemType = "/Lotus/Types/Items/MiscItems/ControlModule";
2076 2076 }
2077 2077 }
2078 } else if (uniqueName == "/Lotus/Types/Recipes/Weapons/HuntingBowBlueprint") {
2079 // There was an undocumented change to this recipe's ingredients sometime between 8.3.0 and 9.1.2...
2080 if (version_compare(buildLabel, "2013.07.15.20.46") < 0) {
2081 data = {
2082 ...data,
2083 ingredients: [
2084 {
2085 ItemType: "/Lotus/Types/Items/MiscItems/Morphic",
2086 ItemCount: 1
2087 },
2088 {
2089 ItemType: "/Lotus/Types/Items/MiscItems/Circuits",
2090 ItemCount: 300
2091 },
2092 {
2093 ItemType: "/Lotus/Types/Items/MiscItems/PolymerBundle",
2094 ItemCount: 500
2095 },
2096 {
2097 ItemType: "/Lotus/Types/Items/MiscItems/Nanospores",
2098 ItemCount: 1250
2099 }
2100 ]
2101 };
2102 }
2078 2103 }
2104
2079 2105 if (uniqueName.startsWith("/Lotus/StoreItems/Types/Recipes/EidolonRecipes/Arcanes/")) {
2080 2106 if (version_compare(buildLabel, gameToBuildVersion["22.2.4"]) >= 0) {
2081 2107 if (uniqueName.endsWith("ArmourOnOperatorModeBlueprint")) {