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: update PE+ (#3612)

and remove some now-redundant supplemental data Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/3612 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>

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

代码差异

3 个文件 +5 -64
Modified package-lock.json +4 -4
@@ -17,7 +17,7 @@
17 17 "morgan": "^1.10.0",
18 18 "ncp": "^2.0.0",
19 19 "undici": "^7.10.0",
20 "warframe-public-export-plus": "^0.5.102",
20 "warframe-public-export-plus": "^0.5.103",
21 21 "warframe-riven-info": "^0.1.2",
22 22 "winston": "^3.17.0",
23 23 "winston-daily-rotate-file": "^5.0.0",
@@ -3951,9 +3951,9 @@
3951 3951 }
3952 3952 },
3953 3953 "node_modules/warframe-public-export-plus": {
3954 "version": "0.5.102",
3955 "resolved": "https://registry.npmjs.org/warframe-public-export-plus/-/warframe-public-export-plus-0.5.102.tgz",
3956 "integrity": "sha512-J1sYAas39E+vWSEoU7nIdjmXHBb50zGJMelQP3KlyGadd+f33U1IdzT43wkYUVSYHSCi6HI+dVPKF6Ao6t3t5Q=="
3954 "version": "0.5.103",
3955 "resolved": "https://registry.npmjs.org/warframe-public-export-plus/-/warframe-public-export-plus-0.5.103.tgz",
3956 "integrity": "sha512-6Qh0iBkVZkjUkCjgmQF6jvKsZ4uqYgRvObfA++O8Y+hWQ63cKwoTwBAs5EF/DaKnu5BYJtuTHQjznv6ICzwCVg=="
3957 3957 },
3958 3958 "node_modules/warframe-riven-info": {
3959 3959 "version": "0.1.2",
Modified package.json +1 -1
@@ -34,7 +34,7 @@
34 34 "morgan": "^1.10.0",
35 35 "ncp": "^2.0.0",
36 36 "undici": "^7.10.0",
37 "warframe-public-export-plus": "^0.5.102",
37 "warframe-public-export-plus": "^0.5.103",
38 38 "warframe-riven-info": "^0.1.2",
39 39 "winston": "^3.17.0",
40 40 "winston-daily-rotate-file": "^5.0.0",
Modified src/services/itemDataService.ts +0 -59
@@ -842,65 +842,6 @@ export const getBoosterPack = (uniqueName: string, buildLabel: string = ""): IBo
842 842 }
843 843 return boosterPack;
844 844 }
845 if (version_compare(buildLabel, gameToBuildVersion["18.18.0"]) < 0) {
846 if (uniqueName == "/Lotus/Types/BoosterPacks/CommonFusionPack") {
847 return {
848 name: "/Lotus/Language/Items/CommonFusionPack",
849 description: "/Lotus/Language/Items/CommonFusionPackDesc",
850 icon: "/Lotus/Interface/Icons/Store/FusionCorePackBronze.png",
851 components: [
852 { Item: "/Lotus/Upgrades/Mods/Fusers/RareModFuser", Rarity: "RARE", Amount: 1 },
853 { Item: "/Lotus/Upgrades/Mods/Fusers/UncommonModFuser", Rarity: "UNCOMMON", Amount: 1 },
854 { Item: "/Lotus/Upgrades/Mods/Fusers/CommonModFuser", Rarity: "COMMON", Amount: 1 }
855 ],
856 rarityWeightsPerRoll: [
857 { COMMON: 0.60000002, UNCOMMON: 0.40000001, RARE: 0, LEGENDARY: 0 },
858 { COMMON: 0.60000002, UNCOMMON: 0.40000001, RARE: 0, LEGENDARY: 0 },
859 { COMMON: 0.5, UNCOMMON: 0.30000001, RARE: 0.2, LEGENDARY: 0 }
860 ],
861 canGiveDuplicates: true,
862 platinumCost: 55
863 };
864 }
865 if (uniqueName == "/Lotus/Types/BoosterPacks/PremiumUncommonFusionPack") {
866 return {
867 name: "/Lotus/Language/Items/PremiumUncommonFusionPack",
868 description: "/Lotus/Language/Items/PremiumUncommonFusionPackDesc",
869 icon: "/Lotus/Interface/Icons/Store/FusionCorePackSilver.png",
870 components: [
871 { Item: "/Lotus/Upgrades/Mods/Fusers/RareModFuser", Rarity: "RARE", Amount: 1 },
872 { Item: "/Lotus/Upgrades/Mods/Fusers/UncommonModFuser", Rarity: "UNCOMMON", Amount: 1 },
873 { Item: "/Lotus/Upgrades/Mods/Fusers/CommonModFuser", Rarity: "COMMON", Amount: 1 }
874 ],
875 rarityWeightsPerRoll: [
876 { COMMON: 0, UNCOMMON: 1, RARE: 0, LEGENDARY: 0 },
877 { COMMON: 0.5, UNCOMMON: 0.30000001, RARE: 0.2, LEGENDARY: 0 },
878 { COMMON: 0.5, UNCOMMON: 0.30000001, RARE: 0.2, LEGENDARY: 0 }
879 ],
880 canGiveDuplicates: true,
881 platinumCost: 70
882 };
883 }
884 if (uniqueName == "/Lotus/Types/BoosterPacks/PremiumRareFusionPack") {
885 return {
886 name: "/Lotus/Language/Items/PremiumRareFusionPack",
887 description: "/Lotus/Language/Items/PremiumRareFusionPackDesc",
888 icon: "/Lotus/Interface/Icons/Store/FusionCorePackGold.png",
889 components: [
890 { Item: "/Lotus/Upgrades/Mods/Fusers/CommonModFuser", Rarity: "COMMON", Amount: 1 },
891 { Item: "/Lotus/Upgrades/Mods/Fusers/UncommonModFuser", Rarity: "UNCOMMON", Amount: 1 },
892 { Item: "/Lotus/Upgrades/Mods/Fusers/RareModFuser", Rarity: "RARE", Amount: 1 }
893 ],
894 rarityWeightsPerRoll: [
895 { COMMON: 0.5, UNCOMMON: 0.30000001, RARE: 0.2, LEGENDARY: 0 },
896 { COMMON: 0.5, UNCOMMON: 0.30000001, RARE: 0.2, LEGENDARY: 0 },
897 { COMMON: 0, UNCOMMON: 0, RARE: 1, LEGENDARY: 0 }
898 ],
899 canGiveDuplicates: true,
900 platinumCost: 80
901 };
902 }
903 }
904 845
905 846 return ExportBoosterPacks[uniqueName];
906 847 };