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: legacy hek recipe (#4461)

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

543f5361
AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
提交于

代码差异

1 个文件 +25 -0
Modified src/services/itemDataService.ts +25 -0
@@ -3571,6 +3571,31 @@ export const getRecipe = (uniqueName: string, buildLabel: string): IRecipe | und
3571 3571 ]
3572 3572 };
3573 3573 }
3574 } else if (uniqueName == "/Lotus/Types/Recipes/Weapons/QuadShotgunBlueprint") {
3575 // Undocumented change, might be U9.1.0
3576 if (version_compare(buildLabel, gameToBuildVersion["9.1.2"]) < 0) {
3577 data = {
3578 ...data,
3579 ingredients: [
3580 {
3581 ...data.ingredients[0],
3582 ItemCount: 2
3583 },
3584 {
3585 ItemType: "/Lotus/Types/Items/MiscItems/AlloyPlate",
3586 ItemCount: 500
3587 },
3588 {
3589 ...data.ingredients[2],
3590 ItemCount: 900
3591 },
3592 {
3593 ItemType: "/Lotus/Types/Items/MiscItems/PolymerBundle",
3594 ItemCount: 100
3595 }
3596 ]
3597 };
3598 }
3574 3599 }
3575 3600
3576 3601 if (uniqueName.startsWith("/Lotus/StoreItems/Types/Recipes/EidolonRecipes/Arcanes/")) {