koishi-plugin-warframe 1.2.2 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +49 -1
- package/lib/index.js +4506 -1
- package/package.json +2 -1
package/lib/index.js
CHANGED
|
@@ -91,6 +91,36 @@ var fullWidthToHalfWidth = /* @__PURE__ */ __name((text) => text.replace(/[\uFF0
|
|
|
91
91
|
}).replace(/\u3000/g, " "), "fullWidthToHalfWidth");
|
|
92
92
|
var removeSpace = /* @__PURE__ */ __name((text) => text.replace(/\s/g, ""), "removeSpace");
|
|
93
93
|
var pascalToSpaced = /* @__PURE__ */ __name((text) => text.replace(/([A-Z])/g, " $1").trim(), "pascalToSpaced");
|
|
94
|
+
function normalSimilarity(a, b) {
|
|
95
|
+
const distance = levenshtein(a, b);
|
|
96
|
+
return 1 - distance / Math.max(a.length, b.length);
|
|
97
|
+
}
|
|
98
|
+
__name(normalSimilarity, "normalSimilarity");
|
|
99
|
+
function levenshtein(a, b) {
|
|
100
|
+
const dp = Array.from({ length: a.length + 1 }, () => []);
|
|
101
|
+
for (let i = 0; i <= a.length; i++) dp[i][0] = i;
|
|
102
|
+
for (let j = 0; j <= b.length; j++) dp[0][j] = j;
|
|
103
|
+
for (let i = 1; i <= a.length; i++) {
|
|
104
|
+
for (let j = 1; j <= b.length; j++) {
|
|
105
|
+
dp[i][j] = Math.min(
|
|
106
|
+
dp[i - 1][j] + 1,
|
|
107
|
+
dp[i][j - 1] + 1,
|
|
108
|
+
dp[i - 1][j - 1] + (a[i - 1] === b[j - 1] ? 0 : 1)
|
|
109
|
+
);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
return dp[a.length][b.length];
|
|
113
|
+
}
|
|
114
|
+
__name(levenshtein, "levenshtein");
|
|
115
|
+
function tokenSimilarity(a, b) {
|
|
116
|
+
const tokenize = /* @__PURE__ */ __name((s) => s.replace(/[^\w\u4e00-\u9fa5]+/g, " ").split(/\s+/).filter(Boolean), "tokenize");
|
|
117
|
+
const A = new Set(tokenize(a));
|
|
118
|
+
const B = new Set(tokenize(b));
|
|
119
|
+
const intersection = [...A].filter((x) => B.has(x)).length;
|
|
120
|
+
const union = (/* @__PURE__ */ new Set([...A, ...B])).size;
|
|
121
|
+
return intersection / union;
|
|
122
|
+
}
|
|
123
|
+
__name(tokenSimilarity, "tokenSimilarity");
|
|
94
124
|
|
|
95
125
|
// src/utils/http.ts
|
|
96
126
|
var fetchAsyncText = /* @__PURE__ */ __name(async (url, method = "GET") => {
|
|
@@ -129,6 +159,24 @@ var fetchAsyncData = /* @__PURE__ */ __name(async (url, method = "GET") => {
|
|
|
129
159
|
return null;
|
|
130
160
|
}
|
|
131
161
|
}, "fetchAsyncData");
|
|
162
|
+
var fetchAsyncImage = /* @__PURE__ */ __name(async (url, method = "GET") => {
|
|
163
|
+
const response = await fetch(url, {
|
|
164
|
+
method,
|
|
165
|
+
headers: {
|
|
166
|
+
"Content-Type": "image/png",
|
|
167
|
+
"response-type": "blob"
|
|
168
|
+
}
|
|
169
|
+
});
|
|
170
|
+
if (!response.ok) {
|
|
171
|
+
throw new Error("Network response was not ok.");
|
|
172
|
+
}
|
|
173
|
+
try {
|
|
174
|
+
return await response.blob();
|
|
175
|
+
} catch (error) {
|
|
176
|
+
console.log("Error: " + error.message);
|
|
177
|
+
return null;
|
|
178
|
+
}
|
|
179
|
+
}, "fetchAsyncImage");
|
|
132
180
|
|
|
133
181
|
// src/utils/collection.ts
|
|
134
182
|
var listToDict = /* @__PURE__ */ __name((dict, predict) => {
|
|
@@ -156,6 +204,16 @@ var dictToKeyDict = /* @__PURE__ */ __name((dict, predict) => {
|
|
|
156
204
|
return result;
|
|
157
205
|
}, "dictToKeyDict");
|
|
158
206
|
|
|
207
|
+
// src/utils/color.ts
|
|
208
|
+
var lerp = /* @__PURE__ */ __name((start, end, t) => Math.round(start + (end - start) * t), "lerp");
|
|
209
|
+
var hexToRgb = /* @__PURE__ */ __name((hex) => {
|
|
210
|
+
const r = parseInt(hex.slice(1, 3), 16);
|
|
211
|
+
const g = parseInt(hex.slice(3, 5), 16);
|
|
212
|
+
const b = parseInt(hex.slice(5, 7), 16);
|
|
213
|
+
return { r, g, b };
|
|
214
|
+
}, "hexToRgb");
|
|
215
|
+
var rgbToHex = /* @__PURE__ */ __name((r, g, b) => `#${((1 << 24) + (r << 16) + (g << 8) + b).toString(16).slice(1)}`, "rgbToHex");
|
|
216
|
+
|
|
159
217
|
// src/utils/wfcd-adapter.ts
|
|
160
218
|
var solNodesEnDict = null;
|
|
161
219
|
var getSolNodeKey = /* @__PURE__ */ __name(async (name2) => {
|
|
@@ -45649,6 +45707,3834 @@ var warframeRewards = [
|
|
|
45649
45707
|
]
|
|
45650
45708
|
];
|
|
45651
45709
|
|
|
45710
|
+
// src/assets/rivencalc.json
|
|
45711
|
+
var rivencalc_default = {
|
|
45712
|
+
weapons: [
|
|
45713
|
+
{
|
|
45714
|
+
disposition: 0.6,
|
|
45715
|
+
name: "ACCELTRA",
|
|
45716
|
+
texture: "_Lotus_Interface_Icons_Store_SapientPrimaryWeapon.png",
|
|
45717
|
+
riventype: "Rifle"
|
|
45718
|
+
},
|
|
45719
|
+
{
|
|
45720
|
+
disposition: 1.35,
|
|
45721
|
+
name: "ACK & BRUNT",
|
|
45722
|
+
texture: "_Lotus_Interface_Icons_Store_RegorAxeShield.png",
|
|
45723
|
+
riventype: "Melee"
|
|
45724
|
+
},
|
|
45725
|
+
{
|
|
45726
|
+
disposition: 1.33,
|
|
45727
|
+
name: "ACRID",
|
|
45728
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerAcidBlowDartGun.png",
|
|
45729
|
+
riventype: "Pistol"
|
|
45730
|
+
},
|
|
45731
|
+
{
|
|
45732
|
+
disposition: 1.45,
|
|
45733
|
+
name: "AFURIS",
|
|
45734
|
+
texture: "_Lotus_Interface_Icons_Store_TennoAkimboAutoPistols.png",
|
|
45735
|
+
riventype: "Pistol"
|
|
45736
|
+
},
|
|
45737
|
+
{
|
|
45738
|
+
disposition: 1.05,
|
|
45739
|
+
name: "AKARIUS",
|
|
45740
|
+
texture: "_Lotus_Interface_Icons_Store_SapientPistol.png",
|
|
45741
|
+
riventype: "Pistol"
|
|
45742
|
+
},
|
|
45743
|
+
{
|
|
45744
|
+
disposition: 1.3,
|
|
45745
|
+
name: "AKBOLTO",
|
|
45746
|
+
texture: "_Lotus_Interface_Icons_Store_TennoAkimboPistols.png",
|
|
45747
|
+
riventype: "Pistol"
|
|
45748
|
+
},
|
|
45749
|
+
{
|
|
45750
|
+
disposition: 1.2,
|
|
45751
|
+
name: "AKBOLTO PRIME",
|
|
45752
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_AkboltoPrime.png",
|
|
45753
|
+
riventype: "Pistol"
|
|
45754
|
+
},
|
|
45755
|
+
{
|
|
45756
|
+
disposition: 1.35,
|
|
45757
|
+
name: "AKBRONCO",
|
|
45758
|
+
texture: "_Lotus_Interface_Icons_Store_DualBroncos.png",
|
|
45759
|
+
riventype: "Pistol"
|
|
45760
|
+
},
|
|
45761
|
+
{
|
|
45762
|
+
disposition: 1.3,
|
|
45763
|
+
name: "AKBRONCO PRIME",
|
|
45764
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeDualBroncos.png",
|
|
45765
|
+
riventype: "Pistol"
|
|
45766
|
+
},
|
|
45767
|
+
{
|
|
45768
|
+
disposition: 1.05,
|
|
45769
|
+
name: "AKJAGARA",
|
|
45770
|
+
texture: "_Lotus_Interface_Icons_Store_TnoBladedPistols.png",
|
|
45771
|
+
riventype: "Pistol"
|
|
45772
|
+
},
|
|
45773
|
+
{
|
|
45774
|
+
disposition: 0.95,
|
|
45775
|
+
name: "AKJAGARA PRIME",
|
|
45776
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_AkjagaraPrime.png",
|
|
45777
|
+
riventype: "Pistol"
|
|
45778
|
+
},
|
|
45779
|
+
{
|
|
45780
|
+
disposition: 1.52,
|
|
45781
|
+
name: "AKLATO",
|
|
45782
|
+
texture: "_Lotus_Interface_Icons_Store_AklatoPistols.png",
|
|
45783
|
+
riventype: "Pistol"
|
|
45784
|
+
},
|
|
45785
|
+
{
|
|
45786
|
+
disposition: 1.05,
|
|
45787
|
+
name: "AKLEX",
|
|
45788
|
+
texture: "_Lotus_Interface_Icons_Store_Aklex.png",
|
|
45789
|
+
riventype: "Pistol"
|
|
45790
|
+
},
|
|
45791
|
+
{
|
|
45792
|
+
disposition: 0.9,
|
|
45793
|
+
name: "AKLEX PRIME",
|
|
45794
|
+
texture: "_Lotus_Interface_Icons_Store_AklexPrime.png",
|
|
45795
|
+
riventype: "Pistol"
|
|
45796
|
+
},
|
|
45797
|
+
{
|
|
45798
|
+
disposition: 1.35,
|
|
45799
|
+
name: "AKMAGNUS",
|
|
45800
|
+
texture: "_Lotus_Interface_Icons_Store_Akmagnus.png",
|
|
45801
|
+
riventype: "Pistol"
|
|
45802
|
+
},
|
|
45803
|
+
{
|
|
45804
|
+
disposition: 1.25,
|
|
45805
|
+
name: "AKSOMATI",
|
|
45806
|
+
texture: "_Lotus_Interface_Icons_Store_AkimboSomaPistols.png",
|
|
45807
|
+
riventype: "Pistol"
|
|
45808
|
+
},
|
|
45809
|
+
{
|
|
45810
|
+
disposition: 0.95,
|
|
45811
|
+
name: "AKSOMATI PRIME",
|
|
45812
|
+
texture: "_Lotus_Interface_Icons_Store_AksomatiPrime.png",
|
|
45813
|
+
riventype: "Pistol"
|
|
45814
|
+
},
|
|
45815
|
+
{
|
|
45816
|
+
disposition: 0.95,
|
|
45817
|
+
name: "AKSTILETTO",
|
|
45818
|
+
texture: "_Lotus_Interface_Icons_Store_TennoUzi.png",
|
|
45819
|
+
riventype: "Pistol"
|
|
45820
|
+
},
|
|
45821
|
+
{
|
|
45822
|
+
disposition: 0.7,
|
|
45823
|
+
name: "AKSTILETTO PRIME",
|
|
45824
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_AkstilettoPrime.png",
|
|
45825
|
+
riventype: "Pistol"
|
|
45826
|
+
},
|
|
45827
|
+
{
|
|
45828
|
+
disposition: 1.25,
|
|
45829
|
+
name: "AKVASTO",
|
|
45830
|
+
texture: "_Lotus_Interface_Icons_Store_DualVasto.png",
|
|
45831
|
+
riventype: "Pistol"
|
|
45832
|
+
},
|
|
45833
|
+
{
|
|
45834
|
+
disposition: 1.2,
|
|
45835
|
+
name: "AKVASTO PRIME",
|
|
45836
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_AkvastoPrime.png",
|
|
45837
|
+
riventype: "Pistol"
|
|
45838
|
+
},
|
|
45839
|
+
{
|
|
45840
|
+
disposition: 1.52,
|
|
45841
|
+
name: "AKZANI",
|
|
45842
|
+
texture: "_Lotus_Interface_Icons_Store_HarlequinPistols.png",
|
|
45843
|
+
riventype: "Pistol"
|
|
45844
|
+
},
|
|
45845
|
+
{
|
|
45846
|
+
disposition: 1.05,
|
|
45847
|
+
name: "AMBASSADOR",
|
|
45848
|
+
texture: "_Lotus_Interface_Icons_Store_CrpArSniper.png",
|
|
45849
|
+
riventype: "Rifle"
|
|
45850
|
+
},
|
|
45851
|
+
{
|
|
45852
|
+
disposition: 1.5,
|
|
45853
|
+
name: "AMPHIS",
|
|
45854
|
+
texture: "_Lotus_Interface_Icons_Store_HeavyStaff.png",
|
|
45855
|
+
riventype: "Melee"
|
|
45856
|
+
},
|
|
45857
|
+
{
|
|
45858
|
+
disposition: 0.8,
|
|
45859
|
+
name: "AMPREX",
|
|
45860
|
+
texture: "_Lotus_Interface_Icons_Store_ChainLightningGun.png",
|
|
45861
|
+
riventype: "Rifle"
|
|
45862
|
+
},
|
|
45863
|
+
{
|
|
45864
|
+
disposition: 1.35,
|
|
45865
|
+
name: "ANGSTRUM",
|
|
45866
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusHandRocket.png",
|
|
45867
|
+
riventype: "Pistol"
|
|
45868
|
+
},
|
|
45869
|
+
{
|
|
45870
|
+
disposition: 1.46,
|
|
45871
|
+
name: "ANKU",
|
|
45872
|
+
texture: "_Lotus_Interface_Icons_Store_ParisScythe.png",
|
|
45873
|
+
riventype: "Melee"
|
|
45874
|
+
},
|
|
45875
|
+
{
|
|
45876
|
+
disposition: 1.5,
|
|
45877
|
+
name: "ANKYROS",
|
|
45878
|
+
texture: "_Lotus_Interface_Icons_Store_TennoGauntlet.png",
|
|
45879
|
+
riventype: "Melee"
|
|
45880
|
+
},
|
|
45881
|
+
{
|
|
45882
|
+
disposition: 1.45,
|
|
45883
|
+
name: "ANKYROS PRIME",
|
|
45884
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeAnkyros.png",
|
|
45885
|
+
riventype: "Melee"
|
|
45886
|
+
},
|
|
45887
|
+
{
|
|
45888
|
+
disposition: 0.8,
|
|
45889
|
+
name: "ARCA PLASMOR",
|
|
45890
|
+
texture: "_Lotus_Interface_Icons_Store_CrpShotgun.png",
|
|
45891
|
+
riventype: "Shotgun"
|
|
45892
|
+
},
|
|
45893
|
+
{
|
|
45894
|
+
disposition: 1.1,
|
|
45895
|
+
name: "ARCA SCISCO",
|
|
45896
|
+
texture: "_Lotus_Interface_Icons_Store_CrpScopePistol.png",
|
|
45897
|
+
riventype: "Pistol"
|
|
45898
|
+
},
|
|
45899
|
+
{
|
|
45900
|
+
disposition: 1.3,
|
|
45901
|
+
name: "ARCA TITRON",
|
|
45902
|
+
texture: "_Lotus_Interface_Icons_Store_CrpHammer.png",
|
|
45903
|
+
riventype: "Melee"
|
|
45904
|
+
},
|
|
45905
|
+
{
|
|
45906
|
+
disposition: 1.25,
|
|
45907
|
+
name: "ARGONAK",
|
|
45908
|
+
texture: "_Lotus_Interface_Icons_Store_LaserAimRifle.png",
|
|
45909
|
+
riventype: "Rifle"
|
|
45910
|
+
},
|
|
45911
|
+
{
|
|
45912
|
+
disposition: 0.5,
|
|
45913
|
+
name: "ARQUEBEX",
|
|
45914
|
+
texture: "_Lotus_Interface_Icons_Store_Mech_ExaltedArtilleryWeapon.png",
|
|
45915
|
+
riventype: "Archgun"
|
|
45916
|
+
},
|
|
45917
|
+
{
|
|
45918
|
+
disposition: 1,
|
|
45919
|
+
name: "ARTAX",
|
|
45920
|
+
texture: "_Lotus_Interface_Icons_Store_SentinelGremlin.png",
|
|
45921
|
+
riventype: "Rifle"
|
|
45922
|
+
},
|
|
45923
|
+
{
|
|
45924
|
+
disposition: 1,
|
|
45925
|
+
name: "Artemis Bow",
|
|
45926
|
+
texture: "_Lotus_Interface_Icons_Store_ExaltedBow827.png",
|
|
45927
|
+
riventype: "Rifle"
|
|
45928
|
+
},
|
|
45929
|
+
{
|
|
45930
|
+
disposition: 1,
|
|
45931
|
+
name: "ARTEMIS BOW PRIME",
|
|
45932
|
+
texture: "_Lotus_Interface_Icons_Store_ArtemisBowPrime.png",
|
|
45933
|
+
riventype: "Rifle"
|
|
45934
|
+
},
|
|
45935
|
+
{
|
|
45936
|
+
disposition: 1.1,
|
|
45937
|
+
name: "ARUM SPINOSA",
|
|
45938
|
+
texture: "_Lotus_Interface_Icons_Store_InfWarfan.png",
|
|
45939
|
+
riventype: "Melee"
|
|
45940
|
+
},
|
|
45941
|
+
{
|
|
45942
|
+
disposition: 1.25,
|
|
45943
|
+
name: "ASTILLA",
|
|
45944
|
+
texture: "_Lotus_Interface_Icons_Store_GlassShotgun.png",
|
|
45945
|
+
riventype: "Shotgun"
|
|
45946
|
+
},
|
|
45947
|
+
{
|
|
45948
|
+
disposition: 0.8,
|
|
45949
|
+
name: "ASTILLA PRIME",
|
|
45950
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_AstillaPrime.png",
|
|
45951
|
+
riventype: "Shotgun"
|
|
45952
|
+
},
|
|
45953
|
+
{
|
|
45954
|
+
disposition: 1,
|
|
45955
|
+
name: "ATHODAI",
|
|
45956
|
+
texture: "_Lotus_Interface_Icons_Store_TnJetTurbinePistolWeapon.png",
|
|
45957
|
+
riventype: "Pistol"
|
|
45958
|
+
},
|
|
45959
|
+
{
|
|
45960
|
+
disposition: 0.95,
|
|
45961
|
+
name: "ATOMOS",
|
|
45962
|
+
texture: "_Lotus_Interface_Icons_Store_GrnHeatGun.png",
|
|
45963
|
+
riventype: "Pistol"
|
|
45964
|
+
},
|
|
45965
|
+
{
|
|
45966
|
+
disposition: 1.1,
|
|
45967
|
+
name: "ATTERAX",
|
|
45968
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerWhip.png",
|
|
45969
|
+
riventype: "Melee"
|
|
45970
|
+
},
|
|
45971
|
+
{
|
|
45972
|
+
disposition: 1.42,
|
|
45973
|
+
name: "ATTICA",
|
|
45974
|
+
texture: "_Lotus_Interface_Icons_Store_TnoPrmryXbow.png",
|
|
45975
|
+
riventype: "Rifle"
|
|
45976
|
+
},
|
|
45977
|
+
{
|
|
45978
|
+
disposition: 1.25,
|
|
45979
|
+
name: "AZIMA",
|
|
45980
|
+
texture: "_Lotus_Interface_Icons_Store_SundialPistol.png",
|
|
45981
|
+
riventype: "Pistol"
|
|
45982
|
+
},
|
|
45983
|
+
{
|
|
45984
|
+
disposition: 1,
|
|
45985
|
+
name: "BALEFIRE CHARGER",
|
|
45986
|
+
texture: "_Lotus_Interface_Icons_Store_IronFrameBlastWeapon.png",
|
|
45987
|
+
riventype: "Pistol"
|
|
45988
|
+
},
|
|
45989
|
+
{
|
|
45990
|
+
disposition: 0.8,
|
|
45991
|
+
name: "BALLA",
|
|
45992
|
+
texture: "_Lotus_Interface_Icons_Store_Weapons_Modular_ModularMeleeTipOne.png",
|
|
45993
|
+
riventype: "Melee"
|
|
45994
|
+
},
|
|
45995
|
+
{
|
|
45996
|
+
disposition: 1.25,
|
|
45997
|
+
name: "BALLISTICA",
|
|
45998
|
+
texture: "_Lotus_Interface_Icons_Store_TennoAutoCrossbow.png",
|
|
45999
|
+
riventype: "Pistol"
|
|
46000
|
+
},
|
|
46001
|
+
{
|
|
46002
|
+
disposition: 1.2,
|
|
46003
|
+
name: "BALLISTICA PRIME",
|
|
46004
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_PrimeBallistica.png",
|
|
46005
|
+
riventype: "Pistol"
|
|
46006
|
+
},
|
|
46007
|
+
{
|
|
46008
|
+
disposition: 1.15,
|
|
46009
|
+
name: "BASMU",
|
|
46010
|
+
texture: "_Lotus_Interface_Icons_Store_SentRifleNewWarGun.png",
|
|
46011
|
+
riventype: "Rifle"
|
|
46012
|
+
},
|
|
46013
|
+
{
|
|
46014
|
+
disposition: 1.1,
|
|
46015
|
+
name: "BATTACOR",
|
|
46016
|
+
texture: "_Lotus_Interface_Icons_Store_CrpSentExperimentRifle.png",
|
|
46017
|
+
riventype: "Rifle"
|
|
46018
|
+
},
|
|
46019
|
+
{
|
|
46020
|
+
disposition: 1.05,
|
|
46021
|
+
name: "BAZA",
|
|
46022
|
+
texture: "_Lotus_Interface_Icons_Store_TnSMGWeapon.png",
|
|
46023
|
+
riventype: "Rifle"
|
|
46024
|
+
},
|
|
46025
|
+
{
|
|
46026
|
+
disposition: 0.95,
|
|
46027
|
+
name: "BAZA PRIME",
|
|
46028
|
+
texture: "_Lotus_Interface_Icons_Store_BazaPrime.png",
|
|
46029
|
+
riventype: "Rifle"
|
|
46030
|
+
},
|
|
46031
|
+
{
|
|
46032
|
+
disposition: 1.35,
|
|
46033
|
+
name: "BO",
|
|
46034
|
+
texture: "_Lotus_Interface_Icons_Store_BoStaff.png",
|
|
46035
|
+
riventype: "Melee"
|
|
46036
|
+
},
|
|
46037
|
+
{
|
|
46038
|
+
disposition: 1.45,
|
|
46039
|
+
name: "BOAR",
|
|
46040
|
+
texture: "_Lotus_Interface_Icons_Store_TennoFullAutoShotgun.png",
|
|
46041
|
+
riventype: "Shotgun"
|
|
46042
|
+
},
|
|
46043
|
+
{
|
|
46044
|
+
disposition: 1.34,
|
|
46045
|
+
name: "BOAR PRIME",
|
|
46046
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeBoar.png",
|
|
46047
|
+
riventype: "Shotgun"
|
|
46048
|
+
},
|
|
46049
|
+
{
|
|
46050
|
+
disposition: 1.25,
|
|
46051
|
+
name: "BOLTACE",
|
|
46052
|
+
texture: "_Lotus_Interface_Icons_Store_Boltonfa.png",
|
|
46053
|
+
riventype: "Melee"
|
|
46054
|
+
},
|
|
46055
|
+
{
|
|
46056
|
+
disposition: 1.51,
|
|
46057
|
+
name: "BOLTO",
|
|
46058
|
+
texture: "_Lotus_Interface_Icons_Store_Lex.png",
|
|
46059
|
+
riventype: "Pistol"
|
|
46060
|
+
},
|
|
46061
|
+
{
|
|
46062
|
+
disposition: 1.3,
|
|
46063
|
+
name: "BOLTOR",
|
|
46064
|
+
texture: "_Lotus_Interface_Icons_Store_Boltor.png",
|
|
46065
|
+
riventype: "Rifle"
|
|
46066
|
+
},
|
|
46067
|
+
{
|
|
46068
|
+
disposition: 1.2,
|
|
46069
|
+
name: "BOLTOR PRIME",
|
|
46070
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeBoltor.png",
|
|
46071
|
+
riventype: "Rifle"
|
|
46072
|
+
},
|
|
46073
|
+
{
|
|
46074
|
+
disposition: 1.35,
|
|
46075
|
+
name: "BO PRIME",
|
|
46076
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeBo.png",
|
|
46077
|
+
riventype: "Melee"
|
|
46078
|
+
},
|
|
46079
|
+
{
|
|
46080
|
+
disposition: 1.25,
|
|
46081
|
+
name: "BRAKK",
|
|
46082
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerHandShotgun.png",
|
|
46083
|
+
riventype: "Pistol"
|
|
46084
|
+
},
|
|
46085
|
+
{
|
|
46086
|
+
disposition: 1.35,
|
|
46087
|
+
name: "BRATON",
|
|
46088
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusAutoRifle.png",
|
|
46089
|
+
riventype: "Rifle"
|
|
46090
|
+
},
|
|
46091
|
+
{
|
|
46092
|
+
disposition: 1.25,
|
|
46093
|
+
name: "BRATON PRIME",
|
|
46094
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeBraton.png",
|
|
46095
|
+
riventype: "Rifle"
|
|
46096
|
+
},
|
|
46097
|
+
{
|
|
46098
|
+
disposition: 1.3,
|
|
46099
|
+
name: "BRATON VANDAL",
|
|
46100
|
+
texture: "_Lotus_Interface_Icons_Store_VIPWeapon.png",
|
|
46101
|
+
riventype: "Rifle"
|
|
46102
|
+
},
|
|
46103
|
+
{
|
|
46104
|
+
disposition: 1.4,
|
|
46105
|
+
name: "BROKEN SCEPTER",
|
|
46106
|
+
texture: "_Lotus_Interface_Icons_Store_GrnQueenSceptre.png",
|
|
46107
|
+
riventype: "Melee"
|
|
46108
|
+
},
|
|
46109
|
+
{
|
|
46110
|
+
disposition: 1.15,
|
|
46111
|
+
name: "BROKEN WAR",
|
|
46112
|
+
texture: "_Lotus_Interface_Icons_Store_StalkerTwoSword.png",
|
|
46113
|
+
riventype: "Melee"
|
|
46114
|
+
},
|
|
46115
|
+
{
|
|
46116
|
+
disposition: 1.45,
|
|
46117
|
+
name: "BRONCO",
|
|
46118
|
+
texture: "_Lotus_Interface_Icons_Store_HandCannon.png",
|
|
46119
|
+
riventype: "Pistol"
|
|
46120
|
+
},
|
|
46121
|
+
{
|
|
46122
|
+
disposition: 1.4,
|
|
46123
|
+
name: "BRONCO PRIME",
|
|
46124
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeBronco.png",
|
|
46125
|
+
riventype: "Pistol"
|
|
46126
|
+
},
|
|
46127
|
+
{
|
|
46128
|
+
disposition: 0.7,
|
|
46129
|
+
name: "BUBONICO",
|
|
46130
|
+
texture: "_Lotus_Interface_Icons_Store_InfArmCannon.png",
|
|
46131
|
+
riventype: "Shotgun"
|
|
46132
|
+
},
|
|
46133
|
+
{
|
|
46134
|
+
disposition: 1.45,
|
|
46135
|
+
name: "BURST LASER",
|
|
46136
|
+
texture: "_Lotus_Interface_Icons_Store_SentinelBurstLaser.png",
|
|
46137
|
+
riventype: "Pistol"
|
|
46138
|
+
},
|
|
46139
|
+
{
|
|
46140
|
+
disposition: 1.45,
|
|
46141
|
+
name: "BURSTON",
|
|
46142
|
+
texture: "_Lotus_Interface_Icons_Store_Burston.png",
|
|
46143
|
+
riventype: "Rifle"
|
|
46144
|
+
},
|
|
46145
|
+
{
|
|
46146
|
+
disposition: 1.35,
|
|
46147
|
+
name: "BURSTON PRIME",
|
|
46148
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeBurston.png",
|
|
46149
|
+
riventype: "Rifle"
|
|
46150
|
+
},
|
|
46151
|
+
{
|
|
46152
|
+
disposition: 1.45,
|
|
46153
|
+
name: "BUZLOK",
|
|
46154
|
+
texture: "_Lotus_Interface_Icons_Store_GrnGorgSniperRifle.png",
|
|
46155
|
+
riventype: "Rifle"
|
|
46156
|
+
},
|
|
46157
|
+
{
|
|
46158
|
+
disposition: 1.29,
|
|
46159
|
+
name: "CADUS",
|
|
46160
|
+
texture: "_Lotus_Interface_Icons_Store_CYSingleStaffSkin.png",
|
|
46161
|
+
riventype: "Melee"
|
|
46162
|
+
},
|
|
46163
|
+
{
|
|
46164
|
+
disposition: 1.3,
|
|
46165
|
+
name: "CARMINE PENTA",
|
|
46166
|
+
texture: "_Lotus_Interface_Icons_Store_PentaLoginRewardSkin.png",
|
|
46167
|
+
riventype: "Rifle"
|
|
46168
|
+
},
|
|
46169
|
+
{
|
|
46170
|
+
disposition: 1.35,
|
|
46171
|
+
name: "CASSOWAR",
|
|
46172
|
+
texture: "_Lotus_Interface_Icons_Store_TnHalberdPolearmWeapon.png",
|
|
46173
|
+
riventype: "Melee"
|
|
46174
|
+
},
|
|
46175
|
+
{
|
|
46176
|
+
disposition: 1.4,
|
|
46177
|
+
name: "CASTANAS",
|
|
46178
|
+
texture: "_Lotus_Interface_Icons_Store_TaserStar.png",
|
|
46179
|
+
riventype: "Pistol"
|
|
46180
|
+
},
|
|
46181
|
+
{
|
|
46182
|
+
disposition: 1.1,
|
|
46183
|
+
name: "CATABOLYST",
|
|
46184
|
+
texture: "_Lotus_Interface_Icons_Store_InfBeamPistol.png",
|
|
46185
|
+
riventype: "Pistol"
|
|
46186
|
+
},
|
|
46187
|
+
{
|
|
46188
|
+
disposition: 0.5,
|
|
46189
|
+
name: "CATCHMOON",
|
|
46190
|
+
texture: "_Lotus_Interface_Icons_Store_Weapons_Modular_SUModularSecondary_SUModularSecondaryBarrelAPart.png",
|
|
46191
|
+
riventype: "Pistol"
|
|
46192
|
+
},
|
|
46193
|
+
{
|
|
46194
|
+
disposition: 1.3,
|
|
46195
|
+
name: "CAUSTACYST",
|
|
46196
|
+
texture: "_Lotus_Interface_Icons_Store_EmbolistScythe.png",
|
|
46197
|
+
riventype: "Melee"
|
|
46198
|
+
},
|
|
46199
|
+
{
|
|
46200
|
+
disposition: 0.65,
|
|
46201
|
+
name: "CEDO",
|
|
46202
|
+
texture: "_Lotus_Interface_Icons_Store_Cedo.png",
|
|
46203
|
+
riventype: "Shotgun"
|
|
46204
|
+
},
|
|
46205
|
+
{
|
|
46206
|
+
disposition: 1.43,
|
|
46207
|
+
name: "CERAMIC DAGGER",
|
|
46208
|
+
texture: "_Lotus_Interface_Icons_Store_CeramicDagger.png",
|
|
46209
|
+
riventype: "Melee"
|
|
46210
|
+
},
|
|
46211
|
+
{
|
|
46212
|
+
disposition: 1.36,
|
|
46213
|
+
name: "CERATA",
|
|
46214
|
+
texture: "_Lotus_Interface_Icons_Store_PunctureGlaive.png",
|
|
46215
|
+
riventype: "Melee"
|
|
46216
|
+
},
|
|
46217
|
+
{
|
|
46218
|
+
disposition: 1.3,
|
|
46219
|
+
name: "CERNOS",
|
|
46220
|
+
texture: "_Lotus_Interface_Icons_Store_AntlerBow.png",
|
|
46221
|
+
riventype: "Rifle"
|
|
46222
|
+
},
|
|
46223
|
+
{
|
|
46224
|
+
disposition: 1.25,
|
|
46225
|
+
name: "CERNOS PRIME",
|
|
46226
|
+
texture: "_Lotus_Interface_Icons_Store_CernosPrime.png",
|
|
46227
|
+
riventype: "Rifle"
|
|
46228
|
+
},
|
|
46229
|
+
{
|
|
46230
|
+
disposition: 1.52,
|
|
46231
|
+
name: "CESTRA",
|
|
46232
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusMinigun.png",
|
|
46233
|
+
riventype: "Pistol"
|
|
46234
|
+
},
|
|
46235
|
+
{
|
|
46236
|
+
disposition: 1.15,
|
|
46237
|
+
name: "CETI LACERA",
|
|
46238
|
+
texture: "_Lotus_Interface_Icons_Store_OperationsLacera.png",
|
|
46239
|
+
riventype: "Melee"
|
|
46240
|
+
},
|
|
46241
|
+
{
|
|
46242
|
+
disposition: 1.3,
|
|
46243
|
+
name: "COBRA & CRANE",
|
|
46244
|
+
texture: "_Lotus_Interface_Icons_Store_PacifistShieldSword.png",
|
|
46245
|
+
riventype: "Melee"
|
|
46246
|
+
},
|
|
46247
|
+
{
|
|
46248
|
+
disposition: 1.46,
|
|
46249
|
+
name: "CONVECTRIX",
|
|
46250
|
+
texture: "_Lotus_Interface_Icons_Store_CrpSplitRifle.png",
|
|
46251
|
+
riventype: "Shotgun"
|
|
46252
|
+
},
|
|
46253
|
+
{
|
|
46254
|
+
disposition: 1.15,
|
|
46255
|
+
name: "CORINTH",
|
|
46256
|
+
texture: "_Lotus_Interface_Icons_Store_TnHeavyShotgun.png",
|
|
46257
|
+
riventype: "Shotgun"
|
|
46258
|
+
},
|
|
46259
|
+
{
|
|
46260
|
+
disposition: 0.9,
|
|
46261
|
+
name: "CORINTH PRIME",
|
|
46262
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_CorinthPrime.png",
|
|
46263
|
+
riventype: "Shotgun"
|
|
46264
|
+
},
|
|
46265
|
+
{
|
|
46266
|
+
disposition: 1,
|
|
46267
|
+
name: "CORTEGE",
|
|
46268
|
+
texture: "_Lotus_Interface_Icons_Store_ThanotechArchGun.png",
|
|
46269
|
+
riventype: "Archgun"
|
|
46270
|
+
},
|
|
46271
|
+
{
|
|
46272
|
+
disposition: 1.2,
|
|
46273
|
+
name: "CORVAS",
|
|
46274
|
+
texture: "_Lotus_Interface_Icons_Store_ArchLaunchGrenade.png",
|
|
46275
|
+
riventype: "Archgun"
|
|
46276
|
+
},
|
|
46277
|
+
{
|
|
46278
|
+
disposition: 1.48,
|
|
46279
|
+
name: "CRONUS",
|
|
46280
|
+
texture: "_Lotus_Interface_Icons_Store_SwordCeramic_d.png",
|
|
46281
|
+
riventype: "Melee"
|
|
46282
|
+
},
|
|
46283
|
+
{
|
|
46284
|
+
disposition: 1,
|
|
46285
|
+
name: "CRYOTRA",
|
|
46286
|
+
texture: "_Lotus_Interface_Icons_Store_SentinelCryoxionWeapon.png",
|
|
46287
|
+
riventype: "Rifle"
|
|
46288
|
+
},
|
|
46289
|
+
{
|
|
46290
|
+
disposition: 0.85,
|
|
46291
|
+
name: "CYANEX",
|
|
46292
|
+
texture: "_Lotus_Interface_Icons_Store_CrpSentAmalgPistol.png",
|
|
46293
|
+
riventype: "Pistol"
|
|
46294
|
+
},
|
|
46295
|
+
{
|
|
46296
|
+
disposition: 0.9,
|
|
46297
|
+
name: "CYATH",
|
|
46298
|
+
texture: "_Lotus_Interface_Icons_Store_Weapons_Modular_ModularMeleeTipFour.png",
|
|
46299
|
+
riventype: "Melee"
|
|
46300
|
+
},
|
|
46301
|
+
{
|
|
46302
|
+
disposition: 1.2,
|
|
46303
|
+
name: "CYCRON",
|
|
46304
|
+
texture: "_Lotus_Interface_Icons_Store_CrpChargeGun.png",
|
|
46305
|
+
riventype: "Pistol"
|
|
46306
|
+
},
|
|
46307
|
+
{
|
|
46308
|
+
disposition: 1.3,
|
|
46309
|
+
name: "CYNGAS",
|
|
46310
|
+
texture: "_Lotus_Interface_Icons_Store_ArchBurstGun.png",
|
|
46311
|
+
riventype: "Archgun"
|
|
46312
|
+
},
|
|
46313
|
+
{
|
|
46314
|
+
disposition: 1.25,
|
|
46315
|
+
name: "DAIKYU",
|
|
46316
|
+
texture: "_Lotus_Interface_Icons_Store_AsymmetricBow.png",
|
|
46317
|
+
riventype: "Rifle"
|
|
46318
|
+
},
|
|
46319
|
+
{
|
|
46320
|
+
disposition: 1.1,
|
|
46321
|
+
name: "DAKRA PRIME",
|
|
46322
|
+
texture: "_Lotus_Interface_Icons_Store_CronusPrime.png",
|
|
46323
|
+
riventype: "Melee"
|
|
46324
|
+
},
|
|
46325
|
+
{
|
|
46326
|
+
disposition: 1.1,
|
|
46327
|
+
name: "DARK DAGGER",
|
|
46328
|
+
texture: "_Lotus_Interface_Icons_Store_DarkDagger.png",
|
|
46329
|
+
riventype: "Melee"
|
|
46330
|
+
},
|
|
46331
|
+
{
|
|
46332
|
+
disposition: 1.21,
|
|
46333
|
+
name: "DARK SPLIT-SWORD",
|
|
46334
|
+
texture: "_Lotus_Interface_Icons_Store_DarkSwordDaggerHybrid.png",
|
|
46335
|
+
riventype: "Melee"
|
|
46336
|
+
},
|
|
46337
|
+
{
|
|
46338
|
+
disposition: 1.48,
|
|
46339
|
+
name: "DARK SWORD",
|
|
46340
|
+
texture: "_Lotus_Interface_Icons_Store_DarkSword.png",
|
|
46341
|
+
riventype: "Melee"
|
|
46342
|
+
},
|
|
46343
|
+
{
|
|
46344
|
+
disposition: 1.25,
|
|
46345
|
+
name: "DECONSTRUCTOR",
|
|
46346
|
+
texture: "_Lotus_Interface_Icons_Store_SentinelGlaiveWeapon.png",
|
|
46347
|
+
riventype: "Melee"
|
|
46348
|
+
},
|
|
46349
|
+
{
|
|
46350
|
+
disposition: 1.25,
|
|
46351
|
+
name: "DECONSTRUCTOR PRIME",
|
|
46352
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeSentinelGlaiveWeapon.png",
|
|
46353
|
+
riventype: "Melee"
|
|
46354
|
+
},
|
|
46355
|
+
{
|
|
46356
|
+
disposition: 1.2,
|
|
46357
|
+
name: "DEHTAT",
|
|
46358
|
+
texture: "_Lotus_Interface_Icons_Store_Weapons_Modular_ModularMeleeTipFive.png",
|
|
46359
|
+
riventype: "Melee"
|
|
46360
|
+
},
|
|
46361
|
+
{
|
|
46362
|
+
disposition: 1.4,
|
|
46363
|
+
name: "DERA",
|
|
46364
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusEnergyRifle.png",
|
|
46365
|
+
riventype: "Rifle"
|
|
46366
|
+
},
|
|
46367
|
+
{
|
|
46368
|
+
disposition: 1.35,
|
|
46369
|
+
name: "DERA VANDAL",
|
|
46370
|
+
texture: "_Lotus_Interface_Icons_Store_DeraVandal.png",
|
|
46371
|
+
riventype: "Rifle"
|
|
46372
|
+
},
|
|
46373
|
+
{
|
|
46374
|
+
disposition: 1,
|
|
46375
|
+
name: "Desert Wind",
|
|
46376
|
+
texture: "_Lotus_Interface_Icons_Store_PacifistFistWeapon.png",
|
|
46377
|
+
riventype: "Melee"
|
|
46378
|
+
},
|
|
46379
|
+
{
|
|
46380
|
+
disposition: 1.3,
|
|
46381
|
+
name: "DESPAIR",
|
|
46382
|
+
texture: "_Lotus_Interface_Icons_Store_StalkerKunai.png",
|
|
46383
|
+
riventype: "Pistol"
|
|
46384
|
+
},
|
|
46385
|
+
{
|
|
46386
|
+
disposition: 1.25,
|
|
46387
|
+
name: "DESTREZA",
|
|
46388
|
+
texture: "_Lotus_Interface_Icons_Store_TnoRapier.png",
|
|
46389
|
+
riventype: "Melee"
|
|
46390
|
+
},
|
|
46391
|
+
{
|
|
46392
|
+
disposition: 1.14,
|
|
46393
|
+
name: "DESTREZA PRIME",
|
|
46394
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_DestrezaPrime.png",
|
|
46395
|
+
riventype: "Melee"
|
|
46396
|
+
},
|
|
46397
|
+
{
|
|
46398
|
+
disposition: 1.455,
|
|
46399
|
+
name: "DETH MACHINE RIFLE",
|
|
46400
|
+
texture: "_Lotus_Interface_Icons_Store_SentinelDethMachineRifle.png",
|
|
46401
|
+
riventype: "Rifle"
|
|
46402
|
+
},
|
|
46403
|
+
{
|
|
46404
|
+
disposition: 1.455,
|
|
46405
|
+
name: "DETH MACHINE RIFLE PRIME",
|
|
46406
|
+
texture: "_Lotus_Interface_Icons_Store_SentinelDethMachineRiflePrime.png",
|
|
46407
|
+
riventype: "Rifle"
|
|
46408
|
+
},
|
|
46409
|
+
{
|
|
46410
|
+
disposition: 1.15,
|
|
46411
|
+
name: "DETRON",
|
|
46412
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusHandCannon.png",
|
|
46413
|
+
riventype: "Pistol"
|
|
46414
|
+
},
|
|
46415
|
+
{
|
|
46416
|
+
disposition: 1.35,
|
|
46417
|
+
name: "DEX DAKRA",
|
|
46418
|
+
texture: "_Lotus_Interface_Icons_Store_DexDakra.png",
|
|
46419
|
+
riventype: "Melee"
|
|
46420
|
+
},
|
|
46421
|
+
{
|
|
46422
|
+
disposition: 1.39,
|
|
46423
|
+
name: "DEX FURIS",
|
|
46424
|
+
texture: "_Lotus_Interface_Icons_Store_DexFuris.png",
|
|
46425
|
+
riventype: "Pistol"
|
|
46426
|
+
},
|
|
46427
|
+
{
|
|
46428
|
+
disposition: 1,
|
|
46429
|
+
name: "DEX PIXIA",
|
|
46430
|
+
texture: "_Lotus_Interface_Icons_Store_FlightPistols827.png",
|
|
46431
|
+
riventype: "Pistol"
|
|
46432
|
+
},
|
|
46433
|
+
{
|
|
46434
|
+
disposition: 1,
|
|
46435
|
+
name: "DEX PIXIA PRIME",
|
|
46436
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_DexPixiaPrime.png",
|
|
46437
|
+
riventype: "Pistol"
|
|
46438
|
+
},
|
|
46439
|
+
{
|
|
46440
|
+
disposition: 1.25,
|
|
46441
|
+
name: "DEX SYBARIS",
|
|
46442
|
+
texture: "_Lotus_Interface_Icons_Store_DexTheThird.png",
|
|
46443
|
+
riventype: "Rifle"
|
|
46444
|
+
},
|
|
46445
|
+
{
|
|
46446
|
+
disposition: 1,
|
|
46447
|
+
name: "DIWATA",
|
|
46448
|
+
texture: "_Lotus_Interface_Icons_Store_FlightSword827.png",
|
|
46449
|
+
riventype: "Melee"
|
|
46450
|
+
},
|
|
46451
|
+
{
|
|
46452
|
+
disposition: 1,
|
|
46453
|
+
name: "DIWATA PRIME",
|
|
46454
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_DiwataPrime.png",
|
|
46455
|
+
riventype: "Melee"
|
|
46456
|
+
},
|
|
46457
|
+
{
|
|
46458
|
+
disposition: 0.75,
|
|
46459
|
+
name: "DOKRAHM",
|
|
46460
|
+
texture: "_Lotus_Interface_Icons_Store_Weapons_Modular_ModularMeleeTipEleven.png",
|
|
46461
|
+
riventype: "Melee"
|
|
46462
|
+
},
|
|
46463
|
+
{
|
|
46464
|
+
disposition: 1.15,
|
|
46465
|
+
name: "DRAGON NIKANA",
|
|
46466
|
+
texture: "_Lotus_Interface_Icons_Store_DragonKatana.png",
|
|
46467
|
+
riventype: "Melee"
|
|
46468
|
+
},
|
|
46469
|
+
{
|
|
46470
|
+
disposition: 1.4,
|
|
46471
|
+
name: "DRAKGOON",
|
|
46472
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerFlakCannon.png",
|
|
46473
|
+
riventype: "Shotgun"
|
|
46474
|
+
},
|
|
46475
|
+
{
|
|
46476
|
+
disposition: 1.3,
|
|
46477
|
+
name: "DREAD",
|
|
46478
|
+
texture: "_Lotus_Interface_Icons_Store_StalkerBow.png",
|
|
46479
|
+
riventype: "Rifle"
|
|
46480
|
+
},
|
|
46481
|
+
{
|
|
46482
|
+
disposition: 1.35,
|
|
46483
|
+
name: "DUAL CESTRA",
|
|
46484
|
+
texture: "_Lotus_Interface_Icons_Store_DualCorpusMinigun.png",
|
|
46485
|
+
riventype: "Pistol"
|
|
46486
|
+
},
|
|
46487
|
+
{
|
|
46488
|
+
disposition: 1.2,
|
|
46489
|
+
name: "DUAL CLEAVERS",
|
|
46490
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerDualCleaver.png",
|
|
46491
|
+
riventype: "Melee"
|
|
46492
|
+
},
|
|
46493
|
+
{
|
|
46494
|
+
disposition: 1.3,
|
|
46495
|
+
name: "DUAL DECURION",
|
|
46496
|
+
texture: "_Lotus_Interface_Icons_Store_ArchHeavyPistols.png",
|
|
46497
|
+
riventype: "Archgun"
|
|
46498
|
+
},
|
|
46499
|
+
{
|
|
46500
|
+
disposition: 1.45,
|
|
46501
|
+
name: "DUAL ETHER",
|
|
46502
|
+
texture: "_Lotus_Interface_Icons_Store_EtherSwordAndDagger.png",
|
|
46503
|
+
riventype: "Melee"
|
|
46504
|
+
},
|
|
46505
|
+
{
|
|
46506
|
+
disposition: 1.44,
|
|
46507
|
+
name: "DUAL HEAT SWORDS",
|
|
46508
|
+
texture: "_Lotus_Interface_Icons_Store_HeatDaggers.png",
|
|
46509
|
+
riventype: "Melee"
|
|
46510
|
+
},
|
|
46511
|
+
{
|
|
46512
|
+
disposition: 1.16,
|
|
46513
|
+
name: "DUAL ICHOR",
|
|
46514
|
+
texture: "_Lotus_Interface_Icons_Store_DualInfestedAxes.png",
|
|
46515
|
+
riventype: "Melee"
|
|
46516
|
+
},
|
|
46517
|
+
{
|
|
46518
|
+
disposition: 1.3,
|
|
46519
|
+
name: "DUAL KAMAS",
|
|
46520
|
+
texture: "_Lotus_Interface_Icons_Store_DualKamas.png",
|
|
46521
|
+
riventype: "Melee"
|
|
46522
|
+
},
|
|
46523
|
+
{
|
|
46524
|
+
disposition: 1.2,
|
|
46525
|
+
name: "DUAL KAMAS PRIME",
|
|
46526
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_DualKamasPrime.png",
|
|
46527
|
+
riventype: "Melee"
|
|
46528
|
+
},
|
|
46529
|
+
{
|
|
46530
|
+
disposition: 1.1,
|
|
46531
|
+
name: "DUAL KERES",
|
|
46532
|
+
texture: "_Lotus_Interface_Icons_Store_QuillDualSwords.png",
|
|
46533
|
+
riventype: "Melee"
|
|
46534
|
+
},
|
|
46535
|
+
{
|
|
46536
|
+
disposition: 1.4,
|
|
46537
|
+
name: "DUAL RAZA",
|
|
46538
|
+
texture: "_Lotus_Interface_Icons_Store_SomaDualKamas.png",
|
|
46539
|
+
riventype: "Melee"
|
|
46540
|
+
},
|
|
46541
|
+
{
|
|
46542
|
+
disposition: 1.48,
|
|
46543
|
+
name: "DUAL SKANA",
|
|
46544
|
+
texture: "_Lotus_Interface_Icons_Store_DualSkana.png",
|
|
46545
|
+
riventype: "Melee"
|
|
46546
|
+
},
|
|
46547
|
+
{
|
|
46548
|
+
disposition: 1.35,
|
|
46549
|
+
name: "DUAL TOXOCYST",
|
|
46550
|
+
texture: "_Lotus_Interface_Icons_Store_InfVomitGun.png",
|
|
46551
|
+
riventype: "Pistol"
|
|
46552
|
+
},
|
|
46553
|
+
{
|
|
46554
|
+
disposition: 1.44,
|
|
46555
|
+
name: "DUAL ZOREN",
|
|
46556
|
+
texture: "_Lotus_Interface_Icons_Store_DualAxe.png",
|
|
46557
|
+
riventype: "Melee"
|
|
46558
|
+
},
|
|
46559
|
+
{
|
|
46560
|
+
disposition: 1.4,
|
|
46561
|
+
name: "EMBOLIST",
|
|
46562
|
+
texture: "_Lotus_Interface_Icons_Store_InfestedPistol.png",
|
|
46563
|
+
riventype: "Pistol"
|
|
46564
|
+
},
|
|
46565
|
+
{
|
|
46566
|
+
disposition: 1.4,
|
|
46567
|
+
name: "ENDURA",
|
|
46568
|
+
texture: "_Lotus_Interface_Icons_Store_ThreeLeafRapier.png",
|
|
46569
|
+
riventype: "Melee"
|
|
46570
|
+
},
|
|
46571
|
+
{
|
|
46572
|
+
disposition: 0.55,
|
|
46573
|
+
name: "EPITAPH",
|
|
46574
|
+
texture: "_Lotus_Interface_Icons_Store_TnWraithSidearmWeapon.png",
|
|
46575
|
+
riventype: "Pistol"
|
|
46576
|
+
},
|
|
46577
|
+
{
|
|
46578
|
+
disposition: 1.49,
|
|
46579
|
+
name: "ETHER DAGGERS",
|
|
46580
|
+
texture: "_Lotus_Interface_Icons_Store_EtherDaggers.png",
|
|
46581
|
+
riventype: "Melee"
|
|
46582
|
+
},
|
|
46583
|
+
{
|
|
46584
|
+
disposition: 1.45,
|
|
46585
|
+
name: "ETHER REAPER",
|
|
46586
|
+
texture: "_Lotus_Interface_Icons_Store_EtherScythe.png",
|
|
46587
|
+
riventype: "Melee"
|
|
46588
|
+
},
|
|
46589
|
+
{
|
|
46590
|
+
disposition: 1.44,
|
|
46591
|
+
name: "ETHER SWORD",
|
|
46592
|
+
texture: "_Lotus_Interface_Icons_Store_EtherBladeSingle.png",
|
|
46593
|
+
riventype: "Melee"
|
|
46594
|
+
},
|
|
46595
|
+
{
|
|
46596
|
+
disposition: 0.85,
|
|
46597
|
+
name: "EUPHONA PRIME",
|
|
46598
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_EuphoraPrime.png",
|
|
46599
|
+
riventype: "Pistol"
|
|
46600
|
+
},
|
|
46601
|
+
{
|
|
46602
|
+
disposition: 1,
|
|
46603
|
+
name: "Exalted Blade",
|
|
46604
|
+
texture: "_Lotus_Interface_Icons_Store_ExaltedBlade827x5127.png",
|
|
46605
|
+
riventype: "Melee"
|
|
46606
|
+
},
|
|
46607
|
+
{
|
|
46608
|
+
disposition: 1,
|
|
46609
|
+
name: "EXALTED PRIME BLADE",
|
|
46610
|
+
texture: "_Lotus_Interface_Icons_Store_ExaltedBladePrime827x512.png",
|
|
46611
|
+
riventype: "Melee"
|
|
46612
|
+
},
|
|
46613
|
+
{
|
|
46614
|
+
disposition: 1,
|
|
46615
|
+
name: "EXALTED UMBRA BLADE",
|
|
46616
|
+
texture: "_Lotus_Interface_Icons_Store_ExcaliburUmbraDoomSword827.png",
|
|
46617
|
+
riventype: "Melee"
|
|
46618
|
+
},
|
|
46619
|
+
{
|
|
46620
|
+
disposition: 1.1,
|
|
46621
|
+
name: "EXERGIS",
|
|
46622
|
+
texture: "_Lotus_Interface_Icons_Store_CrpShapeBlastShotgun.png",
|
|
46623
|
+
riventype: "Shotgun"
|
|
46624
|
+
},
|
|
46625
|
+
{
|
|
46626
|
+
disposition: 1.3,
|
|
46627
|
+
name: "FALCOR",
|
|
46628
|
+
texture: "_Lotus_Interface_Icons_Store_CrpGlaive.png",
|
|
46629
|
+
riventype: "Melee"
|
|
46630
|
+
},
|
|
46631
|
+
{
|
|
46632
|
+
disposition: 1.36,
|
|
46633
|
+
name: "FANG",
|
|
46634
|
+
texture: "_Lotus_Interface_Icons_Store_DualDaggers.png",
|
|
46635
|
+
riventype: "Melee"
|
|
46636
|
+
},
|
|
46637
|
+
{
|
|
46638
|
+
disposition: 1.3,
|
|
46639
|
+
name: "FANG PRIME",
|
|
46640
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeFang.png",
|
|
46641
|
+
riventype: "Melee"
|
|
46642
|
+
},
|
|
46643
|
+
{
|
|
46644
|
+
disposition: 1.15,
|
|
46645
|
+
name: "FERROX",
|
|
46646
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusSpearGun.png",
|
|
46647
|
+
riventype: "Rifle"
|
|
46648
|
+
},
|
|
46649
|
+
{
|
|
46650
|
+
disposition: 1,
|
|
46651
|
+
name: "FLUCTUS",
|
|
46652
|
+
texture: "_Lotus_Interface_Icons_Store_ArchRocketCrossbow.png",
|
|
46653
|
+
riventype: "Archgun"
|
|
46654
|
+
},
|
|
46655
|
+
{
|
|
46656
|
+
disposition: 1.55,
|
|
46657
|
+
name: "FLUX RIFLE",
|
|
46658
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusLaserRifle.png",
|
|
46659
|
+
riventype: "Rifle"
|
|
46660
|
+
},
|
|
46661
|
+
{
|
|
46662
|
+
disposition: 1.2,
|
|
46663
|
+
name: "FRAGOR",
|
|
46664
|
+
texture: "_Lotus_Interface_Icons_Store_Hammer.png",
|
|
46665
|
+
riventype: "Melee"
|
|
46666
|
+
},
|
|
46667
|
+
{
|
|
46668
|
+
disposition: 1.05,
|
|
46669
|
+
name: "FRAGOR PRIME",
|
|
46670
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_FragorPrime.png",
|
|
46671
|
+
riventype: "Melee"
|
|
46672
|
+
},
|
|
46673
|
+
{
|
|
46674
|
+
disposition: 0.7,
|
|
46675
|
+
name: "FULMIN",
|
|
46676
|
+
texture: "_Lotus_Interface_Icons_Store_TnWispRifle.png",
|
|
46677
|
+
riventype: "Rifle"
|
|
46678
|
+
},
|
|
46679
|
+
{
|
|
46680
|
+
disposition: 1.38,
|
|
46681
|
+
name: "FURAX",
|
|
46682
|
+
texture: "_Lotus_Interface_Icons_Store_MeleeGauntlets.png",
|
|
46683
|
+
riventype: "Melee"
|
|
46684
|
+
},
|
|
46685
|
+
{
|
|
46686
|
+
disposition: 1.38,
|
|
46687
|
+
name: "FURAX WRAITH",
|
|
46688
|
+
texture: "_Lotus_Interface_Icons_Store_WraithFurax.png",
|
|
46689
|
+
riventype: "Melee"
|
|
46690
|
+
},
|
|
46691
|
+
{
|
|
46692
|
+
disposition: 1.35,
|
|
46693
|
+
name: "FURIS",
|
|
46694
|
+
texture: "_Lotus_Interface_Icons_Store_Furis.png",
|
|
46695
|
+
riventype: "Pistol"
|
|
46696
|
+
},
|
|
46697
|
+
{
|
|
46698
|
+
disposition: 1.35,
|
|
46699
|
+
name: "FUSILAI",
|
|
46700
|
+
texture: "_Lotus_Interface_Icons_Store_GlassKunai.png",
|
|
46701
|
+
riventype: "Pistol"
|
|
46702
|
+
},
|
|
46703
|
+
{
|
|
46704
|
+
disposition: 1.05,
|
|
46705
|
+
name: "GALATINE",
|
|
46706
|
+
texture: "_Lotus_Interface_Icons_Store_TennoGreatSword.png",
|
|
46707
|
+
riventype: "Melee"
|
|
46708
|
+
},
|
|
46709
|
+
{
|
|
46710
|
+
disposition: 0.85,
|
|
46711
|
+
name: "GALATINE PRIME",
|
|
46712
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_PrimeGalatine.png",
|
|
46713
|
+
riventype: "Melee"
|
|
46714
|
+
},
|
|
46715
|
+
{
|
|
46716
|
+
disposition: 1.35,
|
|
46717
|
+
name: "GALVACORD",
|
|
46718
|
+
texture: "_Lotus_Interface_Icons_Store_CrpShockWhip.png",
|
|
46719
|
+
riventype: "Melee"
|
|
46720
|
+
},
|
|
46721
|
+
{
|
|
46722
|
+
disposition: 1.15,
|
|
46723
|
+
name: "GAMMACOR",
|
|
46724
|
+
texture: "_Lotus_Interface_Icons_Store_Gammacor.png",
|
|
46725
|
+
riventype: "Pistol"
|
|
46726
|
+
},
|
|
46727
|
+
{
|
|
46728
|
+
disposition: 1,
|
|
46729
|
+
name: "GARUDA'S TALONS",
|
|
46730
|
+
texture: "_Lotus_Interface_Icons_Store_GarudaMeleeClaws.png",
|
|
46731
|
+
riventype: "Melee"
|
|
46732
|
+
},
|
|
46733
|
+
{
|
|
46734
|
+
disposition: 1.4,
|
|
46735
|
+
name: "GAZAL MACHETE",
|
|
46736
|
+
texture: "_Lotus_Interface_Icons_Store_DjinnMachete.png",
|
|
46737
|
+
riventype: "Melee"
|
|
46738
|
+
},
|
|
46739
|
+
{
|
|
46740
|
+
disposition: 0.9,
|
|
46741
|
+
name: "GAZE",
|
|
46742
|
+
texture: "_Lotus_Interface_Icons_Store_Weapons_Modular_SUModularSecondary_SUModularSecondaryBarrelDPart.png",
|
|
46743
|
+
riventype: "Pistol"
|
|
46744
|
+
},
|
|
46745
|
+
{
|
|
46746
|
+
disposition: 0.5,
|
|
46747
|
+
name: "GHOULSAW",
|
|
46748
|
+
texture: "_Lotus_Interface_Icons_Store_GrnGhoulSawWeapon.png",
|
|
46749
|
+
riventype: "Melee"
|
|
46750
|
+
},
|
|
46751
|
+
{
|
|
46752
|
+
disposition: 1.3,
|
|
46753
|
+
name: "GLAIVE",
|
|
46754
|
+
texture: "_Lotus_Interface_Icons_Store_GlaiveLight.png",
|
|
46755
|
+
riventype: "Melee"
|
|
46756
|
+
},
|
|
46757
|
+
{
|
|
46758
|
+
disposition: 0.8,
|
|
46759
|
+
name: "GLAIVE PRIME",
|
|
46760
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeGlaive.png",
|
|
46761
|
+
riventype: "Melee"
|
|
46762
|
+
},
|
|
46763
|
+
{
|
|
46764
|
+
disposition: 1.3,
|
|
46765
|
+
name: "GLAXION",
|
|
46766
|
+
texture: "_Lotus_Interface_Icons_Store_CrpFreezeRayRifle.png",
|
|
46767
|
+
riventype: "Rifle"
|
|
46768
|
+
},
|
|
46769
|
+
{
|
|
46770
|
+
disposition: 1.25,
|
|
46771
|
+
name: "GLAXION VANDAL",
|
|
46772
|
+
texture: "_Lotus_Interface_Icons_Store_CrpFreezeRayVandal.png",
|
|
46773
|
+
riventype: "Rifle"
|
|
46774
|
+
},
|
|
46775
|
+
{
|
|
46776
|
+
disposition: 1.4,
|
|
46777
|
+
name: "GORGON",
|
|
46778
|
+
texture: "_Lotus_Interface_Icons_Store_Gorgon.png",
|
|
46779
|
+
riventype: "Rifle"
|
|
46780
|
+
},
|
|
46781
|
+
{
|
|
46782
|
+
disposition: 1.35,
|
|
46783
|
+
name: "GORGON WRAITH",
|
|
46784
|
+
texture: "_Lotus_Interface_Icons_Store_WraithGorgon.png",
|
|
46785
|
+
riventype: "Rifle"
|
|
46786
|
+
},
|
|
46787
|
+
{
|
|
46788
|
+
disposition: 1.35,
|
|
46789
|
+
name: "GRAKATA",
|
|
46790
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerAssaultRifle.png",
|
|
46791
|
+
riventype: "Rifle"
|
|
46792
|
+
},
|
|
46793
|
+
{
|
|
46794
|
+
disposition: 1.44,
|
|
46795
|
+
name: "GRAM",
|
|
46796
|
+
texture: "_Lotus_Interface_Icons_Store_GreatSword.png",
|
|
46797
|
+
riventype: "Melee"
|
|
46798
|
+
},
|
|
46799
|
+
{
|
|
46800
|
+
disposition: 0.75,
|
|
46801
|
+
name: "GRAM PRIME",
|
|
46802
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_GramPrime.png",
|
|
46803
|
+
riventype: "Melee"
|
|
46804
|
+
},
|
|
46805
|
+
{
|
|
46806
|
+
disposition: 1.05,
|
|
46807
|
+
name: "GRATTLER",
|
|
46808
|
+
texture: "_Lotus_Interface_Icons_Store_GrnAntiAirGun.png",
|
|
46809
|
+
riventype: "Archgun"
|
|
46810
|
+
},
|
|
46811
|
+
{
|
|
46812
|
+
disposition: 1.3,
|
|
46813
|
+
name: "GRINLOK",
|
|
46814
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerLeverActionRifle.png",
|
|
46815
|
+
riventype: "Rifle"
|
|
46816
|
+
},
|
|
46817
|
+
{
|
|
46818
|
+
disposition: 1.05,
|
|
46819
|
+
name: "GUANDAO",
|
|
46820
|
+
texture: "_Lotus_Interface_Icons_Store_TnGuandaoPolearm.png",
|
|
46821
|
+
riventype: "Melee"
|
|
46822
|
+
},
|
|
46823
|
+
{
|
|
46824
|
+
disposition: 0.65,
|
|
46825
|
+
name: "GUANDAO PRIME",
|
|
46826
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_GuandaoPrime.png",
|
|
46827
|
+
riventype: "Melee"
|
|
46828
|
+
},
|
|
46829
|
+
{
|
|
46830
|
+
disposition: 1.35,
|
|
46831
|
+
name: "GUNSEN",
|
|
46832
|
+
texture: "_Lotus_Interface_Icons_Store_WarfanWeapon.png",
|
|
46833
|
+
riventype: "Melee"
|
|
46834
|
+
},
|
|
46835
|
+
{
|
|
46836
|
+
disposition: 1.44,
|
|
46837
|
+
name: "HALIKAR",
|
|
46838
|
+
texture: "_Lotus_Interface_Icons_Store_GrnBoomerang.png",
|
|
46839
|
+
riventype: "Melee"
|
|
46840
|
+
},
|
|
46841
|
+
{
|
|
46842
|
+
disposition: 0.85,
|
|
46843
|
+
name: "HALIKAR WRAITH",
|
|
46844
|
+
texture: "_Lotus_Interface_Icons_Store_HalikarWraith.png",
|
|
46845
|
+
riventype: "Melee"
|
|
46846
|
+
},
|
|
46847
|
+
{
|
|
46848
|
+
disposition: 1.55,
|
|
46849
|
+
name: "HARPAK",
|
|
46850
|
+
texture: "_Lotus_Interface_Icons_Store_GrnHarpoonGun.png",
|
|
46851
|
+
riventype: "Rifle"
|
|
46852
|
+
},
|
|
46853
|
+
{
|
|
46854
|
+
disposition: 1.1,
|
|
46855
|
+
name: "HATE",
|
|
46856
|
+
texture: "_Lotus_Interface_Icons_Store_StalkerScythe.png",
|
|
46857
|
+
riventype: "Melee"
|
|
46858
|
+
},
|
|
46859
|
+
{
|
|
46860
|
+
disposition: 1.44,
|
|
46861
|
+
name: "HEAT DAGGER",
|
|
46862
|
+
texture: "_Lotus_Interface_Icons_Store_HeatDagger.png",
|
|
46863
|
+
riventype: "Melee"
|
|
46864
|
+
},
|
|
46865
|
+
{
|
|
46866
|
+
disposition: 1.48,
|
|
46867
|
+
name: "HEAT SWORD",
|
|
46868
|
+
texture: "_Lotus_Interface_Icons_Store_SwordHeat_d.png",
|
|
46869
|
+
riventype: "Melee"
|
|
46870
|
+
},
|
|
46871
|
+
{
|
|
46872
|
+
disposition: 1.2,
|
|
46873
|
+
name: "HEK",
|
|
46874
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerQuadShotgun.png",
|
|
46875
|
+
riventype: "Shotgun"
|
|
46876
|
+
},
|
|
46877
|
+
{
|
|
46878
|
+
disposition: 1.35,
|
|
46879
|
+
name: "HELIOCOR",
|
|
46880
|
+
texture: "_Lotus_Interface_Icons_Store_CephHammer.png",
|
|
46881
|
+
riventype: "Melee"
|
|
46882
|
+
},
|
|
46883
|
+
{
|
|
46884
|
+
disposition: 1,
|
|
46885
|
+
name: "HELSTRUM",
|
|
46886
|
+
texture: "_Lotus_Interface_Icons_Store_SwarmerWeapon.png",
|
|
46887
|
+
riventype: "Rifle"
|
|
46888
|
+
},
|
|
46889
|
+
{
|
|
46890
|
+
disposition: 1.3,
|
|
46891
|
+
name: "HEMA",
|
|
46892
|
+
texture: "_Lotus_Interface_Icons_Store_InfestedBurstRifle.png",
|
|
46893
|
+
riventype: "Rifle"
|
|
46894
|
+
},
|
|
46895
|
+
{
|
|
46896
|
+
disposition: 1.3,
|
|
46897
|
+
name: "HIKOU",
|
|
46898
|
+
texture: "_Lotus_Interface_Icons_Store_ThrowingStar.png",
|
|
46899
|
+
riventype: "Pistol"
|
|
46900
|
+
},
|
|
46901
|
+
{
|
|
46902
|
+
disposition: 1.25,
|
|
46903
|
+
name: "HIKOU PRIME",
|
|
46904
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeHikou.png",
|
|
46905
|
+
riventype: "Pistol"
|
|
46906
|
+
},
|
|
46907
|
+
{
|
|
46908
|
+
disposition: 1.42,
|
|
46909
|
+
name: "HIND",
|
|
46910
|
+
texture: "_Lotus_Interface_Icons_Store_GrnBurstIcon.png",
|
|
46911
|
+
riventype: "Rifle"
|
|
46912
|
+
},
|
|
46913
|
+
{
|
|
46914
|
+
disposition: 1.1,
|
|
46915
|
+
name: "HIRUDO",
|
|
46916
|
+
texture: "_Lotus_Interface_Icons_Store_InfestedKogake.png",
|
|
46917
|
+
riventype: "Melee"
|
|
46918
|
+
},
|
|
46919
|
+
{
|
|
46920
|
+
disposition: 1.2,
|
|
46921
|
+
name: "HYSTRIX",
|
|
46922
|
+
texture: "_Lotus_Interface_Icons_Store_QuillDartGun.png",
|
|
46923
|
+
riventype: "Pistol"
|
|
46924
|
+
},
|
|
46925
|
+
{
|
|
46926
|
+
disposition: 0.6,
|
|
46927
|
+
name: "IGNIS",
|
|
46928
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerFlameThrower.png",
|
|
46929
|
+
riventype: "Rifle"
|
|
46930
|
+
},
|
|
46931
|
+
{
|
|
46932
|
+
disposition: 0.55,
|
|
46933
|
+
name: "IGNIS WRAITH",
|
|
46934
|
+
texture: "_Lotus_Interface_Icons_Store_IgnisWraith.png",
|
|
46935
|
+
riventype: "Rifle"
|
|
46936
|
+
},
|
|
46937
|
+
{
|
|
46938
|
+
disposition: 1.1,
|
|
46939
|
+
name: "IMPERATOR",
|
|
46940
|
+
texture: "_Lotus_Interface_Icons_Store_ArchwingMachinegun.png",
|
|
46941
|
+
riventype: "Archgun"
|
|
46942
|
+
},
|
|
46943
|
+
{
|
|
46944
|
+
disposition: 0.9,
|
|
46945
|
+
name: "IMPERATOR VANDAL",
|
|
46946
|
+
texture: "_Lotus_Interface_Icons_Store_ImperatorVandal.png",
|
|
46947
|
+
riventype: "Archgun"
|
|
46948
|
+
},
|
|
46949
|
+
{
|
|
46950
|
+
disposition: 1,
|
|
46951
|
+
name: "IRON STAFF",
|
|
46952
|
+
texture: "_Lotus_Interface_Icons_Store_MonkeyKingStaff827.png",
|
|
46953
|
+
riventype: "Melee"
|
|
46954
|
+
},
|
|
46955
|
+
{
|
|
46956
|
+
disposition: 1,
|
|
46957
|
+
name: "IRON STAFF PRIME",
|
|
46958
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_WukongPrimeStaff.png",
|
|
46959
|
+
riventype: "Melee"
|
|
46960
|
+
},
|
|
46961
|
+
{
|
|
46962
|
+
disposition: 1.35,
|
|
46963
|
+
name: "JAT KITTAG",
|
|
46964
|
+
texture: "_Lotus_Interface_Icons_Store_GrnJetPwrPolearm.png",
|
|
46965
|
+
riventype: "Melee"
|
|
46966
|
+
},
|
|
46967
|
+
{
|
|
46968
|
+
disposition: 1.1,
|
|
46969
|
+
name: "JAT KUSAR",
|
|
46970
|
+
texture: "_Lotus_Interface_Icons_Store_GrnKusarigamaWeapon.png",
|
|
46971
|
+
riventype: "Melee"
|
|
46972
|
+
},
|
|
46973
|
+
{
|
|
46974
|
+
disposition: 1.3,
|
|
46975
|
+
name: "JAVLOK",
|
|
46976
|
+
texture: "_Lotus_Interface_Icons_Store_GrnFlameSpear.png",
|
|
46977
|
+
riventype: "Rifle"
|
|
46978
|
+
},
|
|
46979
|
+
{
|
|
46980
|
+
disposition: 1.4,
|
|
46981
|
+
name: "JAW SWORD",
|
|
46982
|
+
texture: "_Lotus_Interface_Icons_Store_SwordJaw_d.png",
|
|
46983
|
+
riventype: "Melee"
|
|
46984
|
+
},
|
|
46985
|
+
{
|
|
46986
|
+
disposition: 1.47,
|
|
46987
|
+
name: "KAMA",
|
|
46988
|
+
texture: "_Lotus_Interface_Icons_Store_Kama.png",
|
|
46989
|
+
riventype: "Melee"
|
|
46990
|
+
},
|
|
46991
|
+
{
|
|
46992
|
+
disposition: 1.35,
|
|
46993
|
+
name: "KARAK",
|
|
46994
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerM16Rifle.png",
|
|
46995
|
+
riventype: "Rifle"
|
|
46996
|
+
},
|
|
46997
|
+
{
|
|
46998
|
+
disposition: 1.28,
|
|
46999
|
+
name: "KARAK WRAITH",
|
|
47000
|
+
texture: "_Lotus_Interface_Icons_Store_KarakWraith.png",
|
|
47001
|
+
riventype: "Rifle"
|
|
47002
|
+
},
|
|
47003
|
+
{
|
|
47004
|
+
disposition: 1.35,
|
|
47005
|
+
name: "KARYST",
|
|
47006
|
+
texture: "_Lotus_Interface_Icons_Store_KrisDagger.png",
|
|
47007
|
+
riventype: "Melee"
|
|
47008
|
+
},
|
|
47009
|
+
{
|
|
47010
|
+
disposition: 1.05,
|
|
47011
|
+
name: "KARYST PRIME",
|
|
47012
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_KarystPrime.png",
|
|
47013
|
+
riventype: "Melee"
|
|
47014
|
+
},
|
|
47015
|
+
{
|
|
47016
|
+
disposition: 1,
|
|
47017
|
+
name: "KERATINOS",
|
|
47018
|
+
texture: "_Lotus_Interface_Icons_Store_InfTransformClaws.png",
|
|
47019
|
+
riventype: "Melee"
|
|
47020
|
+
},
|
|
47021
|
+
{
|
|
47022
|
+
disposition: 1.35,
|
|
47023
|
+
name: "KESHEG",
|
|
47024
|
+
texture: "_Lotus_Interface_Icons_Store_GrnHalberd.png",
|
|
47025
|
+
riventype: "Melee"
|
|
47026
|
+
},
|
|
47027
|
+
{
|
|
47028
|
+
disposition: 1.45,
|
|
47029
|
+
name: "KESTREL",
|
|
47030
|
+
texture: "_Lotus_Interface_Icons_Store_Boomerang.png",
|
|
47031
|
+
riventype: "Melee"
|
|
47032
|
+
},
|
|
47033
|
+
{
|
|
47034
|
+
disposition: 1.25,
|
|
47035
|
+
name: "KNELL",
|
|
47036
|
+
texture: "_Lotus_Interface_Icons_Store_PriestPistol.png",
|
|
47037
|
+
riventype: "Pistol"
|
|
47038
|
+
},
|
|
47039
|
+
{
|
|
47040
|
+
disposition: 1.46,
|
|
47041
|
+
name: "KOGAKE",
|
|
47042
|
+
texture: "_Lotus_Interface_Icons_Store_Kogake.png",
|
|
47043
|
+
riventype: "Melee"
|
|
47044
|
+
},
|
|
47045
|
+
{
|
|
47046
|
+
disposition: 1.4,
|
|
47047
|
+
name: "KOGAKE PRIME",
|
|
47048
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_KogakePrime.png",
|
|
47049
|
+
riventype: "Melee"
|
|
47050
|
+
},
|
|
47051
|
+
{
|
|
47052
|
+
disposition: 1.3,
|
|
47053
|
+
name: "KOHM",
|
|
47054
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerSparkGun.png",
|
|
47055
|
+
riventype: "Shotgun"
|
|
47056
|
+
},
|
|
47057
|
+
{
|
|
47058
|
+
disposition: 1.35,
|
|
47059
|
+
name: "KOHMAK",
|
|
47060
|
+
texture: "_Lotus_Interface_Icons_Store_GrnWindUpPistol.png",
|
|
47061
|
+
riventype: "Pistol"
|
|
47062
|
+
},
|
|
47063
|
+
{
|
|
47064
|
+
disposition: 1.15,
|
|
47065
|
+
name: "KOMOREX",
|
|
47066
|
+
texture: "_Lotus_Interface_Icons_Store_CrpSentAmalgSniper.png",
|
|
47067
|
+
riventype: "Rifle"
|
|
47068
|
+
},
|
|
47069
|
+
{
|
|
47070
|
+
disposition: 0.75,
|
|
47071
|
+
name: "KOMPRESSA",
|
|
47072
|
+
texture: "_Lotus_Interface_Icons_Store_YareliPistol.png",
|
|
47073
|
+
riventype: "Pistol"
|
|
47074
|
+
},
|
|
47075
|
+
{
|
|
47076
|
+
disposition: 1.35,
|
|
47077
|
+
name: "KORRUDO",
|
|
47078
|
+
texture: "_Lotus_Interface_Icons_Store_GrnSpiderSparring.png",
|
|
47079
|
+
riventype: "Melee"
|
|
47080
|
+
},
|
|
47081
|
+
{
|
|
47082
|
+
disposition: 1.53,
|
|
47083
|
+
name: "KRAKEN",
|
|
47084
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerHeavyPistol.png",
|
|
47085
|
+
riventype: "Pistol"
|
|
47086
|
+
},
|
|
47087
|
+
{
|
|
47088
|
+
disposition: 1.35,
|
|
47089
|
+
name: "KRESKA",
|
|
47090
|
+
texture: "_Lotus_Interface_Icons_Store_CrpVenusHatchet.png",
|
|
47091
|
+
riventype: "Melee"
|
|
47092
|
+
},
|
|
47093
|
+
{
|
|
47094
|
+
disposition: 1.35,
|
|
47095
|
+
name: "KROHKUR",
|
|
47096
|
+
texture: "_Lotus_Interface_Icons_Store_GrnEgyptSword.png",
|
|
47097
|
+
riventype: "Melee"
|
|
47098
|
+
},
|
|
47099
|
+
{
|
|
47100
|
+
disposition: 1.43,
|
|
47101
|
+
name: "KRONEN",
|
|
47102
|
+
texture: "_Lotus_Interface_Icons_Store_TennoTonfa.png",
|
|
47103
|
+
riventype: "Melee"
|
|
47104
|
+
},
|
|
47105
|
+
{
|
|
47106
|
+
disposition: 0.6,
|
|
47107
|
+
name: "KRONEN PRIME",
|
|
47108
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_KronenPrime.png",
|
|
47109
|
+
riventype: "Melee"
|
|
47110
|
+
},
|
|
47111
|
+
{
|
|
47112
|
+
disposition: 1.3,
|
|
47113
|
+
name: "KRONSH",
|
|
47114
|
+
texture: "_Lotus_Interface_Icons_Store_Weapons_Modular_ModularMeleeTipSix.png",
|
|
47115
|
+
riventype: "Melee"
|
|
47116
|
+
},
|
|
47117
|
+
{
|
|
47118
|
+
disposition: 1.3,
|
|
47119
|
+
name: "KULSTAR",
|
|
47120
|
+
texture: "_Lotus_Interface_Icons_Store_GrnTorpedoPistol.png",
|
|
47121
|
+
riventype: "Pistol"
|
|
47122
|
+
},
|
|
47123
|
+
{
|
|
47124
|
+
disposition: 1.51,
|
|
47125
|
+
name: "KUNAI",
|
|
47126
|
+
texture: "_Lotus_Interface_Icons_Store_KunaiThrowingKnives.png",
|
|
47127
|
+
riventype: "Pistol"
|
|
47128
|
+
},
|
|
47129
|
+
{
|
|
47130
|
+
disposition: 1,
|
|
47131
|
+
name: "KUVA AYANGA",
|
|
47132
|
+
texture: "_Lotus_Interface_Icons_Store_GrnHeavyGrenadeLauncher.png",
|
|
47133
|
+
riventype: "Archgun"
|
|
47134
|
+
},
|
|
47135
|
+
{
|
|
47136
|
+
disposition: 0.85,
|
|
47137
|
+
name: "KUVA BRAKK",
|
|
47138
|
+
texture: "_Lotus_Interface_Icons_Store_KuvaLichBrakkSkin.png",
|
|
47139
|
+
riventype: "Pistol"
|
|
47140
|
+
},
|
|
47141
|
+
{
|
|
47142
|
+
disposition: 0.6,
|
|
47143
|
+
name: "KUVA BRAMMA",
|
|
47144
|
+
texture: "_Lotus_Interface_Icons_Store_KuvaGrnBow.png",
|
|
47145
|
+
riventype: "Rifle"
|
|
47146
|
+
},
|
|
47147
|
+
{
|
|
47148
|
+
disposition: 0.85,
|
|
47149
|
+
name: "KUVA CHAKKHURR",
|
|
47150
|
+
texture: "_Lotus_Interface_Icons_Store_GrnKuvaLichRifleWeapon.png",
|
|
47151
|
+
riventype: "Rifle"
|
|
47152
|
+
},
|
|
47153
|
+
{
|
|
47154
|
+
disposition: 1.1,
|
|
47155
|
+
name: "KUVA DRAKGOON",
|
|
47156
|
+
texture: "_Lotus_Interface_Icons_Store_KuvaLichDrakgoonSkin.png",
|
|
47157
|
+
riventype: "Shotgun"
|
|
47158
|
+
},
|
|
47159
|
+
{
|
|
47160
|
+
disposition: 0.6,
|
|
47161
|
+
name: "KUVA GRATTLER",
|
|
47162
|
+
texture: "_Lotus_Interface_Icons_Store_KuvaGrattler.png",
|
|
47163
|
+
riventype: "Archgun"
|
|
47164
|
+
},
|
|
47165
|
+
{
|
|
47166
|
+
disposition: 0.7,
|
|
47167
|
+
name: "KUVA HEK",
|
|
47168
|
+
texture: "_Lotus_Interface_Icons_Store_KuvaHek.png",
|
|
47169
|
+
riventype: "Shotgun"
|
|
47170
|
+
},
|
|
47171
|
+
{
|
|
47172
|
+
disposition: 1.05,
|
|
47173
|
+
name: "KUVA HIND",
|
|
47174
|
+
texture: "_Lotus_Interface_Icons_Store_KuvaHind.png",
|
|
47175
|
+
riventype: "Rifle"
|
|
47176
|
+
},
|
|
47177
|
+
{
|
|
47178
|
+
disposition: 1,
|
|
47179
|
+
name: "KUVA KARAK",
|
|
47180
|
+
texture: "_Lotus_Interface_Icons_Store_KuvaLichKarakSkin.png",
|
|
47181
|
+
riventype: "Rifle"
|
|
47182
|
+
},
|
|
47183
|
+
{
|
|
47184
|
+
disposition: 0.85,
|
|
47185
|
+
name: "KUVA KOHM",
|
|
47186
|
+
texture: "_Lotus_Interface_Icons_Store_KuvaLichKohmSkin.png",
|
|
47187
|
+
riventype: "Shotgun"
|
|
47188
|
+
},
|
|
47189
|
+
{
|
|
47190
|
+
disposition: 1.05,
|
|
47191
|
+
name: "KUVA KRAKEN",
|
|
47192
|
+
texture: "_Lotus_Interface_Icons_Store_KuvaLichKrakenSkin.png",
|
|
47193
|
+
riventype: "Pistol"
|
|
47194
|
+
},
|
|
47195
|
+
{
|
|
47196
|
+
disposition: 0.5,
|
|
47197
|
+
name: "KUVA NUKOR",
|
|
47198
|
+
texture: "_Lotus_Interface_Icons_Store_KuvaNukor.png",
|
|
47199
|
+
riventype: "Pistol"
|
|
47200
|
+
},
|
|
47201
|
+
{
|
|
47202
|
+
disposition: 0.85,
|
|
47203
|
+
name: "KUVA OGRIS",
|
|
47204
|
+
texture: "_Lotus_Interface_Icons_Store_KuvaLichOgrisSkin.png",
|
|
47205
|
+
riventype: "Rifle"
|
|
47206
|
+
},
|
|
47207
|
+
{
|
|
47208
|
+
disposition: 1,
|
|
47209
|
+
name: "KUVA QUARTAKK",
|
|
47210
|
+
texture: "_Lotus_Interface_Icons_Store_KuvaLichQuartakkSkin.png",
|
|
47211
|
+
riventype: "Rifle"
|
|
47212
|
+
},
|
|
47213
|
+
{
|
|
47214
|
+
disposition: 1,
|
|
47215
|
+
name: "KUVA SEER",
|
|
47216
|
+
texture: "_Lotus_Interface_Icons_Store_KuvaLichSeerSkin.png",
|
|
47217
|
+
riventype: "Pistol"
|
|
47218
|
+
},
|
|
47219
|
+
{
|
|
47220
|
+
disposition: 0.75,
|
|
47221
|
+
name: "KUVA SHILDEG",
|
|
47222
|
+
texture: "_Lotus_Interface_Icons_Store_GrnKuvaLichScytheWeapon.png",
|
|
47223
|
+
riventype: "Melee"
|
|
47224
|
+
},
|
|
47225
|
+
{
|
|
47226
|
+
disposition: 0.95,
|
|
47227
|
+
name: "KUVA TONKOR",
|
|
47228
|
+
texture: "_Lotus_Interface_Icons_Store_KuvaLichTonkorSkin.png",
|
|
47229
|
+
riventype: "Rifle"
|
|
47230
|
+
},
|
|
47231
|
+
{
|
|
47232
|
+
disposition: 0.85,
|
|
47233
|
+
name: "KUVA TWIN STUBBAS",
|
|
47234
|
+
texture: "_Lotus_Interface_Icons_Store_KuvaLichStubbaSkin.png",
|
|
47235
|
+
riventype: "Pistol"
|
|
47236
|
+
},
|
|
47237
|
+
{
|
|
47238
|
+
disposition: 0.6,
|
|
47239
|
+
name: "KUVA ZARR",
|
|
47240
|
+
texture: "_Lotus_Interface_Icons_Store_KuvaZarr.png",
|
|
47241
|
+
riventype: "Rifle"
|
|
47242
|
+
},
|
|
47243
|
+
{
|
|
47244
|
+
disposition: 1.31,
|
|
47245
|
+
name: "LACERA",
|
|
47246
|
+
texture: "_Lotus_Interface_Icons_Store_StalkerMios.png",
|
|
47247
|
+
riventype: "Melee"
|
|
47248
|
+
},
|
|
47249
|
+
{
|
|
47250
|
+
disposition: 1.05,
|
|
47251
|
+
name: "LANKA",
|
|
47252
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusSniperRifle.png",
|
|
47253
|
+
riventype: "Rifle"
|
|
47254
|
+
},
|
|
47255
|
+
{
|
|
47256
|
+
disposition: 0.9,
|
|
47257
|
+
name: "LARKSPUR",
|
|
47258
|
+
texture: "_Lotus_Interface_Icons_Store_ShieldFrameArchGun.png",
|
|
47259
|
+
riventype: "Archgun"
|
|
47260
|
+
},
|
|
47261
|
+
{
|
|
47262
|
+
disposition: 1.21,
|
|
47263
|
+
name: "LASER RIFLE",
|
|
47264
|
+
texture: "_Lotus_Interface_Icons_Store_SentinelLaserRifle.png",
|
|
47265
|
+
riventype: "Rifle"
|
|
47266
|
+
},
|
|
47267
|
+
{
|
|
47268
|
+
disposition: 1.4,
|
|
47269
|
+
name: "LATO",
|
|
47270
|
+
texture: "_Lotus_Interface_Icons_Store_Pistol.png",
|
|
47271
|
+
riventype: "Pistol"
|
|
47272
|
+
},
|
|
47273
|
+
{
|
|
47274
|
+
disposition: 1.35,
|
|
47275
|
+
name: "LATO PRIME",
|
|
47276
|
+
texture: "_Lotus_Interface_Icons_Store_LatoPrime.png",
|
|
47277
|
+
riventype: "Pistol"
|
|
47278
|
+
},
|
|
47279
|
+
{
|
|
47280
|
+
disposition: 1.35,
|
|
47281
|
+
name: "LATO VANDAL",
|
|
47282
|
+
texture: "_Lotus_Interface_Icons_Store_LatoVandal.png",
|
|
47283
|
+
riventype: "Pistol"
|
|
47284
|
+
},
|
|
47285
|
+
{
|
|
47286
|
+
disposition: 1.4,
|
|
47287
|
+
name: "LATRON",
|
|
47288
|
+
texture: "_Lotus_Interface_Icons_Store_TennoSemiAutoRifle.png",
|
|
47289
|
+
riventype: "Rifle"
|
|
47290
|
+
},
|
|
47291
|
+
{
|
|
47292
|
+
disposition: 1.3,
|
|
47293
|
+
name: "LATRON PRIME",
|
|
47294
|
+
texture: "_Lotus_Interface_Icons_Store_LatronPrime.png",
|
|
47295
|
+
riventype: "Rifle"
|
|
47296
|
+
},
|
|
47297
|
+
{
|
|
47298
|
+
disposition: 1.35,
|
|
47299
|
+
name: "LATRON WRAITH",
|
|
47300
|
+
texture: "_Lotus_Interface_Icons_Store_WraithLatron.png",
|
|
47301
|
+
riventype: "Rifle"
|
|
47302
|
+
},
|
|
47303
|
+
{
|
|
47304
|
+
disposition: 1.25,
|
|
47305
|
+
name: "LECTA",
|
|
47306
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusWhip.png",
|
|
47307
|
+
riventype: "Melee"
|
|
47308
|
+
},
|
|
47309
|
+
{
|
|
47310
|
+
disposition: 0.95,
|
|
47311
|
+
name: "LENZ",
|
|
47312
|
+
texture: "_Lotus_Interface_Icons_Store_CrpBow.png",
|
|
47313
|
+
riventype: "Rifle"
|
|
47314
|
+
},
|
|
47315
|
+
{
|
|
47316
|
+
disposition: 0.7,
|
|
47317
|
+
name: "LESION",
|
|
47318
|
+
texture: "_Lotus_Interface_Icons_Store_InfTipedo.png",
|
|
47319
|
+
riventype: "Melee"
|
|
47320
|
+
},
|
|
47321
|
+
{
|
|
47322
|
+
disposition: 1.25,
|
|
47323
|
+
name: "LEX",
|
|
47324
|
+
texture: "_Lotus_Interface_Icons_Store_Bolto.png",
|
|
47325
|
+
riventype: "Pistol"
|
|
47326
|
+
},
|
|
47327
|
+
{
|
|
47328
|
+
disposition: 1.2,
|
|
47329
|
+
name: "LEX PRIME",
|
|
47330
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeLex.png",
|
|
47331
|
+
riventype: "Pistol"
|
|
47332
|
+
},
|
|
47333
|
+
{
|
|
47334
|
+
disposition: 1.45,
|
|
47335
|
+
name: "MACHETE",
|
|
47336
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerMachette.png",
|
|
47337
|
+
riventype: "Melee"
|
|
47338
|
+
},
|
|
47339
|
+
{
|
|
47340
|
+
disposition: 1.4,
|
|
47341
|
+
name: "MACHETE WRAITH",
|
|
47342
|
+
texture: "_Lotus_Interface_Icons_Store_WraithMachete.png",
|
|
47343
|
+
riventype: "Melee"
|
|
47344
|
+
},
|
|
47345
|
+
{
|
|
47346
|
+
disposition: 1.35,
|
|
47347
|
+
name: "MAGISTAR",
|
|
47348
|
+
texture: "_Lotus_Interface_Icons_Store_PaladinMace.png",
|
|
47349
|
+
riventype: "Melee"
|
|
47350
|
+
},
|
|
47351
|
+
{
|
|
47352
|
+
disposition: 1.53,
|
|
47353
|
+
name: "MAGNUS",
|
|
47354
|
+
texture: "_Lotus_Interface_Icons_Store_TennoMagnum.png",
|
|
47355
|
+
riventype: "Pistol"
|
|
47356
|
+
},
|
|
47357
|
+
{
|
|
47358
|
+
disposition: 0.5,
|
|
47359
|
+
name: "MAGNUS PRIME",
|
|
47360
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_MagnusPrime.png",
|
|
47361
|
+
riventype: "Pistol"
|
|
47362
|
+
},
|
|
47363
|
+
{
|
|
47364
|
+
disposition: 1.1,
|
|
47365
|
+
name: "MARA DETRON",
|
|
47366
|
+
texture: "_Lotus_Interface_Icons_Store_VTDetron.png",
|
|
47367
|
+
riventype: "Pistol"
|
|
47368
|
+
},
|
|
47369
|
+
{
|
|
47370
|
+
disposition: 1.2,
|
|
47371
|
+
name: "MARELOK",
|
|
47372
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerLeverActionPistol.png",
|
|
47373
|
+
riventype: "Pistol"
|
|
47374
|
+
},
|
|
47375
|
+
{
|
|
47376
|
+
disposition: 1.2,
|
|
47377
|
+
name: "MASSETER",
|
|
47378
|
+
texture: "_Lotus_Interface_Icons_Store_TnChiselKanabo.png",
|
|
47379
|
+
riventype: "Melee"
|
|
47380
|
+
},
|
|
47381
|
+
{
|
|
47382
|
+
disposition: 0.5,
|
|
47383
|
+
name: "MAUSOLON",
|
|
47384
|
+
texture: "_Lotus_Interface_Icons_Store_ThanotechLongGun.png",
|
|
47385
|
+
riventype: "Archgun"
|
|
47386
|
+
},
|
|
47387
|
+
{
|
|
47388
|
+
disposition: 1.1,
|
|
47389
|
+
name: "MEWAN",
|
|
47390
|
+
texture: "_Lotus_Interface_Icons_Store_Weapons_Modular_ModularMeleeTipThree.png",
|
|
47391
|
+
riventype: "Melee"
|
|
47392
|
+
},
|
|
47393
|
+
{
|
|
47394
|
+
disposition: 1.3,
|
|
47395
|
+
name: "MIOS",
|
|
47396
|
+
texture: "_Lotus_Interface_Icons_Store_Mios.png",
|
|
47397
|
+
riventype: "Melee"
|
|
47398
|
+
},
|
|
47399
|
+
{
|
|
47400
|
+
disposition: 1.3,
|
|
47401
|
+
name: "MIRE",
|
|
47402
|
+
texture: "_Lotus_Interface_Icons_Store_MireInfestedSword.png",
|
|
47403
|
+
riventype: "Melee"
|
|
47404
|
+
},
|
|
47405
|
+
{
|
|
47406
|
+
disposition: 1.5,
|
|
47407
|
+
name: "MITER",
|
|
47408
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerSawbladeWeapon.png",
|
|
47409
|
+
riventype: "Rifle"
|
|
47410
|
+
},
|
|
47411
|
+
{
|
|
47412
|
+
disposition: 1.4,
|
|
47413
|
+
name: "MK1-BO",
|
|
47414
|
+
texture: "_Lotus_Interface_Icons_Store_BoStaff.png",
|
|
47415
|
+
riventype: "Melee"
|
|
47416
|
+
},
|
|
47417
|
+
{
|
|
47418
|
+
disposition: 1.35,
|
|
47419
|
+
name: "MK1-BRATON",
|
|
47420
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusAutoRifle.png",
|
|
47421
|
+
riventype: "Rifle"
|
|
47422
|
+
},
|
|
47423
|
+
{
|
|
47424
|
+
disposition: 1.45,
|
|
47425
|
+
name: "MK1-FURAX",
|
|
47426
|
+
texture: "_Lotus_Interface_Icons_Store_MeleeGauntlets.png",
|
|
47427
|
+
riventype: "Melee"
|
|
47428
|
+
},
|
|
47429
|
+
{
|
|
47430
|
+
disposition: 1.4,
|
|
47431
|
+
name: "MK1-FURIS",
|
|
47432
|
+
texture: "_Lotus_Interface_Icons_Store_Furis.png",
|
|
47433
|
+
riventype: "Pistol"
|
|
47434
|
+
},
|
|
47435
|
+
{
|
|
47436
|
+
disposition: 1.51,
|
|
47437
|
+
name: "MK1-KUNAI",
|
|
47438
|
+
texture: "_Lotus_Interface_Icons_Store_KunaiThrowingKnives.png",
|
|
47439
|
+
riventype: "Pistol"
|
|
47440
|
+
},
|
|
47441
|
+
{
|
|
47442
|
+
disposition: 1.45,
|
|
47443
|
+
name: "MK1-PARIS",
|
|
47444
|
+
texture: "_Lotus_Interface_Icons_Store_HuntingBow.png",
|
|
47445
|
+
riventype: "Rifle"
|
|
47446
|
+
},
|
|
47447
|
+
{
|
|
47448
|
+
disposition: 1.45,
|
|
47449
|
+
name: "MK1-STRUN",
|
|
47450
|
+
texture: "_Lotus_Interface_Icons_Store_TennoShotgun.png",
|
|
47451
|
+
riventype: "Shotgun"
|
|
47452
|
+
},
|
|
47453
|
+
{
|
|
47454
|
+
disposition: 0.9,
|
|
47455
|
+
name: "MORGHA",
|
|
47456
|
+
texture: "_Lotus_Interface_Icons_Store_Mech_ThanoTechGrenadeLauncher.png",
|
|
47457
|
+
riventype: "Archgun"
|
|
47458
|
+
},
|
|
47459
|
+
{
|
|
47460
|
+
disposition: 1,
|
|
47461
|
+
name: "MULTRON",
|
|
47462
|
+
texture: "_Lotus_Interface_Icons_Store_SentinelHextraWeapon.png",
|
|
47463
|
+
riventype: "Rifle"
|
|
47464
|
+
},
|
|
47465
|
+
{
|
|
47466
|
+
disposition: 1.35,
|
|
47467
|
+
name: "MUTALIST CERNOS",
|
|
47468
|
+
texture: "_Lotus_Interface_Icons_Store_InfCernos.png",
|
|
47469
|
+
riventype: "Rifle"
|
|
47470
|
+
},
|
|
47471
|
+
{
|
|
47472
|
+
disposition: 1.5,
|
|
47473
|
+
name: "MUTALIST QUANTA",
|
|
47474
|
+
texture: "_Lotus_Interface_Icons_Store_InfCrpShockSwarm.png",
|
|
47475
|
+
riventype: "Rifle"
|
|
47476
|
+
},
|
|
47477
|
+
{
|
|
47478
|
+
disposition: 1.3,
|
|
47479
|
+
name: "NAGANTAKA",
|
|
47480
|
+
texture: "_Lotus_Interface_Icons_Store_GarudaCrossbow.png",
|
|
47481
|
+
riventype: "Rifle"
|
|
47482
|
+
},
|
|
47483
|
+
{
|
|
47484
|
+
disposition: 1.3,
|
|
47485
|
+
name: "NAMI SKYLA",
|
|
47486
|
+
texture: "_Lotus_Interface_Icons_Store_TnoCutlassAndPoignard.png",
|
|
47487
|
+
riventype: "Melee"
|
|
47488
|
+
},
|
|
47489
|
+
{
|
|
47490
|
+
disposition: 0.95,
|
|
47491
|
+
name: "NAMI SKYLA PRIME",
|
|
47492
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_PrimeNamiSkyla.png",
|
|
47493
|
+
riventype: "Melee"
|
|
47494
|
+
},
|
|
47495
|
+
{
|
|
47496
|
+
disposition: 1.43,
|
|
47497
|
+
name: "NAMI SOLO",
|
|
47498
|
+
texture: "_Lotus_Interface_Icons_Store_NamiSolo.png",
|
|
47499
|
+
riventype: "Melee"
|
|
47500
|
+
},
|
|
47501
|
+
{
|
|
47502
|
+
disposition: 0.95,
|
|
47503
|
+
name: "NIKANA",
|
|
47504
|
+
texture: "_Lotus_Interface_Icons_Store_Katana.png",
|
|
47505
|
+
riventype: "Melee"
|
|
47506
|
+
},
|
|
47507
|
+
{
|
|
47508
|
+
disposition: 0.6,
|
|
47509
|
+
name: "NIKANA PRIME",
|
|
47510
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeNikana.png",
|
|
47511
|
+
riventype: "Melee"
|
|
47512
|
+
},
|
|
47513
|
+
{
|
|
47514
|
+
disposition: 1.41,
|
|
47515
|
+
name: "NINKONDI",
|
|
47516
|
+
texture: "_Lotus_Interface_Icons_Store_Nunchaku.png",
|
|
47517
|
+
riventype: "Melee"
|
|
47518
|
+
},
|
|
47519
|
+
{
|
|
47520
|
+
disposition: 1.1,
|
|
47521
|
+
name: "NINKONDI PRIME",
|
|
47522
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_NinkondiPrime.png",
|
|
47523
|
+
riventype: "Melee"
|
|
47524
|
+
},
|
|
47525
|
+
{
|
|
47526
|
+
disposition: 1.45,
|
|
47527
|
+
name: "NUKOR",
|
|
47528
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerMicrowaveGun.png",
|
|
47529
|
+
riventype: "Pistol"
|
|
47530
|
+
},
|
|
47531
|
+
{
|
|
47532
|
+
disposition: 1.3,
|
|
47533
|
+
name: "OBEX",
|
|
47534
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusPunchKickWeapon.png",
|
|
47535
|
+
riventype: "Melee"
|
|
47536
|
+
},
|
|
47537
|
+
{
|
|
47538
|
+
disposition: 1.2,
|
|
47539
|
+
name: "OCUCOR",
|
|
47540
|
+
texture: "_Lotus_Interface_Icons_Store_CrpSentExperimentPistol.png",
|
|
47541
|
+
riventype: "Pistol"
|
|
47542
|
+
},
|
|
47543
|
+
{
|
|
47544
|
+
disposition: 1.3,
|
|
47545
|
+
name: "OGRIS",
|
|
47546
|
+
texture: "_Lotus_Interface_Icons_Store_Ogris.png",
|
|
47547
|
+
riventype: "Rifle"
|
|
47548
|
+
},
|
|
47549
|
+
{
|
|
47550
|
+
disposition: 1.2,
|
|
47551
|
+
name: "OHMA",
|
|
47552
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusTonfas.png",
|
|
47553
|
+
riventype: "Melee"
|
|
47554
|
+
},
|
|
47555
|
+
{
|
|
47556
|
+
disposition: 1.4,
|
|
47557
|
+
name: "OKINA",
|
|
47558
|
+
texture: "_Lotus_Interface_Icons_Store_TennoSais.png",
|
|
47559
|
+
riventype: "Melee"
|
|
47560
|
+
},
|
|
47561
|
+
{
|
|
47562
|
+
disposition: 1.25,
|
|
47563
|
+
name: "OOLTHA",
|
|
47564
|
+
texture: "_Lotus_Interface_Icons_Store_Weapons_Modular_ModularMeleeTipTwo.png",
|
|
47565
|
+
riventype: "Melee"
|
|
47566
|
+
},
|
|
47567
|
+
{
|
|
47568
|
+
disposition: 1.15,
|
|
47569
|
+
name: "OPTICOR",
|
|
47570
|
+
texture: "_Lotus_Interface_Icons_Store_CrpBFG.png",
|
|
47571
|
+
riventype: "Rifle"
|
|
47572
|
+
},
|
|
47573
|
+
{
|
|
47574
|
+
disposition: 1.05,
|
|
47575
|
+
name: "OPTICOR VANDAL",
|
|
47576
|
+
texture: "_Lotus_Interface_Icons_Store_OpticorVandal.png",
|
|
47577
|
+
riventype: "Rifle"
|
|
47578
|
+
},
|
|
47579
|
+
{
|
|
47580
|
+
disposition: 1,
|
|
47581
|
+
name: "ORTHOS",
|
|
47582
|
+
texture: "_Lotus_Interface_Icons_Store_PolearmNaginata.png",
|
|
47583
|
+
riventype: "Melee"
|
|
47584
|
+
},
|
|
47585
|
+
{
|
|
47586
|
+
disposition: 0.7,
|
|
47587
|
+
name: "ORTHOS PRIME",
|
|
47588
|
+
texture: "_Lotus_Interface_Icons_Store_PrimePolearm.png",
|
|
47589
|
+
riventype: "Melee"
|
|
47590
|
+
},
|
|
47591
|
+
{
|
|
47592
|
+
disposition: 1.35,
|
|
47593
|
+
name: "ORVIUS",
|
|
47594
|
+
texture: "_Lotus_Interface_Icons_Store_TeshinGlaive.png",
|
|
47595
|
+
riventype: "Melee"
|
|
47596
|
+
},
|
|
47597
|
+
{
|
|
47598
|
+
disposition: 1.15,
|
|
47599
|
+
name: "PANDERO",
|
|
47600
|
+
texture: "_Lotus_Interface_Icons_Store_TnBardPistol.png",
|
|
47601
|
+
riventype: "Pistol"
|
|
47602
|
+
},
|
|
47603
|
+
{
|
|
47604
|
+
disposition: 0.85,
|
|
47605
|
+
name: "PANDERO PRIME",
|
|
47606
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_PanderoPrime.png",
|
|
47607
|
+
riventype: "Pistol"
|
|
47608
|
+
},
|
|
47609
|
+
{
|
|
47610
|
+
disposition: 1,
|
|
47611
|
+
name: "PANGOLIN PRIME",
|
|
47612
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_PangolinPrime.png",
|
|
47613
|
+
riventype: "Melee"
|
|
47614
|
+
},
|
|
47615
|
+
{
|
|
47616
|
+
disposition: 1.47,
|
|
47617
|
+
name: "PANGOLIN SWORD",
|
|
47618
|
+
texture: "_Lotus_Interface_Icons_Store_SwordPangolin_d.png",
|
|
47619
|
+
riventype: "Melee"
|
|
47620
|
+
},
|
|
47621
|
+
{
|
|
47622
|
+
disposition: 1.4,
|
|
47623
|
+
name: "PANTHERA",
|
|
47624
|
+
texture: "_Lotus_Interface_Icons_Store_TennoMiter.png",
|
|
47625
|
+
riventype: "Rifle"
|
|
47626
|
+
},
|
|
47627
|
+
{
|
|
47628
|
+
disposition: 1.2,
|
|
47629
|
+
name: "PANTHERA PRIME",
|
|
47630
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_PantheraPrime.png",
|
|
47631
|
+
riventype: "Rifle"
|
|
47632
|
+
},
|
|
47633
|
+
{
|
|
47634
|
+
disposition: 0.6,
|
|
47635
|
+
name: "PARACESIS",
|
|
47636
|
+
texture: "_Lotus_Interface_Icons_Store_BallasSword.png",
|
|
47637
|
+
riventype: "Melee"
|
|
47638
|
+
},
|
|
47639
|
+
{
|
|
47640
|
+
disposition: 1.31,
|
|
47641
|
+
name: "PARACYST",
|
|
47642
|
+
texture: "_Lotus_Interface_Icons_Store_InfQuantaRifle.png",
|
|
47643
|
+
riventype: "Rifle"
|
|
47644
|
+
},
|
|
47645
|
+
{
|
|
47646
|
+
disposition: 1.4,
|
|
47647
|
+
name: "PARIS",
|
|
47648
|
+
texture: "_Lotus_Interface_Icons_Store_HuntingBow.png",
|
|
47649
|
+
riventype: "Rifle"
|
|
47650
|
+
},
|
|
47651
|
+
{
|
|
47652
|
+
disposition: 1.35,
|
|
47653
|
+
name: "PARIS PRIME",
|
|
47654
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeBowM.png",
|
|
47655
|
+
riventype: "Rifle"
|
|
47656
|
+
},
|
|
47657
|
+
{
|
|
47658
|
+
disposition: 1.3,
|
|
47659
|
+
name: "PATHOCYST",
|
|
47660
|
+
texture: "_Lotus_Interface_Icons_Store_InfBoomerang.png",
|
|
47661
|
+
riventype: "Melee"
|
|
47662
|
+
},
|
|
47663
|
+
{
|
|
47664
|
+
disposition: 0.85,
|
|
47665
|
+
name: "PENNANT",
|
|
47666
|
+
texture: "_Lotus_Interface_Icons_Store_TnRailjackGreatKatana.png",
|
|
47667
|
+
riventype: "Melee"
|
|
47668
|
+
},
|
|
47669
|
+
{
|
|
47670
|
+
disposition: 1.35,
|
|
47671
|
+
name: "PENTA",
|
|
47672
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusGrenadeLauncher.png",
|
|
47673
|
+
riventype: "Rifle"
|
|
47674
|
+
},
|
|
47675
|
+
{
|
|
47676
|
+
disposition: 1.2,
|
|
47677
|
+
name: "PHAEDRA",
|
|
47678
|
+
texture: "_Lotus_Interface_Icons_Store_ArchLongRifle.png",
|
|
47679
|
+
riventype: "Archgun"
|
|
47680
|
+
},
|
|
47681
|
+
{
|
|
47682
|
+
disposition: 1.46,
|
|
47683
|
+
name: "PHAGE",
|
|
47684
|
+
texture: "_Lotus_Interface_Icons_Store_InfestedLongGunTwo.png",
|
|
47685
|
+
riventype: "Shotgun"
|
|
47686
|
+
},
|
|
47687
|
+
{
|
|
47688
|
+
disposition: 1.05,
|
|
47689
|
+
name: "PHANTASMA",
|
|
47690
|
+
texture: "_Lotus_Interface_Icons_Store_RevenantShotgun.png",
|
|
47691
|
+
riventype: "Shotgun"
|
|
47692
|
+
},
|
|
47693
|
+
{
|
|
47694
|
+
disposition: 0.75,
|
|
47695
|
+
name: "PLAGUE KEEWAR",
|
|
47696
|
+
texture: "_Lotus_Interface_Icons_Store_Weapons_Modular_ModularMeleeInfestedTipTwo.png",
|
|
47697
|
+
riventype: "Melee"
|
|
47698
|
+
},
|
|
47699
|
+
{
|
|
47700
|
+
disposition: 0.6,
|
|
47701
|
+
name: "PLAGUE KRIPATH",
|
|
47702
|
+
texture: "_Lotus_Interface_Icons_Store_Weapons_Modular_ModularMeleeInfestedTipOne.png",
|
|
47703
|
+
riventype: "Melee"
|
|
47704
|
+
},
|
|
47705
|
+
{
|
|
47706
|
+
disposition: 1.48,
|
|
47707
|
+
name: "PLASMA SWORD",
|
|
47708
|
+
texture: "_Lotus_Interface_Icons_Store_SwordPlasma_d.png",
|
|
47709
|
+
riventype: "Melee"
|
|
47710
|
+
},
|
|
47711
|
+
{
|
|
47712
|
+
disposition: 1.2,
|
|
47713
|
+
name: "PLINX",
|
|
47714
|
+
texture: "_Lotus_Interface_Icons_Store_CrpBlastorWeapon.png",
|
|
47715
|
+
riventype: "Pistol"
|
|
47716
|
+
},
|
|
47717
|
+
{
|
|
47718
|
+
disposition: 1.2,
|
|
47719
|
+
name: "POX",
|
|
47720
|
+
texture: "_Lotus_Interface_Icons_Store_InfProximityStars.png",
|
|
47721
|
+
riventype: "Pistol"
|
|
47722
|
+
},
|
|
47723
|
+
{
|
|
47724
|
+
disposition: 1.21,
|
|
47725
|
+
name: "PRIME LASER RIFLE",
|
|
47726
|
+
texture: "_Lotus_Interface_Icons_Store_SentinelBurstLaserPrime.png",
|
|
47727
|
+
riventype: "Rifle"
|
|
47728
|
+
},
|
|
47729
|
+
{
|
|
47730
|
+
disposition: 1.3,
|
|
47731
|
+
name: "PRISMA ANGSTRUM",
|
|
47732
|
+
texture: "_Lotus_Interface_Icons_Store_PrismaAngstrum.png",
|
|
47733
|
+
riventype: "Pistol"
|
|
47734
|
+
},
|
|
47735
|
+
{
|
|
47736
|
+
disposition: 1.45,
|
|
47737
|
+
name: "PRISMA BURST LASER",
|
|
47738
|
+
texture: "_Lotus_Interface_Icons_Store_PrismaSentinelBurstLaser.png",
|
|
47739
|
+
riventype: "Pistol"
|
|
47740
|
+
},
|
|
47741
|
+
{
|
|
47742
|
+
disposition: 1.1,
|
|
47743
|
+
name: "PRISMA DUAL CLEAVERS",
|
|
47744
|
+
texture: "_Lotus_Interface_Icons_Store_PrismaDualCleavers.png",
|
|
47745
|
+
riventype: "Melee"
|
|
47746
|
+
},
|
|
47747
|
+
{
|
|
47748
|
+
disposition: 1.1,
|
|
47749
|
+
name: "PRISMA DUAL DECURIONS",
|
|
47750
|
+
texture: "_Lotus_Interface_Icons_Store_PrismaDualDecurion.png",
|
|
47751
|
+
riventype: "Archgun"
|
|
47752
|
+
},
|
|
47753
|
+
{
|
|
47754
|
+
disposition: 1.3,
|
|
47755
|
+
name: "PRISMA GORGON",
|
|
47756
|
+
texture: "_Lotus_Interface_Icons_Store_PrismaGorgon.png",
|
|
47757
|
+
riventype: "Rifle"
|
|
47758
|
+
},
|
|
47759
|
+
{
|
|
47760
|
+
disposition: 1.3,
|
|
47761
|
+
name: "PRISMA GRAKATA",
|
|
47762
|
+
texture: "_Lotus_Interface_Icons_Store_PrismaGrakata.png",
|
|
47763
|
+
riventype: "Rifle"
|
|
47764
|
+
},
|
|
47765
|
+
{
|
|
47766
|
+
disposition: 1.25,
|
|
47767
|
+
name: "PRISMA GRINLOK",
|
|
47768
|
+
texture: "_Lotus_Interface_Icons_Store_PrismaGrinlok.png",
|
|
47769
|
+
riventype: "Rifle"
|
|
47770
|
+
},
|
|
47771
|
+
{
|
|
47772
|
+
disposition: 1.45,
|
|
47773
|
+
name: "PRISMA MACHETE",
|
|
47774
|
+
texture: "_Lotus_Interface_Icons_Store_PrismaMeleeWeapon.png",
|
|
47775
|
+
riventype: "Melee"
|
|
47776
|
+
},
|
|
47777
|
+
{
|
|
47778
|
+
disposition: 1.25,
|
|
47779
|
+
name: "PRISMA OBEX",
|
|
47780
|
+
texture: "_Lotus_Interface_Icons_Store_PrismaObex.png",
|
|
47781
|
+
riventype: "Melee"
|
|
47782
|
+
},
|
|
47783
|
+
{
|
|
47784
|
+
disposition: 1.2,
|
|
47785
|
+
name: "PRISMA SKANA",
|
|
47786
|
+
texture: "_Lotus_Interface_Icons_Store_PrismaSkana.png",
|
|
47787
|
+
riventype: "Melee"
|
|
47788
|
+
},
|
|
47789
|
+
{
|
|
47790
|
+
disposition: 1.45,
|
|
47791
|
+
name: "PRISMA TETRA",
|
|
47792
|
+
texture: "_Lotus_Interface_Icons_Store_PrismaTetra.png",
|
|
47793
|
+
riventype: "Rifle"
|
|
47794
|
+
},
|
|
47795
|
+
{
|
|
47796
|
+
disposition: 1.15,
|
|
47797
|
+
name: "PRISMA TWIN GREMLINS",
|
|
47798
|
+
texture: "_Lotus_Interface_Icons_Store_PrismaTwinGremlins.png",
|
|
47799
|
+
riventype: "Pistol"
|
|
47800
|
+
},
|
|
47801
|
+
{
|
|
47802
|
+
disposition: 0.6,
|
|
47803
|
+
name: "PROBOSCIS CERNOS",
|
|
47804
|
+
texture: "_Lotus_Interface_Icons_Store_DerelictCernos.png",
|
|
47805
|
+
riventype: "Rifle"
|
|
47806
|
+
},
|
|
47807
|
+
{
|
|
47808
|
+
disposition: 1.4,
|
|
47809
|
+
name: "PROVA",
|
|
47810
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusElectroProd.png",
|
|
47811
|
+
riventype: "Melee"
|
|
47812
|
+
},
|
|
47813
|
+
{
|
|
47814
|
+
disposition: 1.35,
|
|
47815
|
+
name: "PROVA VANDAL",
|
|
47816
|
+
texture: "_Lotus_Interface_Icons_Store_VandalElectroProd.png",
|
|
47817
|
+
riventype: "Melee"
|
|
47818
|
+
},
|
|
47819
|
+
{
|
|
47820
|
+
disposition: 1.1,
|
|
47821
|
+
name: "PULMONARS",
|
|
47822
|
+
texture: "_Lotus_Interface_Icons_Store_InfNunchuck.png",
|
|
47823
|
+
riventype: "Melee"
|
|
47824
|
+
},
|
|
47825
|
+
{
|
|
47826
|
+
disposition: 1.3,
|
|
47827
|
+
name: "PUPACYST",
|
|
47828
|
+
texture: "_Lotus_Interface_Icons_Store_InfStaff.png",
|
|
47829
|
+
riventype: "Melee"
|
|
47830
|
+
},
|
|
47831
|
+
{
|
|
47832
|
+
disposition: 0.95,
|
|
47833
|
+
name: "PYRANA",
|
|
47834
|
+
texture: "_Lotus_Interface_Icons_Store_SawnOffShotgun.png",
|
|
47835
|
+
riventype: "Pistol"
|
|
47836
|
+
},
|
|
47837
|
+
{
|
|
47838
|
+
disposition: 0.6,
|
|
47839
|
+
name: "PYRANA PRIME",
|
|
47840
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_PyranaPrime.png",
|
|
47841
|
+
riventype: "Pistol"
|
|
47842
|
+
},
|
|
47843
|
+
{
|
|
47844
|
+
disposition: 1.4,
|
|
47845
|
+
name: "QUANTA",
|
|
47846
|
+
texture: "_Lotus_Interface_Icons_Store_CrpShockRifle.png",
|
|
47847
|
+
riventype: "Rifle"
|
|
47848
|
+
},
|
|
47849
|
+
{
|
|
47850
|
+
disposition: 1.35,
|
|
47851
|
+
name: "QUANTA VANDAL",
|
|
47852
|
+
texture: "_Lotus_Interface_Icons_Store_QuantaVandal.png",
|
|
47853
|
+
riventype: "Rifle"
|
|
47854
|
+
},
|
|
47855
|
+
{
|
|
47856
|
+
disposition: 1.25,
|
|
47857
|
+
name: "QUARTAKK",
|
|
47858
|
+
texture: "_Lotus_Interface_Icons_Store_GrnFourBarrelRifleWeapon.png",
|
|
47859
|
+
riventype: "Rifle"
|
|
47860
|
+
},
|
|
47861
|
+
{
|
|
47862
|
+
disposition: 1,
|
|
47863
|
+
name: "QUASSUS",
|
|
47864
|
+
texture: "_Lotus_Interface_Icons_Store_BrokenFrameWarfan.png",
|
|
47865
|
+
riventype: "Melee"
|
|
47866
|
+
},
|
|
47867
|
+
{
|
|
47868
|
+
disposition: 1.2,
|
|
47869
|
+
name: "QUATZ",
|
|
47870
|
+
texture: "_Lotus_Interface_Icons_Store_AmphisPistol.png",
|
|
47871
|
+
riventype: "Pistol"
|
|
47872
|
+
},
|
|
47873
|
+
{
|
|
47874
|
+
disposition: 1.1,
|
|
47875
|
+
name: "QUELLOR",
|
|
47876
|
+
texture: "_Lotus_Interface_Icons_Store_RailjackRifle.png",
|
|
47877
|
+
riventype: "Rifle"
|
|
47878
|
+
},
|
|
47879
|
+
{
|
|
47880
|
+
disposition: 1.3,
|
|
47881
|
+
name: "RABVEE",
|
|
47882
|
+
texture: "_Lotus_Interface_Icons_Store_Weapons_Modular_ModularMeleeTipTen.png",
|
|
47883
|
+
riventype: "Melee"
|
|
47884
|
+
},
|
|
47885
|
+
{
|
|
47886
|
+
disposition: 1.2,
|
|
47887
|
+
name: "RAKTA BALLISTICA",
|
|
47888
|
+
texture: "_Lotus_Interface_Icons_Store_RVBallistica.png",
|
|
47889
|
+
riventype: "Pistol"
|
|
47890
|
+
},
|
|
47891
|
+
{
|
|
47892
|
+
disposition: 1.25,
|
|
47893
|
+
name: "RAKTA CERNOS",
|
|
47894
|
+
texture: "_Lotus_Interface_Icons_Store_SyndicateRVCernos.png",
|
|
47895
|
+
riventype: "Rifle"
|
|
47896
|
+
},
|
|
47897
|
+
{
|
|
47898
|
+
disposition: 0.95,
|
|
47899
|
+
name: "RAKTA DARK DAGGER",
|
|
47900
|
+
texture: "_Lotus_Interface_Icons_Store_RVDarkDagger.png",
|
|
47901
|
+
riventype: "Melee"
|
|
47902
|
+
},
|
|
47903
|
+
{
|
|
47904
|
+
disposition: 0.75,
|
|
47905
|
+
name: "RATTLEGUTS",
|
|
47906
|
+
texture: "_Lotus_Interface_Icons_Store_Weapons_Modular_SUModularSecondary_SUModularSecondaryBarrelCPart.png",
|
|
47907
|
+
riventype: "Pistol"
|
|
47908
|
+
},
|
|
47909
|
+
{
|
|
47910
|
+
disposition: 0.7,
|
|
47911
|
+
name: "REAPER PRIME",
|
|
47912
|
+
texture: "_Lotus_Interface_Icons_Store_ReaperPrime.png",
|
|
47913
|
+
riventype: "Melee"
|
|
47914
|
+
},
|
|
47915
|
+
{
|
|
47916
|
+
disposition: 1.05,
|
|
47917
|
+
name: "REDEEMER",
|
|
47918
|
+
texture: "_Lotus_Interface_Icons_Store_TnoGunblade.png",
|
|
47919
|
+
riventype: "Melee"
|
|
47920
|
+
},
|
|
47921
|
+
{
|
|
47922
|
+
disposition: 0.6,
|
|
47923
|
+
name: "REDEEMER PRIME",
|
|
47924
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_RedeemerPrime.png",
|
|
47925
|
+
riventype: "Melee"
|
|
47926
|
+
},
|
|
47927
|
+
{
|
|
47928
|
+
disposition: 1,
|
|
47929
|
+
name: "REGULATORS",
|
|
47930
|
+
texture: "_Lotus_Interface_Icons_Store_SlingerPistols827x512.png",
|
|
47931
|
+
riventype: "Pistol"
|
|
47932
|
+
},
|
|
47933
|
+
{
|
|
47934
|
+
disposition: 1,
|
|
47935
|
+
name: "REGULATORS PRIME",
|
|
47936
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_PrimeSlingerPistols.png",
|
|
47937
|
+
riventype: "Pistol"
|
|
47938
|
+
},
|
|
47939
|
+
{
|
|
47940
|
+
disposition: 1.38,
|
|
47941
|
+
name: "RIPKAS",
|
|
47942
|
+
texture: "_Lotus_Interface_Icons_Store_GrnClaws.png",
|
|
47943
|
+
riventype: "Melee"
|
|
47944
|
+
},
|
|
47945
|
+
{
|
|
47946
|
+
disposition: 0.95,
|
|
47947
|
+
name: "RUBICO",
|
|
47948
|
+
texture: "_Lotus_Interface_Icons_Store_FiveShotSniper.png",
|
|
47949
|
+
riventype: "Rifle"
|
|
47950
|
+
},
|
|
47951
|
+
{
|
|
47952
|
+
disposition: 0.6,
|
|
47953
|
+
name: "RUBICO PRIME",
|
|
47954
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_RubicoPrime.png",
|
|
47955
|
+
riventype: "Rifle"
|
|
47956
|
+
},
|
|
47957
|
+
{
|
|
47958
|
+
disposition: 1.35,
|
|
47959
|
+
name: "SANCTI CASTANAS",
|
|
47960
|
+
texture: "_Lotus_Interface_Icons_Store_NLCastanas.png",
|
|
47961
|
+
riventype: "Pistol"
|
|
47962
|
+
},
|
|
47963
|
+
{
|
|
47964
|
+
disposition: 1.25,
|
|
47965
|
+
name: "SANCTI MAGISTAR",
|
|
47966
|
+
texture: "_Lotus_Interface_Icons_Store_NLMagistar.png",
|
|
47967
|
+
riventype: "Melee"
|
|
47968
|
+
},
|
|
47969
|
+
{
|
|
47970
|
+
disposition: 1,
|
|
47971
|
+
name: "SANCTI TIGRIS",
|
|
47972
|
+
texture: "_Lotus_Interface_Icons_Store_SyndicateNLTigris.png",
|
|
47973
|
+
riventype: "Shotgun"
|
|
47974
|
+
},
|
|
47975
|
+
{
|
|
47976
|
+
disposition: 1.24,
|
|
47977
|
+
name: "SARPA",
|
|
47978
|
+
texture: "_Lotus_Interface_Icons_Store_TnoGunbladeAuto.png",
|
|
47979
|
+
riventype: "Melee"
|
|
47980
|
+
},
|
|
47981
|
+
{
|
|
47982
|
+
disposition: 1.35,
|
|
47983
|
+
name: "SCINDO",
|
|
47984
|
+
texture: "_Lotus_Interface_Icons_Store_Axe.png",
|
|
47985
|
+
riventype: "Melee"
|
|
47986
|
+
},
|
|
47987
|
+
{
|
|
47988
|
+
disposition: 1.25,
|
|
47989
|
+
name: "SCINDO PRIME",
|
|
47990
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeScindo.png",
|
|
47991
|
+
riventype: "Melee"
|
|
47992
|
+
},
|
|
47993
|
+
{
|
|
47994
|
+
disposition: 1.3,
|
|
47995
|
+
name: "SCOLIAC",
|
|
47996
|
+
texture: "_Lotus_Interface_Icons_Store_InfestedWhip.png",
|
|
47997
|
+
riventype: "Melee"
|
|
47998
|
+
},
|
|
47999
|
+
{
|
|
48000
|
+
disposition: 1.15,
|
|
48001
|
+
name: "SCOURGE",
|
|
48002
|
+
texture: "_Lotus_Interface_Icons_Store_PriestSpearGun.png",
|
|
48003
|
+
riventype: "Rifle"
|
|
48004
|
+
},
|
|
48005
|
+
{
|
|
48006
|
+
disposition: 1.3,
|
|
48007
|
+
name: "SECURA DUAL CESTRA",
|
|
48008
|
+
texture: "_Lotus_Interface_Icons_Store_PSDualCestra.png",
|
|
48009
|
+
riventype: "Pistol"
|
|
48010
|
+
},
|
|
48011
|
+
{
|
|
48012
|
+
disposition: 1.15,
|
|
48013
|
+
name: "SECURA LECTA",
|
|
48014
|
+
texture: "_Lotus_Interface_Icons_Store_PSLecta.png",
|
|
48015
|
+
riventype: "Melee"
|
|
48016
|
+
},
|
|
48017
|
+
{
|
|
48018
|
+
disposition: 1.3,
|
|
48019
|
+
name: "SECURA PENTA",
|
|
48020
|
+
texture: "_Lotus_Interface_Icons_Store_SyndicatePSPenta.png",
|
|
48021
|
+
riventype: "Rifle"
|
|
48022
|
+
},
|
|
48023
|
+
{
|
|
48024
|
+
disposition: 1.5,
|
|
48025
|
+
name: "SEER",
|
|
48026
|
+
texture: "_Lotus_Interface_Icons_Store_CaptainVorPistol.png",
|
|
48027
|
+
riventype: "Pistol"
|
|
48028
|
+
},
|
|
48029
|
+
{
|
|
48030
|
+
disposition: 0.7,
|
|
48031
|
+
name: "SEPFAHN",
|
|
48032
|
+
texture: "_Lotus_Interface_Icons_Store_Weapons_Modular_ModularMeleeTipNine.png",
|
|
48033
|
+
riventype: "Melee"
|
|
48034
|
+
},
|
|
48035
|
+
{
|
|
48036
|
+
disposition: 1,
|
|
48037
|
+
name: "SEPULCRUM",
|
|
48038
|
+
texture: "_Lotus_Interface_Icons_Store_ThanotechPistol.png",
|
|
48039
|
+
riventype: "Pistol"
|
|
48040
|
+
},
|
|
48041
|
+
{
|
|
48042
|
+
disposition: 1.38,
|
|
48043
|
+
name: "SERRO",
|
|
48044
|
+
texture: "_Lotus_Interface_Icons_Store_Corpuspolearm.png",
|
|
48045
|
+
riventype: "Melee"
|
|
48046
|
+
},
|
|
48047
|
+
{
|
|
48048
|
+
disposition: 0.5,
|
|
48049
|
+
name: "Shadow Claws",
|
|
48050
|
+
texture: "_Lotus_Interface_Icons_Store_WraithReaperClaws.png",
|
|
48051
|
+
riventype: "Melee"
|
|
48052
|
+
},
|
|
48053
|
+
{
|
|
48054
|
+
disposition: 1.35,
|
|
48055
|
+
name: "SHAKU",
|
|
48056
|
+
texture: "_Lotus_Interface_Icons_Store_TnoNunchaku.png",
|
|
48057
|
+
riventype: "Melee"
|
|
48058
|
+
},
|
|
48059
|
+
{
|
|
48060
|
+
disposition: 0.8,
|
|
48061
|
+
name: "SHEDU",
|
|
48062
|
+
texture: "_Lotus_Interface_Icons_Store_Shedu.png",
|
|
48063
|
+
riventype: "Rifle"
|
|
48064
|
+
},
|
|
48065
|
+
{
|
|
48066
|
+
disposition: 1.35,
|
|
48067
|
+
name: "SHEEV",
|
|
48068
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerCombatKnife.png",
|
|
48069
|
+
riventype: "Melee"
|
|
48070
|
+
},
|
|
48071
|
+
{
|
|
48072
|
+
disposition: 1.35,
|
|
48073
|
+
name: "SIBEAR",
|
|
48074
|
+
texture: "_Lotus_Interface_Icons_Store_IceHammer.png",
|
|
48075
|
+
riventype: "Melee"
|
|
48076
|
+
},
|
|
48077
|
+
{
|
|
48078
|
+
disposition: 1.2,
|
|
48079
|
+
name: "SICARUS",
|
|
48080
|
+
texture: "_Lotus_Interface_Icons_Store_TennoBurstPistol.png",
|
|
48081
|
+
riventype: "Pistol"
|
|
48082
|
+
},
|
|
48083
|
+
{
|
|
48084
|
+
disposition: 1.1,
|
|
48085
|
+
name: "SICARUS PRIME",
|
|
48086
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeSicarus.png",
|
|
48087
|
+
riventype: "Pistol"
|
|
48088
|
+
},
|
|
48089
|
+
{
|
|
48090
|
+
disposition: 1,
|
|
48091
|
+
name: "SIGMA & OCTANTIS",
|
|
48092
|
+
texture: "_Lotus_Interface_Icons_Store_SundialBoardSword.png",
|
|
48093
|
+
riventype: "Melee"
|
|
48094
|
+
},
|
|
48095
|
+
{
|
|
48096
|
+
disposition: 1.15,
|
|
48097
|
+
name: "SILVA & AEGIS",
|
|
48098
|
+
texture: "_Lotus_Interface_Icons_Store_TennoSwordShield.png",
|
|
48099
|
+
riventype: "Melee"
|
|
48100
|
+
},
|
|
48101
|
+
{
|
|
48102
|
+
disposition: 1,
|
|
48103
|
+
name: "SILVA & AEGIS PRIME",
|
|
48104
|
+
texture: "_Lotus_Interface_Icons_Store_SilvaAegisPrime.png",
|
|
48105
|
+
riventype: "Melee"
|
|
48106
|
+
},
|
|
48107
|
+
{
|
|
48108
|
+
disposition: 1.2,
|
|
48109
|
+
name: "SIMULOR",
|
|
48110
|
+
texture: "_Lotus_Interface_Icons_Store_CephPrimary.png",
|
|
48111
|
+
riventype: "Rifle"
|
|
48112
|
+
},
|
|
48113
|
+
{
|
|
48114
|
+
disposition: 1.3,
|
|
48115
|
+
name: "SKANA",
|
|
48116
|
+
texture: "_Lotus_Interface_Icons_Store_Skana.png",
|
|
48117
|
+
riventype: "Melee"
|
|
48118
|
+
},
|
|
48119
|
+
{
|
|
48120
|
+
disposition: 1.2,
|
|
48121
|
+
name: "SKANA PRIME",
|
|
48122
|
+
texture: "_Lotus_Interface_Icons_Store_SkanaPrime.png",
|
|
48123
|
+
riventype: "Melee"
|
|
48124
|
+
},
|
|
48125
|
+
{
|
|
48126
|
+
disposition: 0.9,
|
|
48127
|
+
name: "SKIAJATI",
|
|
48128
|
+
texture: "_Lotus_Interface_Icons_Store_UmbraKatana.png",
|
|
48129
|
+
riventype: "Melee"
|
|
48130
|
+
},
|
|
48131
|
+
{
|
|
48132
|
+
disposition: 1.3,
|
|
48133
|
+
name: "SNIPETRON",
|
|
48134
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusSniperRifle.png",
|
|
48135
|
+
riventype: "Rifle"
|
|
48136
|
+
},
|
|
48137
|
+
{
|
|
48138
|
+
disposition: 1.25,
|
|
48139
|
+
name: "SNIPETRON VANDAL",
|
|
48140
|
+
texture: "_Lotus_Interface_Icons_Store_SnipertronVandal.png",
|
|
48141
|
+
riventype: "Rifle"
|
|
48142
|
+
},
|
|
48143
|
+
{
|
|
48144
|
+
disposition: 1.33,
|
|
48145
|
+
name: "SOBEK",
|
|
48146
|
+
texture: "_Lotus_Interface_Icons_Store_GrnDBSG.png",
|
|
48147
|
+
riventype: "Shotgun"
|
|
48148
|
+
},
|
|
48149
|
+
{
|
|
48150
|
+
disposition: 1.15,
|
|
48151
|
+
name: "SOMA",
|
|
48152
|
+
texture: "_Lotus_Interface_Icons_Store_U10DesignCouncilTennoAR.png",
|
|
48153
|
+
riventype: "Rifle"
|
|
48154
|
+
},
|
|
48155
|
+
{
|
|
48156
|
+
disposition: 1.05,
|
|
48157
|
+
name: "SOMA PRIME",
|
|
48158
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeSoma.png",
|
|
48159
|
+
riventype: "Rifle"
|
|
48160
|
+
},
|
|
48161
|
+
{
|
|
48162
|
+
disposition: 1.15,
|
|
48163
|
+
name: "SONICOR",
|
|
48164
|
+
texture: "_Lotus_Interface_Icons_Store_CrpAirPistolArray.png",
|
|
48165
|
+
riventype: "Pistol"
|
|
48166
|
+
},
|
|
48167
|
+
{
|
|
48168
|
+
disposition: 1.49,
|
|
48169
|
+
name: "SPECTRA",
|
|
48170
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusModularPistol.png",
|
|
48171
|
+
riventype: "Pistol"
|
|
48172
|
+
},
|
|
48173
|
+
{
|
|
48174
|
+
disposition: 1.45,
|
|
48175
|
+
name: "SPECTRA VANDAL",
|
|
48176
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusModularPistolVandal.png",
|
|
48177
|
+
riventype: "Pistol"
|
|
48178
|
+
},
|
|
48179
|
+
{
|
|
48180
|
+
disposition: 1.3,
|
|
48181
|
+
name: "SPIRA",
|
|
48182
|
+
texture: "_Lotus_Interface_Icons_Store_LiDagger.png",
|
|
48183
|
+
riventype: "Pistol"
|
|
48184
|
+
},
|
|
48185
|
+
{
|
|
48186
|
+
disposition: 1.2,
|
|
48187
|
+
name: "SPIRA PRIME",
|
|
48188
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_PrimeLiDagger.png",
|
|
48189
|
+
riventype: "Pistol"
|
|
48190
|
+
},
|
|
48191
|
+
{
|
|
48192
|
+
disposition: 0.55,
|
|
48193
|
+
name: "SPORELACER",
|
|
48194
|
+
texture: "_Lotus_Interface_Icons_Store_Weapons_Modular_InfModular_InfBarrelEgg.png",
|
|
48195
|
+
riventype: "Pistol"
|
|
48196
|
+
},
|
|
48197
|
+
{
|
|
48198
|
+
disposition: 1.2,
|
|
48199
|
+
name: "SPOROTHRIX",
|
|
48200
|
+
texture: "_Lotus_Interface_Icons_Store_InfSniperRifle.png",
|
|
48201
|
+
riventype: "Rifle"
|
|
48202
|
+
},
|
|
48203
|
+
{
|
|
48204
|
+
disposition: 0.9,
|
|
48205
|
+
name: "STAHLTA",
|
|
48206
|
+
texture: "_Lotus_Interface_Icons_Store_CrpRubanRifle.png",
|
|
48207
|
+
riventype: "Rifle"
|
|
48208
|
+
},
|
|
48209
|
+
{
|
|
48210
|
+
disposition: 0.7,
|
|
48211
|
+
name: "STATICOR",
|
|
48212
|
+
texture: "_Lotus_Interface_Icons_Store_CrpElectroMag.png",
|
|
48213
|
+
riventype: "Pistol"
|
|
48214
|
+
},
|
|
48215
|
+
{
|
|
48216
|
+
disposition: 1.315,
|
|
48217
|
+
name: "STINGER",
|
|
48218
|
+
texture: "_Lotus_Interface_Icons_Store_SentinelStinger.png",
|
|
48219
|
+
riventype: "Rifle"
|
|
48220
|
+
},
|
|
48221
|
+
{
|
|
48222
|
+
disposition: 1.1,
|
|
48223
|
+
name: "STRADAVAR",
|
|
48224
|
+
texture: "_Lotus_Interface_Icons_Store_TennoTommyGun.png",
|
|
48225
|
+
riventype: "Rifle"
|
|
48226
|
+
},
|
|
48227
|
+
{
|
|
48228
|
+
disposition: 1.1,
|
|
48229
|
+
name: "STRADAVAR PRIME",
|
|
48230
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_StradavarPrime.png",
|
|
48231
|
+
riventype: "Rifle"
|
|
48232
|
+
},
|
|
48233
|
+
{
|
|
48234
|
+
disposition: 0.5,
|
|
48235
|
+
name: "STROPHA",
|
|
48236
|
+
texture: "_Lotus_Interface_Icons_Store_CrpGunBladeWeapon.png",
|
|
48237
|
+
riventype: "Melee"
|
|
48238
|
+
},
|
|
48239
|
+
{
|
|
48240
|
+
disposition: 1.4,
|
|
48241
|
+
name: "STRUN",
|
|
48242
|
+
texture: "_Lotus_Interface_Icons_Store_TennoShotgun.png",
|
|
48243
|
+
riventype: "Shotgun"
|
|
48244
|
+
},
|
|
48245
|
+
{
|
|
48246
|
+
disposition: 0.5,
|
|
48247
|
+
name: "STRUN PRIME",
|
|
48248
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_StrunPrime.png",
|
|
48249
|
+
riventype: "Shotgun"
|
|
48250
|
+
},
|
|
48251
|
+
{
|
|
48252
|
+
disposition: 1.35,
|
|
48253
|
+
name: "STRUN WRAITH",
|
|
48254
|
+
texture: "_Lotus_Interface_Icons_Store_VandalStrun.png",
|
|
48255
|
+
riventype: "Shotgun"
|
|
48256
|
+
},
|
|
48257
|
+
{
|
|
48258
|
+
disposition: 1.35,
|
|
48259
|
+
name: "STUBBA",
|
|
48260
|
+
texture: "_Lotus_Interface_Icons_Store_GrnUziWeapon.png",
|
|
48261
|
+
riventype: "Pistol"
|
|
48262
|
+
},
|
|
48263
|
+
{
|
|
48264
|
+
disposition: 1.48,
|
|
48265
|
+
name: "STUG",
|
|
48266
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerCrossbowGooGun.png",
|
|
48267
|
+
riventype: "Pistol"
|
|
48268
|
+
},
|
|
48269
|
+
{
|
|
48270
|
+
disposition: 1.1,
|
|
48271
|
+
name: "SUPRA",
|
|
48272
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusMachineGun.png",
|
|
48273
|
+
riventype: "Rifle"
|
|
48274
|
+
},
|
|
48275
|
+
{
|
|
48276
|
+
disposition: 1,
|
|
48277
|
+
name: "SUPRA VANDAL",
|
|
48278
|
+
texture: "_Lotus_Interface_Icons_Store_SupraVandal.png",
|
|
48279
|
+
riventype: "Rifle"
|
|
48280
|
+
},
|
|
48281
|
+
{
|
|
48282
|
+
disposition: 1,
|
|
48283
|
+
name: "SWEEPER",
|
|
48284
|
+
texture: "_Lotus_Interface_Icons_Store_SentinelSweeper.png",
|
|
48285
|
+
riventype: "Shotgun"
|
|
48286
|
+
},
|
|
48287
|
+
{
|
|
48288
|
+
disposition: 1,
|
|
48289
|
+
name: "SWEEPER PRIME",
|
|
48290
|
+
texture: "_Lotus_Interface_Icons_Store_SentinelSweeperPrime.png",
|
|
48291
|
+
riventype: "Shotgun"
|
|
48292
|
+
},
|
|
48293
|
+
{
|
|
48294
|
+
disposition: 1.3,
|
|
48295
|
+
name: "SYBARIS",
|
|
48296
|
+
texture: "_Lotus_Interface_Icons_Store_TnoLeverActionRifle.png",
|
|
48297
|
+
riventype: "Rifle"
|
|
48298
|
+
},
|
|
48299
|
+
{
|
|
48300
|
+
disposition: 1.2,
|
|
48301
|
+
name: "SYBARIS PRIME",
|
|
48302
|
+
texture: "_Lotus_Interface_Icons_Store_SybarisPrime.png",
|
|
48303
|
+
riventype: "Rifle"
|
|
48304
|
+
},
|
|
48305
|
+
{
|
|
48306
|
+
disposition: 1.35,
|
|
48307
|
+
name: "SYDON",
|
|
48308
|
+
texture: "_Lotus_Interface_Icons_Store_GrnTridentWeapon.png",
|
|
48309
|
+
riventype: "Melee"
|
|
48310
|
+
},
|
|
48311
|
+
{
|
|
48312
|
+
disposition: 1.31,
|
|
48313
|
+
name: "SYNAPSE",
|
|
48314
|
+
texture: "_Lotus_Interface_Icons_Store_U10InfPrimary.png",
|
|
48315
|
+
riventype: "Rifle"
|
|
48316
|
+
},
|
|
48317
|
+
{
|
|
48318
|
+
disposition: 1.05,
|
|
48319
|
+
name: "SYNOID GAMMACOR",
|
|
48320
|
+
texture: "_Lotus_Interface_Icons_Store_SynoidGammacor.png",
|
|
48321
|
+
riventype: "Pistol"
|
|
48322
|
+
},
|
|
48323
|
+
{
|
|
48324
|
+
disposition: 1.35,
|
|
48325
|
+
name: "SYNOID HELIOCOR",
|
|
48326
|
+
texture: "_Lotus_Interface_Icons_Store_CSHeliocor.png",
|
|
48327
|
+
riventype: "Melee"
|
|
48328
|
+
},
|
|
48329
|
+
{
|
|
48330
|
+
disposition: 1.15,
|
|
48331
|
+
name: "SYNOID SIMULOR",
|
|
48332
|
+
texture: "_Lotus_Interface_Icons_Store_SyndicateCSSimulor.png",
|
|
48333
|
+
riventype: "Rifle"
|
|
48334
|
+
},
|
|
48335
|
+
{
|
|
48336
|
+
disposition: 1.44,
|
|
48337
|
+
name: "TALONS",
|
|
48338
|
+
texture: "_Lotus_Interface_Icons_Store_U18throwingknives.png",
|
|
48339
|
+
riventype: "Pistol"
|
|
48340
|
+
},
|
|
48341
|
+
{
|
|
48342
|
+
disposition: 1,
|
|
48343
|
+
name: "TATSU",
|
|
48344
|
+
texture: "_Lotus_Interface_Icons_Store_TnTwoHandedKatana.png",
|
|
48345
|
+
riventype: "Melee"
|
|
48346
|
+
},
|
|
48347
|
+
{
|
|
48348
|
+
disposition: 1,
|
|
48349
|
+
name: "TAZICOR",
|
|
48350
|
+
texture: "_Lotus_Interface_Icons_Store_SentinelTazronWeapon.png",
|
|
48351
|
+
riventype: "Rifle"
|
|
48352
|
+
},
|
|
48353
|
+
{
|
|
48354
|
+
disposition: 1.4,
|
|
48355
|
+
name: "TEKKO",
|
|
48356
|
+
texture: "_Lotus_Interface_Icons_Store_BrawlerKnuckles.png",
|
|
48357
|
+
riventype: "Melee"
|
|
48358
|
+
},
|
|
48359
|
+
{
|
|
48360
|
+
disposition: 1.3,
|
|
48361
|
+
name: "TEKKO PRIME",
|
|
48362
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_TekkoPrime.png",
|
|
48363
|
+
riventype: "Melee"
|
|
48364
|
+
},
|
|
48365
|
+
{
|
|
48366
|
+
disposition: 1.25,
|
|
48367
|
+
name: "TELOS AKBOLTO",
|
|
48368
|
+
texture: "_Lotus_Interface_Icons_Store_AHAkbolto.png",
|
|
48369
|
+
riventype: "Pistol"
|
|
48370
|
+
},
|
|
48371
|
+
{
|
|
48372
|
+
disposition: 1.05,
|
|
48373
|
+
name: "TELOS BOLTACE",
|
|
48374
|
+
texture: "_Lotus_Interface_Icons_Store_AHBoltace.png",
|
|
48375
|
+
riventype: "Melee"
|
|
48376
|
+
},
|
|
48377
|
+
{
|
|
48378
|
+
disposition: 1.2,
|
|
48379
|
+
name: "TELOS BOLTOR",
|
|
48380
|
+
texture: "_Lotus_Interface_Icons_Store_SyndicateAHBoltor.png",
|
|
48381
|
+
riventype: "Rifle"
|
|
48382
|
+
},
|
|
48383
|
+
{
|
|
48384
|
+
disposition: 0.55,
|
|
48385
|
+
name: "TENET AGENDUS",
|
|
48386
|
+
texture: "_Lotus_Interface_Icons_Store_CrpHammerShield.png",
|
|
48387
|
+
riventype: "Melee"
|
|
48388
|
+
},
|
|
48389
|
+
{
|
|
48390
|
+
disposition: 0.5,
|
|
48391
|
+
name: "TENET ARCA PLASMOR",
|
|
48392
|
+
texture: "_Lotus_Interface_Icons_Store_CrpBEArcaPlasmor.png",
|
|
48393
|
+
riventype: "Shotgun"
|
|
48394
|
+
},
|
|
48395
|
+
{
|
|
48396
|
+
disposition: 0.65,
|
|
48397
|
+
name: "TENET CYCRON",
|
|
48398
|
+
texture: "_Lotus_Interface_Icons_Store_CrpBECycron.png",
|
|
48399
|
+
riventype: "Pistol"
|
|
48400
|
+
},
|
|
48401
|
+
{
|
|
48402
|
+
disposition: 0.65,
|
|
48403
|
+
name: "TENET DETRON",
|
|
48404
|
+
texture: "_Lotus_Interface_Icons_Store_CrpBEDetron.png",
|
|
48405
|
+
riventype: "Pistol"
|
|
48406
|
+
},
|
|
48407
|
+
{
|
|
48408
|
+
disposition: 0.55,
|
|
48409
|
+
name: "TENET DIPLOS",
|
|
48410
|
+
texture: "_Lotus_Interface_Icons_Store_CrpBriefcaseAkimboGun.png",
|
|
48411
|
+
riventype: "Pistol"
|
|
48412
|
+
},
|
|
48413
|
+
{
|
|
48414
|
+
disposition: 0.5,
|
|
48415
|
+
name: "TENET ENVOY",
|
|
48416
|
+
texture: "_Lotus_Interface_Icons_Store_CrpBriefcaseLauncher.png",
|
|
48417
|
+
riventype: "Rifle"
|
|
48418
|
+
},
|
|
48419
|
+
{
|
|
48420
|
+
disposition: 0.6,
|
|
48421
|
+
name: "TENET EXEC",
|
|
48422
|
+
texture: "_Lotus_Interface_Icons_Store_CrpBigSlash.png",
|
|
48423
|
+
riventype: "Melee"
|
|
48424
|
+
},
|
|
48425
|
+
{
|
|
48426
|
+
disposition: 0.7,
|
|
48427
|
+
name: "TENET FLUX RIFLE",
|
|
48428
|
+
texture: "_Lotus_Interface_Icons_Store_CrpBEFluxRifle.png",
|
|
48429
|
+
riventype: "Rifle"
|
|
48430
|
+
},
|
|
48431
|
+
{
|
|
48432
|
+
disposition: 0.65,
|
|
48433
|
+
name: "TENET GRIGORI",
|
|
48434
|
+
texture: "_Lotus_Interface_Icons_Store_CrpBriefcaseScythe.png",
|
|
48435
|
+
riventype: "Melee"
|
|
48436
|
+
},
|
|
48437
|
+
{
|
|
48438
|
+
disposition: 0.6,
|
|
48439
|
+
name: "TENET LIVIA",
|
|
48440
|
+
texture: "_Lotus_Interface_Icons_Store_CrpBriefcase2HKatana.png",
|
|
48441
|
+
riventype: "Melee"
|
|
48442
|
+
},
|
|
48443
|
+
{
|
|
48444
|
+
disposition: 0.6,
|
|
48445
|
+
name: "TENET SPIREX",
|
|
48446
|
+
texture: "_Lotus_Interface_Icons_Store_CrpIgniterPistol.png",
|
|
48447
|
+
riventype: "Pistol"
|
|
48448
|
+
},
|
|
48449
|
+
{
|
|
48450
|
+
disposition: 0.7,
|
|
48451
|
+
name: "TENET TETRA",
|
|
48452
|
+
texture: "_Lotus_Interface_Icons_Store_CrpBETetra.png",
|
|
48453
|
+
riventype: "Rifle"
|
|
48454
|
+
},
|
|
48455
|
+
{
|
|
48456
|
+
disposition: 1.1,
|
|
48457
|
+
name: "TENORA",
|
|
48458
|
+
texture: "_Lotus_Interface_Icons_Store_TnBardRifle.png",
|
|
48459
|
+
riventype: "Rifle"
|
|
48460
|
+
},
|
|
48461
|
+
{
|
|
48462
|
+
disposition: 0.8,
|
|
48463
|
+
name: "TENORA PRIME",
|
|
48464
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_TenoraPrime.png",
|
|
48465
|
+
riventype: "Rifle"
|
|
48466
|
+
},
|
|
48467
|
+
{
|
|
48468
|
+
disposition: 1.5,
|
|
48469
|
+
name: "TETRA",
|
|
48470
|
+
texture: "_Lotus_Interface_Icons_Store_CorpusUMP.png",
|
|
48471
|
+
riventype: "Rifle"
|
|
48472
|
+
},
|
|
48473
|
+
{
|
|
48474
|
+
disposition: 1.05,
|
|
48475
|
+
name: "TIBERON",
|
|
48476
|
+
texture: "_Lotus_Interface_Icons_Store_DrakeRifle.png",
|
|
48477
|
+
riventype: "Rifle"
|
|
48478
|
+
},
|
|
48479
|
+
{
|
|
48480
|
+
disposition: 0.95,
|
|
48481
|
+
name: "TIBERON PRIME",
|
|
48482
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_TiberonPrime.png",
|
|
48483
|
+
riventype: "Rifle"
|
|
48484
|
+
},
|
|
48485
|
+
{
|
|
48486
|
+
disposition: 1.15,
|
|
48487
|
+
name: "TIGRIS",
|
|
48488
|
+
texture: "_Lotus_Interface_Icons_Store_TennoDoubleBarrelSG.png",
|
|
48489
|
+
riventype: "Shotgun"
|
|
48490
|
+
},
|
|
48491
|
+
{
|
|
48492
|
+
disposition: 0.9,
|
|
48493
|
+
name: "TIGRIS PRIME",
|
|
48494
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_PrimeTigris.png",
|
|
48495
|
+
riventype: "Shotgun"
|
|
48496
|
+
},
|
|
48497
|
+
{
|
|
48498
|
+
disposition: 1.31,
|
|
48499
|
+
name: "TIPEDO",
|
|
48500
|
+
texture: "_Lotus_Interface_Icons_Store_TnoMonkStaff.png",
|
|
48501
|
+
riventype: "Melee"
|
|
48502
|
+
},
|
|
48503
|
+
{
|
|
48504
|
+
disposition: 1.25,
|
|
48505
|
+
name: "TIPEDO PRIME",
|
|
48506
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_TipedoPrime.png",
|
|
48507
|
+
riventype: "Melee"
|
|
48508
|
+
},
|
|
48509
|
+
{
|
|
48510
|
+
disposition: 0.65,
|
|
48511
|
+
name: "TOMBFINGER",
|
|
48512
|
+
texture: "_Lotus_Interface_Icons_Store_Weapons_Modular_SUModularSecondary_SUModularSecondaryBarrelBPart.png",
|
|
48513
|
+
riventype: "Pistol"
|
|
48514
|
+
},
|
|
48515
|
+
{
|
|
48516
|
+
disposition: 1.38,
|
|
48517
|
+
name: "TONBO",
|
|
48518
|
+
texture: "_Lotus_Interface_Icons_Store_FlowerPowerPolearm.png",
|
|
48519
|
+
riventype: "Melee"
|
|
48520
|
+
},
|
|
48521
|
+
{
|
|
48522
|
+
disposition: 1.3,
|
|
48523
|
+
name: "TONKOR",
|
|
48524
|
+
texture: "_Lotus_Interface_Icons_Store_GrnGrenadeLauncher.png",
|
|
48525
|
+
riventype: "Rifle"
|
|
48526
|
+
},
|
|
48527
|
+
{
|
|
48528
|
+
disposition: 1.3,
|
|
48529
|
+
name: "TORID",
|
|
48530
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerGrenadeLauncher.png",
|
|
48531
|
+
riventype: "Rifle"
|
|
48532
|
+
},
|
|
48533
|
+
{
|
|
48534
|
+
disposition: 0.8,
|
|
48535
|
+
name: "TRUMNA",
|
|
48536
|
+
texture: "_Lotus_Interface_Icons_Store_ThanotechRifle.png",
|
|
48537
|
+
riventype: "Rifle"
|
|
48538
|
+
},
|
|
48539
|
+
{
|
|
48540
|
+
disposition: 1.3,
|
|
48541
|
+
name: "TWIN BASOLK",
|
|
48542
|
+
texture: "_Lotus_Interface_Icons_Store_GrnDualFireAxe.png",
|
|
48543
|
+
riventype: "Melee"
|
|
48544
|
+
},
|
|
48545
|
+
{
|
|
48546
|
+
disposition: 1.2,
|
|
48547
|
+
name: "TWIN GRAKATAS",
|
|
48548
|
+
texture: "_Lotus_Interface_Icons_Store_Akgrakata.png",
|
|
48549
|
+
riventype: "Pistol"
|
|
48550
|
+
},
|
|
48551
|
+
{
|
|
48552
|
+
disposition: 1.2,
|
|
48553
|
+
name: "TWIN GREMLINS",
|
|
48554
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerBulbousSmg.png",
|
|
48555
|
+
riventype: "Pistol"
|
|
48556
|
+
},
|
|
48557
|
+
{
|
|
48558
|
+
disposition: 1.25,
|
|
48559
|
+
name: "TWIN KOHMAK",
|
|
48560
|
+
texture: "_Lotus_Interface_Icons_Store_DualKohmak.png",
|
|
48561
|
+
riventype: "Pistol"
|
|
48562
|
+
},
|
|
48563
|
+
{
|
|
48564
|
+
disposition: 1.2,
|
|
48565
|
+
name: "TWIN KROHKUR",
|
|
48566
|
+
texture: "_Lotus_Interface_Icons_Store_DualGrnEgyptSwords.png",
|
|
48567
|
+
riventype: "Melee"
|
|
48568
|
+
},
|
|
48569
|
+
{
|
|
48570
|
+
disposition: 1.3,
|
|
48571
|
+
name: "TWIN ROGGA",
|
|
48572
|
+
texture: "_Lotus_Interface_Icons_Store_GrnQueenGuardDualPistols.png",
|
|
48573
|
+
riventype: "Pistol"
|
|
48574
|
+
},
|
|
48575
|
+
{
|
|
48576
|
+
disposition: 1.45,
|
|
48577
|
+
name: "TWIN VIPERS",
|
|
48578
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerLightPistolAkimbo.png",
|
|
48579
|
+
riventype: "Pistol"
|
|
48580
|
+
},
|
|
48581
|
+
{
|
|
48582
|
+
disposition: 1.41,
|
|
48583
|
+
name: "TWIN VIPERS WRAITH",
|
|
48584
|
+
texture: "_Lotus_Interface_Icons_Store_WraithTwinVipers.png",
|
|
48585
|
+
riventype: "Pistol"
|
|
48586
|
+
},
|
|
48587
|
+
{
|
|
48588
|
+
disposition: 1.45,
|
|
48589
|
+
name: "TYSIS",
|
|
48590
|
+
texture: "_Lotus_Interface_Icons_Store_InfestedDartPistol.png",
|
|
48591
|
+
riventype: "Pistol"
|
|
48592
|
+
},
|
|
48593
|
+
{
|
|
48594
|
+
disposition: 1,
|
|
48595
|
+
name: "VALKYR PRIME TALONS",
|
|
48596
|
+
texture: "_Lotus_Interface_Icons_Store_BerskerMelee827x512.png",
|
|
48597
|
+
riventype: "Melee"
|
|
48598
|
+
},
|
|
48599
|
+
{
|
|
48600
|
+
disposition: 1,
|
|
48601
|
+
name: "VALKYR TALONS",
|
|
48602
|
+
texture: "_Lotus_Interface_Icons_Store_BerskerMelee827x512.png",
|
|
48603
|
+
riventype: "Melee"
|
|
48604
|
+
},
|
|
48605
|
+
{
|
|
48606
|
+
disposition: 0.7,
|
|
48607
|
+
name: "VASTILOK",
|
|
48608
|
+
texture: "_Lotus_Interface_Icons_Store_GrnGunblade.png",
|
|
48609
|
+
riventype: "Melee"
|
|
48610
|
+
},
|
|
48611
|
+
{
|
|
48612
|
+
disposition: 1.4,
|
|
48613
|
+
name: "VASTO",
|
|
48614
|
+
texture: "_Lotus_Interface_Icons_Store_TennoHandCannon.png",
|
|
48615
|
+
riventype: "Pistol"
|
|
48616
|
+
},
|
|
48617
|
+
{
|
|
48618
|
+
disposition: 1.35,
|
|
48619
|
+
name: "VASTO PRIME",
|
|
48620
|
+
texture: "_Lotus_Interface_Icons_Store_PrimeVasto.png",
|
|
48621
|
+
riventype: "Pistol"
|
|
48622
|
+
},
|
|
48623
|
+
{
|
|
48624
|
+
disposition: 1.1,
|
|
48625
|
+
name: "VAYKOR HEK",
|
|
48626
|
+
texture: "_Lotus_Interface_Icons_Store_SyndicateSMHek.png",
|
|
48627
|
+
riventype: "Shotgun"
|
|
48628
|
+
},
|
|
48629
|
+
{
|
|
48630
|
+
disposition: 1.1,
|
|
48631
|
+
name: "VAYKOR MARELOK",
|
|
48632
|
+
texture: "_Lotus_Interface_Icons_Store_SMMarelok.png",
|
|
48633
|
+
riventype: "Pistol"
|
|
48634
|
+
},
|
|
48635
|
+
{
|
|
48636
|
+
disposition: 1.3,
|
|
48637
|
+
name: "VAYKOR SYDON",
|
|
48638
|
+
texture: "_Lotus_Interface_Icons_Store_SMSydon.png",
|
|
48639
|
+
riventype: "Melee"
|
|
48640
|
+
},
|
|
48641
|
+
{
|
|
48642
|
+
disposition: 1.1,
|
|
48643
|
+
name: "VECTIS",
|
|
48644
|
+
texture: "_Lotus_Interface_Icons_Store_TennoSniperRifle.png",
|
|
48645
|
+
riventype: "Rifle"
|
|
48646
|
+
},
|
|
48647
|
+
{
|
|
48648
|
+
disposition: 0.85,
|
|
48649
|
+
name: "VECTIS PRIME",
|
|
48650
|
+
texture: "_Lotus_Interface_Icons_Store_VectisPrime.png",
|
|
48651
|
+
riventype: "Rifle"
|
|
48652
|
+
},
|
|
48653
|
+
{
|
|
48654
|
+
disposition: 1.3,
|
|
48655
|
+
name: "VELDT",
|
|
48656
|
+
texture: "_Lotus_Interface_Icons_Store_TnRevolverRifle.png",
|
|
48657
|
+
riventype: "Rifle"
|
|
48658
|
+
},
|
|
48659
|
+
{
|
|
48660
|
+
disposition: 1.1,
|
|
48661
|
+
name: "VELOCITUS",
|
|
48662
|
+
texture: "_Lotus_Interface_Icons_Store_ArchRailgun.png",
|
|
48663
|
+
riventype: "Archgun"
|
|
48664
|
+
},
|
|
48665
|
+
{
|
|
48666
|
+
disposition: 1.2,
|
|
48667
|
+
name: "VELOX",
|
|
48668
|
+
texture: "_Lotus_Interface_Icons_Store_OdaliskSmgWeapon.png",
|
|
48669
|
+
riventype: "Pistol"
|
|
48670
|
+
},
|
|
48671
|
+
{
|
|
48672
|
+
disposition: 1.1,
|
|
48673
|
+
name: "VENKA",
|
|
48674
|
+
texture: "_Lotus_Interface_Icons_Store_TennoClaws.png",
|
|
48675
|
+
riventype: "Melee"
|
|
48676
|
+
},
|
|
48677
|
+
{
|
|
48678
|
+
disposition: 0.8,
|
|
48679
|
+
name: "VENKA PRIME",
|
|
48680
|
+
texture: "_Lotus_Interface_Icons_Store_VenkaPrime.png",
|
|
48681
|
+
riventype: "Melee"
|
|
48682
|
+
},
|
|
48683
|
+
{
|
|
48684
|
+
disposition: 1.3,
|
|
48685
|
+
name: "VERGLAS",
|
|
48686
|
+
texture: "_Lotus_Interface_Icons_Store_SentinelFreezeRayRifle.png",
|
|
48687
|
+
riventype: "Rifle"
|
|
48688
|
+
},
|
|
48689
|
+
{
|
|
48690
|
+
disposition: 1,
|
|
48691
|
+
name: "VERMISPLICER",
|
|
48692
|
+
texture: "_Lotus_Interface_Icons_Store_Weapons_Modular_InfModular_InfBarrelBeam.png",
|
|
48693
|
+
riventype: "Pistol"
|
|
48694
|
+
},
|
|
48695
|
+
{
|
|
48696
|
+
disposition: 1.45,
|
|
48697
|
+
name: "VIPER",
|
|
48698
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerLightPistol.png",
|
|
48699
|
+
riventype: "Pistol"
|
|
48700
|
+
},
|
|
48701
|
+
{
|
|
48702
|
+
disposition: 1.4,
|
|
48703
|
+
name: "VIPER WRAITH",
|
|
48704
|
+
texture: "_Lotus_Interface_Icons_Store_WraithGrineerLightPistol.png",
|
|
48705
|
+
riventype: "Pistol"
|
|
48706
|
+
},
|
|
48707
|
+
{
|
|
48708
|
+
disposition: 0.9,
|
|
48709
|
+
name: "VITRICA",
|
|
48710
|
+
texture: "_Lotus_Interface_Icons_Store_NWOrokinSword.png",
|
|
48711
|
+
riventype: "Melee"
|
|
48712
|
+
},
|
|
48713
|
+
{
|
|
48714
|
+
disposition: 1.35,
|
|
48715
|
+
name: "VOLNUS",
|
|
48716
|
+
texture: "_Lotus_Interface_Icons_Store_GlassHammer.png",
|
|
48717
|
+
riventype: "Melee"
|
|
48718
|
+
},
|
|
48719
|
+
{
|
|
48720
|
+
disposition: 0.8,
|
|
48721
|
+
name: "VOLNUS PRIME",
|
|
48722
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_VolnusPrime.png",
|
|
48723
|
+
riventype: "Melee"
|
|
48724
|
+
},
|
|
48725
|
+
{
|
|
48726
|
+
disposition: 1,
|
|
48727
|
+
name: "VULCAX",
|
|
48728
|
+
texture: "_Lotus_Interface_Icons_Store_SentinelThermocorWeapon.png",
|
|
48729
|
+
riventype: "Rifle"
|
|
48730
|
+
},
|
|
48731
|
+
{
|
|
48732
|
+
disposition: 1.45,
|
|
48733
|
+
name: "VULKAR",
|
|
48734
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerSniperRifle.png",
|
|
48735
|
+
riventype: "Rifle"
|
|
48736
|
+
},
|
|
48737
|
+
{
|
|
48738
|
+
disposition: 1.4,
|
|
48739
|
+
name: "VULKAR WRAITH",
|
|
48740
|
+
texture: "_Lotus_Interface_Icons_Store_VulkarWraith.png",
|
|
48741
|
+
riventype: "Rifle"
|
|
48742
|
+
},
|
|
48743
|
+
{
|
|
48744
|
+
disposition: 1.245,
|
|
48745
|
+
name: "VULKLOK",
|
|
48746
|
+
texture: "_Lotus_Interface_Icons_Store_SentinelElectricRailgun.png",
|
|
48747
|
+
riventype: "Rifle"
|
|
48748
|
+
},
|
|
48749
|
+
{
|
|
48750
|
+
disposition: 1.05,
|
|
48751
|
+
name: "WAR",
|
|
48752
|
+
texture: "_Lotus_Interface_Icons_Store_StalkerTwoGreatSword.png",
|
|
48753
|
+
riventype: "Melee"
|
|
48754
|
+
},
|
|
48755
|
+
{
|
|
48756
|
+
disposition: 1.25,
|
|
48757
|
+
name: "WOLF SLEDGE",
|
|
48758
|
+
texture: "_Lotus_Interface_Icons_Store_WolfHammerSkin.png",
|
|
48759
|
+
riventype: "Melee"
|
|
48760
|
+
},
|
|
48761
|
+
{
|
|
48762
|
+
disposition: 0.65,
|
|
48763
|
+
name: "XORIS",
|
|
48764
|
+
texture: "_Lotus_Interface_Icons_Store_ProteaPolarizerCrpGlaive.png",
|
|
48765
|
+
riventype: "Melee"
|
|
48766
|
+
},
|
|
48767
|
+
{
|
|
48768
|
+
disposition: 1.25,
|
|
48769
|
+
name: "ZAKTI",
|
|
48770
|
+
texture: "_Lotus_Interface_Icons_Store_TnGuandaoPistol.png",
|
|
48771
|
+
riventype: "Pistol"
|
|
48772
|
+
},
|
|
48773
|
+
{
|
|
48774
|
+
disposition: 0.95,
|
|
48775
|
+
name: "ZAKTI PRIME",
|
|
48776
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_ZaktiPrime.png",
|
|
48777
|
+
riventype: "Pistol"
|
|
48778
|
+
},
|
|
48779
|
+
{
|
|
48780
|
+
disposition: 1.15,
|
|
48781
|
+
name: "ZARR",
|
|
48782
|
+
texture: "_Lotus_Interface_Icons_Store_GrineerCannon.png",
|
|
48783
|
+
riventype: "Rifle"
|
|
48784
|
+
},
|
|
48785
|
+
{
|
|
48786
|
+
disposition: 1.15,
|
|
48787
|
+
name: "ZENISTAR",
|
|
48788
|
+
texture: "_Lotus_Interface_Icons_Store_SundialAxe.png",
|
|
48789
|
+
riventype: "Melee"
|
|
48790
|
+
},
|
|
48791
|
+
{
|
|
48792
|
+
disposition: 1.1,
|
|
48793
|
+
name: "ZENITH",
|
|
48794
|
+
texture: "_Lotus_Interface_Icons_Store_SundialRifle.png",
|
|
48795
|
+
riventype: "Rifle"
|
|
48796
|
+
},
|
|
48797
|
+
{
|
|
48798
|
+
disposition: 1.2,
|
|
48799
|
+
name: "ZHUGE",
|
|
48800
|
+
texture: "_Lotus_Interface_Icons_Store_RepeatingCrossbow.png",
|
|
48801
|
+
riventype: "Rifle"
|
|
48802
|
+
},
|
|
48803
|
+
{
|
|
48804
|
+
disposition: 1.15,
|
|
48805
|
+
name: "ZHUGE PRIME",
|
|
48806
|
+
texture: "_Lotus_Interface_Icons_Store_Primes_ZhugePrime.png",
|
|
48807
|
+
riventype: "Rifle"
|
|
48808
|
+
},
|
|
48809
|
+
{
|
|
48810
|
+
disposition: 1.25,
|
|
48811
|
+
name: "ZYLOK",
|
|
48812
|
+
texture: "_Lotus_Interface_Icons_Store_ConclaveLeverPistol.png",
|
|
48813
|
+
riventype: "Pistol"
|
|
48814
|
+
},
|
|
48815
|
+
{
|
|
48816
|
+
disposition: 1.1,
|
|
48817
|
+
name: "ZYMOS",
|
|
48818
|
+
texture: "_Lotus_Interface_Icons_Store_InfUziWeapon.png",
|
|
48819
|
+
riventype: "Pistol"
|
|
48820
|
+
}
|
|
48821
|
+
],
|
|
48822
|
+
buffs: [
|
|
48823
|
+
{
|
|
48824
|
+
riventype: "Melee",
|
|
48825
|
+
text: "|val|% Heavy Attack Efficiency",
|
|
48826
|
+
value: 73.44,
|
|
48827
|
+
curse: true,
|
|
48828
|
+
buff: true
|
|
48829
|
+
},
|
|
48830
|
+
{
|
|
48831
|
+
riventype: "Archgun",
|
|
48832
|
+
text: "|val|% Multishot",
|
|
48833
|
+
value: 60.300000000000004,
|
|
48834
|
+
curse: true,
|
|
48835
|
+
buff: true
|
|
48836
|
+
},
|
|
48837
|
+
{
|
|
48838
|
+
riventype: "Pistol",
|
|
48839
|
+
text: "|val|% Multishot",
|
|
48840
|
+
value: 119.7,
|
|
48841
|
+
curse: true,
|
|
48842
|
+
buff: true
|
|
48843
|
+
},
|
|
48844
|
+
{
|
|
48845
|
+
riventype: "Shotgun",
|
|
48846
|
+
text: "|val|% Multishot",
|
|
48847
|
+
value: 119.7,
|
|
48848
|
+
curse: true,
|
|
48849
|
+
buff: true
|
|
48850
|
+
},
|
|
48851
|
+
{
|
|
48852
|
+
riventype: "Rifle",
|
|
48853
|
+
text: "|val|% Multishot",
|
|
48854
|
+
value: 90,
|
|
48855
|
+
curse: true,
|
|
48856
|
+
buff: true
|
|
48857
|
+
},
|
|
48858
|
+
{
|
|
48859
|
+
riventype: "Melee",
|
|
48860
|
+
text: "|val|% Melee Damage",
|
|
48861
|
+
value: 164.70000000000002,
|
|
48862
|
+
curse: false,
|
|
48863
|
+
buff: true
|
|
48864
|
+
},
|
|
48865
|
+
{
|
|
48866
|
+
riventype: "Shotgun",
|
|
48867
|
+
text: "|val|% Damage",
|
|
48868
|
+
value: 164.70000000000002,
|
|
48869
|
+
curse: true,
|
|
48870
|
+
buff: true
|
|
48871
|
+
},
|
|
48872
|
+
{
|
|
48873
|
+
riventype: "Rifle",
|
|
48874
|
+
text: "|val|% Damage",
|
|
48875
|
+
value: 164.9997,
|
|
48876
|
+
curse: true,
|
|
48877
|
+
buff: true
|
|
48878
|
+
},
|
|
48879
|
+
{
|
|
48880
|
+
riventype: "Pistol",
|
|
48881
|
+
text: "|val|% Damage",
|
|
48882
|
+
value: 219.6,
|
|
48883
|
+
curse: true,
|
|
48884
|
+
buff: true
|
|
48885
|
+
},
|
|
48886
|
+
{
|
|
48887
|
+
riventype: "Archgun",
|
|
48888
|
+
text: "|val|% Damage",
|
|
48889
|
+
value: 99.9,
|
|
48890
|
+
curse: true,
|
|
48891
|
+
buff: true
|
|
48892
|
+
},
|
|
48893
|
+
{
|
|
48894
|
+
riventype: "Melee",
|
|
48895
|
+
text: "|val|% Physical Damage",
|
|
48896
|
+
value: 119.7,
|
|
48897
|
+
curse: true,
|
|
48898
|
+
buff: true
|
|
48899
|
+
},
|
|
48900
|
+
{
|
|
48901
|
+
riventype: "Pistol",
|
|
48902
|
+
text: "|val|% Physical Damage",
|
|
48903
|
+
value: 119.997,
|
|
48904
|
+
curse: true,
|
|
48905
|
+
buff: true
|
|
48906
|
+
},
|
|
48907
|
+
{
|
|
48908
|
+
riventype: "Rifle",
|
|
48909
|
+
text: "|val|% Physical Damage",
|
|
48910
|
+
value: 119.997,
|
|
48911
|
+
curse: true,
|
|
48912
|
+
buff: true
|
|
48913
|
+
},
|
|
48914
|
+
{
|
|
48915
|
+
riventype: "Shotgun",
|
|
48916
|
+
text: "|val|% Physical Damage",
|
|
48917
|
+
value: 119.997,
|
|
48918
|
+
curse: true,
|
|
48919
|
+
buff: true
|
|
48920
|
+
},
|
|
48921
|
+
{
|
|
48922
|
+
riventype: "Archgun",
|
|
48923
|
+
text: "|val|% Physical Damage",
|
|
48924
|
+
value: 90,
|
|
48925
|
+
curse: true,
|
|
48926
|
+
buff: true
|
|
48927
|
+
},
|
|
48928
|
+
{
|
|
48929
|
+
riventype: "Melee",
|
|
48930
|
+
text: "|val|% Critical Chance",
|
|
48931
|
+
value: 180,
|
|
48932
|
+
curse: true,
|
|
48933
|
+
buff: true
|
|
48934
|
+
},
|
|
48935
|
+
{
|
|
48936
|
+
riventype: "Rifle",
|
|
48937
|
+
text: "|val|% Critical Chance",
|
|
48938
|
+
value: 149.994,
|
|
48939
|
+
curse: true,
|
|
48940
|
+
buff: true
|
|
48941
|
+
},
|
|
48942
|
+
{
|
|
48943
|
+
riventype: "Pistol",
|
|
48944
|
+
text: "|val|% Critical Chance",
|
|
48945
|
+
value: 149.994,
|
|
48946
|
+
curse: true,
|
|
48947
|
+
buff: true
|
|
48948
|
+
},
|
|
48949
|
+
{
|
|
48950
|
+
riventype: "Archgun",
|
|
48951
|
+
text: "|val|% Critical Chance",
|
|
48952
|
+
value: 99.9,
|
|
48953
|
+
curse: true,
|
|
48954
|
+
buff: true
|
|
48955
|
+
},
|
|
48956
|
+
{
|
|
48957
|
+
riventype: "Shotgun",
|
|
48958
|
+
text: "|val|% Critical Chance",
|
|
48959
|
+
value: 90,
|
|
48960
|
+
curse: true,
|
|
48961
|
+
buff: true
|
|
48962
|
+
},
|
|
48963
|
+
{
|
|
48964
|
+
riventype: "Melee",
|
|
48965
|
+
text: "|val|% Critical Damage",
|
|
48966
|
+
value: 90,
|
|
48967
|
+
curse: true,
|
|
48968
|
+
buff: true
|
|
48969
|
+
},
|
|
48970
|
+
{
|
|
48971
|
+
riventype: "Rifle",
|
|
48972
|
+
text: "|val|% Critical Damage",
|
|
48973
|
+
value: 119.997,
|
|
48974
|
+
curse: true,
|
|
48975
|
+
buff: true
|
|
48976
|
+
},
|
|
48977
|
+
{
|
|
48978
|
+
riventype: "Shotgun",
|
|
48979
|
+
text: "|val|% Critical Damage",
|
|
48980
|
+
value: 90,
|
|
48981
|
+
curse: true,
|
|
48982
|
+
buff: true
|
|
48983
|
+
},
|
|
48984
|
+
{
|
|
48985
|
+
riventype: "Pistol",
|
|
48986
|
+
text: "|val|% Critical Damage",
|
|
48987
|
+
value: 90,
|
|
48988
|
+
curse: true,
|
|
48989
|
+
buff: true
|
|
48990
|
+
},
|
|
48991
|
+
{
|
|
48992
|
+
riventype: "Archgun",
|
|
48993
|
+
text: "|val|% Critical Damage",
|
|
48994
|
+
value: 80.1,
|
|
48995
|
+
curse: true,
|
|
48996
|
+
buff: true
|
|
48997
|
+
},
|
|
48998
|
+
{
|
|
48999
|
+
riventype: "Rifle",
|
|
49000
|
+
text: "|val|% Elemental Damage",
|
|
49001
|
+
value: 90,
|
|
49002
|
+
curse: false,
|
|
49003
|
+
buff: true
|
|
49004
|
+
},
|
|
49005
|
+
{
|
|
49006
|
+
riventype: "Shotgun",
|
|
49007
|
+
text: "|val|% Elemental Damage",
|
|
49008
|
+
value: 90,
|
|
49009
|
+
curse: false,
|
|
49010
|
+
buff: true
|
|
49011
|
+
},
|
|
49012
|
+
{
|
|
49013
|
+
riventype: "Pistol",
|
|
49014
|
+
text: "|val|% Elemental Damage",
|
|
49015
|
+
value: 90,
|
|
49016
|
+
curse: false,
|
|
49017
|
+
buff: true
|
|
49018
|
+
},
|
|
49019
|
+
{
|
|
49020
|
+
riventype: "Melee",
|
|
49021
|
+
text: "|val|% Elemental Damage",
|
|
49022
|
+
value: 90,
|
|
49023
|
+
curse: false,
|
|
49024
|
+
buff: true
|
|
49025
|
+
},
|
|
49026
|
+
{
|
|
49027
|
+
riventype: "Archgun",
|
|
49028
|
+
text: "|val|% Elemental Damage",
|
|
49029
|
+
value: 119.7,
|
|
49030
|
+
curse: false,
|
|
49031
|
+
buff: true
|
|
49032
|
+
},
|
|
49033
|
+
{
|
|
49034
|
+
riventype: "Pistol",
|
|
49035
|
+
text: "|val|% Status Chance",
|
|
49036
|
+
value: 90,
|
|
49037
|
+
curse: true,
|
|
49038
|
+
buff: true
|
|
49039
|
+
},
|
|
49040
|
+
{
|
|
49041
|
+
riventype: "Shotgun",
|
|
49042
|
+
text: "|val|% Status Chance",
|
|
49043
|
+
value: 90,
|
|
49044
|
+
curse: true,
|
|
49045
|
+
buff: true
|
|
49046
|
+
},
|
|
49047
|
+
{
|
|
49048
|
+
riventype: "Rifle",
|
|
49049
|
+
text: "|val|% Status Chance",
|
|
49050
|
+
value: 90,
|
|
49051
|
+
curse: true,
|
|
49052
|
+
buff: true
|
|
49053
|
+
},
|
|
49054
|
+
{
|
|
49055
|
+
riventype: "Melee",
|
|
49056
|
+
text: "|val|% Status Chance",
|
|
49057
|
+
value: 90,
|
|
49058
|
+
curse: true,
|
|
49059
|
+
buff: true
|
|
49060
|
+
},
|
|
49061
|
+
{
|
|
49062
|
+
riventype: "Archgun",
|
|
49063
|
+
text: "|val|% Status Chance",
|
|
49064
|
+
value: 60.300000000000004,
|
|
49065
|
+
curse: true,
|
|
49066
|
+
buff: true
|
|
49067
|
+
},
|
|
49068
|
+
{
|
|
49069
|
+
riventype: "Pistol",
|
|
49070
|
+
text: "|val|% Status Duration",
|
|
49071
|
+
value: 99.99,
|
|
49072
|
+
curse: true,
|
|
49073
|
+
buff: true
|
|
49074
|
+
},
|
|
49075
|
+
{
|
|
49076
|
+
riventype: "Shotgun",
|
|
49077
|
+
text: "|val|% Status Duration",
|
|
49078
|
+
value: 99.99,
|
|
49079
|
+
curse: true,
|
|
49080
|
+
buff: true
|
|
49081
|
+
},
|
|
49082
|
+
{
|
|
49083
|
+
riventype: "Melee",
|
|
49084
|
+
text: "|val|% Status Duration",
|
|
49085
|
+
value: 99.99,
|
|
49086
|
+
curse: true,
|
|
49087
|
+
buff: true
|
|
49088
|
+
},
|
|
49089
|
+
{
|
|
49090
|
+
riventype: "Rifle",
|
|
49091
|
+
text: "|val|% Status Duration",
|
|
49092
|
+
value: 99.99,
|
|
49093
|
+
curse: true,
|
|
49094
|
+
buff: true
|
|
49095
|
+
},
|
|
49096
|
+
{
|
|
49097
|
+
riventype: "Archgun",
|
|
49098
|
+
text: "|val|% Status Duration",
|
|
49099
|
+
value: 99.99,
|
|
49100
|
+
curse: true,
|
|
49101
|
+
buff: true
|
|
49102
|
+
},
|
|
49103
|
+
{
|
|
49104
|
+
riventype: "Shotgun",
|
|
49105
|
+
text: "|val|% Damage to Faction",
|
|
49106
|
+
value: 45,
|
|
49107
|
+
curse: true,
|
|
49108
|
+
buff: true
|
|
49109
|
+
},
|
|
49110
|
+
{
|
|
49111
|
+
riventype: "Rifle",
|
|
49112
|
+
text: "|val|% Damage to Faction",
|
|
49113
|
+
value: 45,
|
|
49114
|
+
curse: true,
|
|
49115
|
+
buff: true
|
|
49116
|
+
},
|
|
49117
|
+
{
|
|
49118
|
+
riventype: "Melee",
|
|
49119
|
+
text: "|val|% Damage to Faction",
|
|
49120
|
+
value: 45,
|
|
49121
|
+
curse: true,
|
|
49122
|
+
buff: true
|
|
49123
|
+
},
|
|
49124
|
+
{
|
|
49125
|
+
riventype: "Pistol",
|
|
49126
|
+
text: "|val|% Damage to Faction",
|
|
49127
|
+
value: 45,
|
|
49128
|
+
curse: true,
|
|
49129
|
+
buff: true
|
|
49130
|
+
},
|
|
49131
|
+
{
|
|
49132
|
+
riventype: "Archgun",
|
|
49133
|
+
text: "|val|% Damage to Faction",
|
|
49134
|
+
value: 45,
|
|
49135
|
+
curse: true,
|
|
49136
|
+
buff: true
|
|
49137
|
+
},
|
|
49138
|
+
{
|
|
49139
|
+
riventype: "Shotgun",
|
|
49140
|
+
text: "|val|% Fire Rate",
|
|
49141
|
+
value: 90,
|
|
49142
|
+
curse: true,
|
|
49143
|
+
buff: true
|
|
49144
|
+
},
|
|
49145
|
+
{
|
|
49146
|
+
riventype: "Pistol",
|
|
49147
|
+
text: "|val|% Fire Rate",
|
|
49148
|
+
value: 74.7,
|
|
49149
|
+
curse: true,
|
|
49150
|
+
buff: true
|
|
49151
|
+
},
|
|
49152
|
+
{
|
|
49153
|
+
riventype: "Rifle",
|
|
49154
|
+
text: "|val|% Fire Rate",
|
|
49155
|
+
value: 60.03,
|
|
49156
|
+
curse: true,
|
|
49157
|
+
buff: true
|
|
49158
|
+
},
|
|
49159
|
+
{
|
|
49160
|
+
riventype: "Archgun",
|
|
49161
|
+
text: "|val|% Fire Rate",
|
|
49162
|
+
value: 60.03,
|
|
49163
|
+
curse: true,
|
|
49164
|
+
buff: true
|
|
49165
|
+
},
|
|
49166
|
+
{
|
|
49167
|
+
riventype: "Melee",
|
|
49168
|
+
text: "|val|% Attack Speed",
|
|
49169
|
+
value: 54.9,
|
|
49170
|
+
curse: true,
|
|
49171
|
+
buff: true
|
|
49172
|
+
},
|
|
49173
|
+
{
|
|
49174
|
+
riventype: "Melee",
|
|
49175
|
+
text: "|val|% Finisher Damage",
|
|
49176
|
+
value: 119.7,
|
|
49177
|
+
curse: true,
|
|
49178
|
+
buff: true
|
|
49179
|
+
},
|
|
49180
|
+
{
|
|
49181
|
+
riventype: "Melee",
|
|
49182
|
+
text: "|val| Range",
|
|
49183
|
+
value: 1.9422,
|
|
49184
|
+
curse: true,
|
|
49185
|
+
buff: true
|
|
49186
|
+
},
|
|
49187
|
+
{
|
|
49188
|
+
riventype: "Shotgun",
|
|
49189
|
+
text: "|val|% Magazine Capacity",
|
|
49190
|
+
value: 49.995,
|
|
49191
|
+
curse: true,
|
|
49192
|
+
buff: true
|
|
49193
|
+
},
|
|
49194
|
+
{
|
|
49195
|
+
riventype: "Pistol",
|
|
49196
|
+
text: "|val|% Magazine Capacity",
|
|
49197
|
+
value: 49.995,
|
|
49198
|
+
curse: true,
|
|
49199
|
+
buff: true
|
|
49200
|
+
},
|
|
49201
|
+
{
|
|
49202
|
+
riventype: "Rifle",
|
|
49203
|
+
text: "|val|% Magazine Capacity",
|
|
49204
|
+
value: 49.995,
|
|
49205
|
+
curse: true,
|
|
49206
|
+
buff: true
|
|
49207
|
+
},
|
|
49208
|
+
{
|
|
49209
|
+
riventype: "Archgun",
|
|
49210
|
+
text: "|val|% Magazine Capacity",
|
|
49211
|
+
value: 60.300000000000004,
|
|
49212
|
+
curse: true,
|
|
49213
|
+
buff: true
|
|
49214
|
+
},
|
|
49215
|
+
{
|
|
49216
|
+
riventype: "Pistol",
|
|
49217
|
+
text: "|val|% Ammo Maximum",
|
|
49218
|
+
value: 90,
|
|
49219
|
+
curse: true,
|
|
49220
|
+
buff: true
|
|
49221
|
+
},
|
|
49222
|
+
{
|
|
49223
|
+
riventype: "Shotgun",
|
|
49224
|
+
text: "|val|% Ammo Maximum",
|
|
49225
|
+
value: 90,
|
|
49226
|
+
curse: true,
|
|
49227
|
+
buff: true
|
|
49228
|
+
},
|
|
49229
|
+
{
|
|
49230
|
+
riventype: "Rifle",
|
|
49231
|
+
text: "|val|% Ammo Maximum",
|
|
49232
|
+
value: 49.95,
|
|
49233
|
+
curse: true,
|
|
49234
|
+
buff: true
|
|
49235
|
+
},
|
|
49236
|
+
{
|
|
49237
|
+
riventype: "Archgun",
|
|
49238
|
+
text: "|val|% Ammo Maximum",
|
|
49239
|
+
value: 99.9,
|
|
49240
|
+
curse: true,
|
|
49241
|
+
buff: true
|
|
49242
|
+
},
|
|
49243
|
+
{
|
|
49244
|
+
riventype: "Shotgun",
|
|
49245
|
+
text: "|val|% Projectile Speed",
|
|
49246
|
+
value: 90,
|
|
49247
|
+
curse: true,
|
|
49248
|
+
buff: true
|
|
49249
|
+
},
|
|
49250
|
+
{
|
|
49251
|
+
riventype: "Pistol",
|
|
49252
|
+
text: "|val|% Projectile Speed",
|
|
49253
|
+
value: 90,
|
|
49254
|
+
curse: true,
|
|
49255
|
+
buff: true
|
|
49256
|
+
},
|
|
49257
|
+
{
|
|
49258
|
+
riventype: "Rifle",
|
|
49259
|
+
text: "|val|% Projectile Speed",
|
|
49260
|
+
value: 90,
|
|
49261
|
+
curse: true,
|
|
49262
|
+
buff: true
|
|
49263
|
+
},
|
|
49264
|
+
{
|
|
49265
|
+
riventype: "Shotgun",
|
|
49266
|
+
text: "|val|% Reload Speed",
|
|
49267
|
+
value: 49.995,
|
|
49268
|
+
curse: true,
|
|
49269
|
+
buff: true
|
|
49270
|
+
},
|
|
49271
|
+
{
|
|
49272
|
+
riventype: "Pistol",
|
|
49273
|
+
text: "|val|% Reload Speed",
|
|
49274
|
+
value: 49.995,
|
|
49275
|
+
curse: true,
|
|
49276
|
+
buff: true
|
|
49277
|
+
},
|
|
49278
|
+
{
|
|
49279
|
+
riventype: "Rifle",
|
|
49280
|
+
text: "|val|% Reload Speed",
|
|
49281
|
+
value: 49.995,
|
|
49282
|
+
curse: true,
|
|
49283
|
+
buff: true
|
|
49284
|
+
},
|
|
49285
|
+
{
|
|
49286
|
+
riventype: "Archgun",
|
|
49287
|
+
text: "|val|% Reload Speed",
|
|
49288
|
+
value: 99.9,
|
|
49289
|
+
curse: true,
|
|
49290
|
+
buff: true
|
|
49291
|
+
},
|
|
49292
|
+
{
|
|
49293
|
+
riventype: "Shotgun",
|
|
49294
|
+
text: "|val|% Weapon Recoil",
|
|
49295
|
+
value: -90,
|
|
49296
|
+
curse: true,
|
|
49297
|
+
buff: true
|
|
49298
|
+
},
|
|
49299
|
+
{
|
|
49300
|
+
riventype: "Pistol",
|
|
49301
|
+
text: "|val|% Weapon Recoil",
|
|
49302
|
+
value: -90,
|
|
49303
|
+
curse: true,
|
|
49304
|
+
buff: true
|
|
49305
|
+
},
|
|
49306
|
+
{
|
|
49307
|
+
riventype: "Archgun",
|
|
49308
|
+
text: "|val|% Weapon Recoil",
|
|
49309
|
+
value: -90,
|
|
49310
|
+
curse: true,
|
|
49311
|
+
buff: true
|
|
49312
|
+
},
|
|
49313
|
+
{
|
|
49314
|
+
riventype: "Rifle",
|
|
49315
|
+
text: "|val|% Weapon Recoil",
|
|
49316
|
+
value: -90,
|
|
49317
|
+
curse: true,
|
|
49318
|
+
buff: true
|
|
49319
|
+
},
|
|
49320
|
+
{
|
|
49321
|
+
riventype: "Archgun",
|
|
49322
|
+
text: "|val|% Zoom",
|
|
49323
|
+
value: 59.994,
|
|
49324
|
+
curse: true,
|
|
49325
|
+
buff: true
|
|
49326
|
+
},
|
|
49327
|
+
{
|
|
49328
|
+
riventype: "Rifle",
|
|
49329
|
+
text: "|val|% Zoom",
|
|
49330
|
+
value: 59.994,
|
|
49331
|
+
curse: true,
|
|
49332
|
+
buff: true
|
|
49333
|
+
},
|
|
49334
|
+
{
|
|
49335
|
+
riventype: "Pistol",
|
|
49336
|
+
text: "|val|% Zoom",
|
|
49337
|
+
value: 80.1,
|
|
49338
|
+
curse: true,
|
|
49339
|
+
buff: true
|
|
49340
|
+
},
|
|
49341
|
+
{
|
|
49342
|
+
riventype: "Archgun",
|
|
49343
|
+
text: "|val| Punch Through",
|
|
49344
|
+
value: 2.6999999999999997,
|
|
49345
|
+
curse: false,
|
|
49346
|
+
buff: true
|
|
49347
|
+
},
|
|
49348
|
+
{
|
|
49349
|
+
riventype: "Shotgun",
|
|
49350
|
+
text: "|val| Punch Through",
|
|
49351
|
+
value: 2.6999999999999997,
|
|
49352
|
+
curse: false,
|
|
49353
|
+
buff: true
|
|
49354
|
+
},
|
|
49355
|
+
{
|
|
49356
|
+
riventype: "Rifle",
|
|
49357
|
+
text: "|val| Punch Through",
|
|
49358
|
+
value: 2.6999999999999997,
|
|
49359
|
+
curse: false,
|
|
49360
|
+
buff: true
|
|
49361
|
+
},
|
|
49362
|
+
{
|
|
49363
|
+
riventype: "Pistol",
|
|
49364
|
+
text: "|val| Punch Through",
|
|
49365
|
+
value: 2.6999999999999997,
|
|
49366
|
+
curse: false,
|
|
49367
|
+
buff: true
|
|
49368
|
+
},
|
|
49369
|
+
{
|
|
49370
|
+
riventype: "Melee",
|
|
49371
|
+
text: "|val|% Critical Chance for Slide Attack",
|
|
49372
|
+
value: 120.00599999999999,
|
|
49373
|
+
curse: true,
|
|
49374
|
+
buff: true
|
|
49375
|
+
},
|
|
49376
|
+
{
|
|
49377
|
+
riventype: "Melee",
|
|
49378
|
+
text: "|val|s Combo Duration",
|
|
49379
|
+
value: 8.1,
|
|
49380
|
+
curse: true,
|
|
49381
|
+
buff: true
|
|
49382
|
+
},
|
|
49383
|
+
{
|
|
49384
|
+
riventype: "Melee",
|
|
49385
|
+
text: "|val| Initial Combo",
|
|
49386
|
+
value: 24.5016,
|
|
49387
|
+
curse: false,
|
|
49388
|
+
buff: true
|
|
49389
|
+
},
|
|
49390
|
+
{
|
|
49391
|
+
riventype: "Melee",
|
|
49392
|
+
text: "|val|% Chance to Gain Combo Count",
|
|
49393
|
+
value: 104.85000000000001,
|
|
49394
|
+
curse: true,
|
|
49395
|
+
buff: false
|
|
49396
|
+
},
|
|
49397
|
+
{
|
|
49398
|
+
riventype: "Melee",
|
|
49399
|
+
text: "|val|% Additional Combo Count Chance",
|
|
49400
|
+
value: 58.77,
|
|
49401
|
+
curse: false,
|
|
49402
|
+
buff: true
|
|
49403
|
+
}
|
|
49404
|
+
]
|
|
49405
|
+
};
|
|
49406
|
+
|
|
49407
|
+
// src/assets/rivenAttrValues.json
|
|
49408
|
+
var rivenAttrValues_default = {
|
|
49409
|
+
Rifle: {
|
|
49410
|
+
"Ammo Maximum": 49.95,
|
|
49411
|
+
"Damage to Corpus": 0.45,
|
|
49412
|
+
"Damage to Grineer": 0.45,
|
|
49413
|
+
"Damage to Infested": 0.45,
|
|
49414
|
+
"Cold Damage": 90,
|
|
49415
|
+
"Critical Chance": 149.99,
|
|
49416
|
+
"Critical Damage": 120,
|
|
49417
|
+
Damage: 165,
|
|
49418
|
+
"Electricity Damage": 90,
|
|
49419
|
+
"Heat Damage": 90,
|
|
49420
|
+
"Fire Rate / Attack Speed": 60.03,
|
|
49421
|
+
"Projectile Speed": 90,
|
|
49422
|
+
"Impact Damage": 119.97,
|
|
49423
|
+
"Magazine Capacity": 50,
|
|
49424
|
+
Multishot: 90,
|
|
49425
|
+
"Toxin Damage": 90,
|
|
49426
|
+
"Punch Through": 2.7,
|
|
49427
|
+
"Puncture Damage": 119.97,
|
|
49428
|
+
"Reload Speed": 50,
|
|
49429
|
+
"Slash Damage": 119.97,
|
|
49430
|
+
"Status Chance": 90,
|
|
49431
|
+
"Status Duration": 99.99,
|
|
49432
|
+
"Weapon Recoil": -90,
|
|
49433
|
+
Zoom: 59.99
|
|
49434
|
+
},
|
|
49435
|
+
Shotgun: {
|
|
49436
|
+
"Ammo Maximum": 90,
|
|
49437
|
+
"Damage to Corpus": 0.45,
|
|
49438
|
+
"Damage to Grineer": 0.45,
|
|
49439
|
+
"Damage to Infested": 0.45,
|
|
49440
|
+
"Cold Damage": 90,
|
|
49441
|
+
"Critical Chance": 90,
|
|
49442
|
+
"Critical Damage": 90,
|
|
49443
|
+
Damage: 164.7,
|
|
49444
|
+
"Electricity Damage": 90,
|
|
49445
|
+
"Heat Damage": 90,
|
|
49446
|
+
"Fire Rate / Attack Speed": 89.1,
|
|
49447
|
+
"Projectile Speed": 89.1,
|
|
49448
|
+
"Impact Damage": 119.97,
|
|
49449
|
+
"Magazine Capacity": 50,
|
|
49450
|
+
Multishot: 119.7,
|
|
49451
|
+
"Toxin Damage": 90,
|
|
49452
|
+
"Punch Through": 2.7,
|
|
49453
|
+
"Puncture Damage": 119.97,
|
|
49454
|
+
"Reload Speed": 49.45,
|
|
49455
|
+
"Slash Damage": 119.97,
|
|
49456
|
+
"Status Chance": 90,
|
|
49457
|
+
"Status Duration": 99,
|
|
49458
|
+
"Weapon Recoil": -90
|
|
49459
|
+
},
|
|
49460
|
+
Pistol: {
|
|
49461
|
+
"Ammo Maximum": 90,
|
|
49462
|
+
"Damage to Corpus": 0.45,
|
|
49463
|
+
"Damage to Grineer": 0.45,
|
|
49464
|
+
"Damage to Infested": 0.45,
|
|
49465
|
+
"Cold Damage": 90,
|
|
49466
|
+
"Critical Chance": 149.99,
|
|
49467
|
+
"Critical Damage": 90,
|
|
49468
|
+
Damage: 219.6,
|
|
49469
|
+
"Electricity Damage": 90,
|
|
49470
|
+
"Heat Damage": 90,
|
|
49471
|
+
"Fire Rate / Attack Speed": 74.7,
|
|
49472
|
+
"Projectile Speed": 90,
|
|
49473
|
+
"Impact Damage": 119.97,
|
|
49474
|
+
"Magazine Capacity": 50,
|
|
49475
|
+
Multishot: 119.7,
|
|
49476
|
+
"Toxin Damage": 90,
|
|
49477
|
+
"Punch Through": 2.7,
|
|
49478
|
+
"Puncture Damage": 119.97,
|
|
49479
|
+
"Reload Speed": 50,
|
|
49480
|
+
"Slash Damage": 119.97,
|
|
49481
|
+
"Status Chance": 90,
|
|
49482
|
+
"Status Duration": 99.99,
|
|
49483
|
+
"Weapon Recoil": -90,
|
|
49484
|
+
Zoom: 80.1
|
|
49485
|
+
},
|
|
49486
|
+
Archgun: {
|
|
49487
|
+
"Ammo Maximum": 99.9,
|
|
49488
|
+
"Damage to Corpus": 0.45,
|
|
49489
|
+
"Damage to Grineer": 0.45,
|
|
49490
|
+
"Damage to Infested": 0.45,
|
|
49491
|
+
"Cold Damage": 119.7,
|
|
49492
|
+
"Critical Chance": 99.9,
|
|
49493
|
+
"Critical Damage": 80.1,
|
|
49494
|
+
Damage: 99.9,
|
|
49495
|
+
"Electricity Damage": 119.7,
|
|
49496
|
+
"Heat Damage": 119.7,
|
|
49497
|
+
"Fire Rate / Attack Speed": 60.03,
|
|
49498
|
+
"Impact Damage": 90,
|
|
49499
|
+
"Magazine Capacity": 60.3,
|
|
49500
|
+
Multishot: 60.3,
|
|
49501
|
+
"Toxin Damage": 119.7,
|
|
49502
|
+
"Punch Through": 2.7,
|
|
49503
|
+
"Puncture Damage": 90,
|
|
49504
|
+
"Reload Speed": 99.9,
|
|
49505
|
+
"Slash Damage": 90,
|
|
49506
|
+
"Status Chance": 60.3,
|
|
49507
|
+
"Status Duration": 99.99,
|
|
49508
|
+
"Weapon Recoil": -90,
|
|
49509
|
+
Zoom: 59.99
|
|
49510
|
+
},
|
|
49511
|
+
Melee: {
|
|
49512
|
+
"Additional Combo Count Chance": 58.77,
|
|
49513
|
+
"Damage to Corpus": 0.45,
|
|
49514
|
+
"Damage to Grineer": 0.45,
|
|
49515
|
+
"Damage to Infested": 0.45,
|
|
49516
|
+
"Cold Damage": 90,
|
|
49517
|
+
"Combo Duration": 8.1,
|
|
49518
|
+
"Critical Chance": 180,
|
|
49519
|
+
"Critical Chance for Slide Attack": 120,
|
|
49520
|
+
"Critical Damage": 90,
|
|
49521
|
+
Damage: 164.7,
|
|
49522
|
+
"Electricity Damage": 90,
|
|
49523
|
+
"Heat Damage": 90,
|
|
49524
|
+
"Finisher Damage": 119.7,
|
|
49525
|
+
"Fire Rate / Attack Speed": 54.9,
|
|
49526
|
+
"Initial Combo": 24.5,
|
|
49527
|
+
"Impact Damage": 119.7,
|
|
49528
|
+
"Heavy Attack Efficiency": 73.44,
|
|
49529
|
+
"Toxin Damage": 90,
|
|
49530
|
+
"Puncture Damage": 119.7,
|
|
49531
|
+
Range: 1.94,
|
|
49532
|
+
"Slash Damage": 119.7,
|
|
49533
|
+
"Status Chance": 90,
|
|
49534
|
+
"Status Duration": 99
|
|
49535
|
+
}
|
|
49536
|
+
};
|
|
49537
|
+
|
|
45652
49538
|
// src/components/wf.tsx
|
|
45653
49539
|
var import_jsx_runtime2 = require("@satorijs/element/jsx-runtime");
|
|
45654
49540
|
var ArbitrationTable = /* @__PURE__ */ __name((arbi) => {
|
|
@@ -45989,6 +49875,279 @@ var RelicComponent = /* @__PURE__ */ __name((relic) => {
|
|
|
45989
49875
|
}
|
|
45990
49876
|
);
|
|
45991
49877
|
}, "RelicComponent");
|
|
49878
|
+
var RivenComponent = /* @__PURE__ */ __name((data) => {
|
|
49879
|
+
const formatValue = /* @__PURE__ */ __name((value, unit) => {
|
|
49880
|
+
switch (unit) {
|
|
49881
|
+
case "percent":
|
|
49882
|
+
return `${value.toFixed(1)}%`;
|
|
49883
|
+
case "multiply":
|
|
49884
|
+
return `x${value.toFixed(2)}`;
|
|
49885
|
+
case "seconds":
|
|
49886
|
+
return `${value.toFixed(2)}s`;
|
|
49887
|
+
default:
|
|
49888
|
+
return value.toString();
|
|
49889
|
+
}
|
|
49890
|
+
}, "formatValue");
|
|
49891
|
+
const formatRange = /* @__PURE__ */ __name((min, max, unit) => {
|
|
49892
|
+
const format = /* @__PURE__ */ __name((num) => {
|
|
49893
|
+
switch (unit) {
|
|
49894
|
+
case "percent":
|
|
49895
|
+
return `${num.toFixed(1)}%`;
|
|
49896
|
+
case "multiply":
|
|
49897
|
+
return `x${num.toFixed(2)}`;
|
|
49898
|
+
case "seconds":
|
|
49899
|
+
return `${num.toFixed(2)}s`;
|
|
49900
|
+
default:
|
|
49901
|
+
return num.toString();
|
|
49902
|
+
}
|
|
49903
|
+
}, "format");
|
|
49904
|
+
return `${format(min)} - ${format(max)}`;
|
|
49905
|
+
}, "formatRange");
|
|
49906
|
+
const isInRange = /* @__PURE__ */ __name((percent) => {
|
|
49907
|
+
return percent <= 0.1 && percent >= -0.1;
|
|
49908
|
+
}, "isInRange");
|
|
49909
|
+
const getPercentColor = /* @__PURE__ */ __name((percent) => {
|
|
49910
|
+
const clampedPercent = Math.max(-0.1, Math.min(0.1, percent));
|
|
49911
|
+
const normalized = (clampedPercent + 0.1) / 0.2;
|
|
49912
|
+
const colors = [
|
|
49913
|
+
{ pos: 0, color: "#fa4336" },
|
|
49914
|
+
{ pos: 0.25, color: "#ff9800" },
|
|
49915
|
+
{ pos: 0.5, color: "#ff9800" },
|
|
49916
|
+
{ pos: 0.75, color: "#8bc34a" },
|
|
49917
|
+
{ pos: 1, color: "#4caf50" }
|
|
49918
|
+
];
|
|
49919
|
+
let startColor = colors[0];
|
|
49920
|
+
let endColor = colors[colors.length - 1];
|
|
49921
|
+
for (let i = 0; i < colors.length - 1; i++) {
|
|
49922
|
+
if (normalized >= colors[i].pos && normalized <= colors[i + 1].pos) {
|
|
49923
|
+
startColor = colors[i];
|
|
49924
|
+
endColor = colors[i + 1];
|
|
49925
|
+
break;
|
|
49926
|
+
}
|
|
49927
|
+
}
|
|
49928
|
+
const range = endColor.pos - startColor.pos;
|
|
49929
|
+
const relativePosition = range > 0 ? (normalized - startColor.pos) / range : 0;
|
|
49930
|
+
const startRgb = hexToRgb(startColor.color);
|
|
49931
|
+
const endRgb = hexToRgb(endColor.color);
|
|
49932
|
+
const r = lerp(startRgb.r, endRgb.r, relativePosition);
|
|
49933
|
+
const g = lerp(startRgb.g, endRgb.g, relativePosition);
|
|
49934
|
+
const b = lerp(startRgb.b, endRgb.b, relativePosition);
|
|
49935
|
+
return rgbToHex(r, g, b);
|
|
49936
|
+
}, "getPercentColor");
|
|
49937
|
+
const getDispositionIcon = /* @__PURE__ */ __name((disposition) => {
|
|
49938
|
+
if (disposition < 0.5) {
|
|
49939
|
+
return "◯◯◯◯◯";
|
|
49940
|
+
} else if (disposition < 0.69) {
|
|
49941
|
+
return "⬤◯◯◯◯";
|
|
49942
|
+
} else if (disposition <= 0.89) {
|
|
49943
|
+
return "⬤⬤◯◯◯";
|
|
49944
|
+
} else if (disposition <= 1.1) {
|
|
49945
|
+
return "⬤⬤⬤◯◯";
|
|
49946
|
+
} else if (disposition <= 1.3) {
|
|
49947
|
+
return "⬤⬤⬤⬤◯";
|
|
49948
|
+
} else {
|
|
49949
|
+
return "⬤⬤⬤⬤⬤";
|
|
49950
|
+
}
|
|
49951
|
+
}, "getDispositionIcon");
|
|
49952
|
+
const getProgressWidth = /* @__PURE__ */ __name((percent) => {
|
|
49953
|
+
const normalized = (percent + 1) / 2 * 100;
|
|
49954
|
+
return `${Math.max(0, Math.min(100, normalized))}%`;
|
|
49955
|
+
}, "getProgressWidth");
|
|
49956
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("div", { style: `display: flex; gap: 20px; width: 600px;`, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
49957
|
+
"div",
|
|
49958
|
+
{
|
|
49959
|
+
style: `width: 100%; border-radius: 8px; padding: 20px; box-shadow: 0 4px 6px rgba(0,0,0,0.3); border: 1px solid #444;`,
|
|
49960
|
+
children: [
|
|
49961
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
49962
|
+
"div",
|
|
49963
|
+
{
|
|
49964
|
+
style: `display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #444;`,
|
|
49965
|
+
children: [
|
|
49966
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("h2", { style: `margin: 0; font-size: 20px;`, children: data.name }),
|
|
49967
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
49968
|
+
"div",
|
|
49969
|
+
{
|
|
49970
|
+
style: `background-color: #f0f0f0; padding: 4px 12px; border-radius: 12px; font-size: 14px; line-height: 1;`,
|
|
49971
|
+
children: `倾向: ${getDispositionIcon(
|
|
49972
|
+
data.disposition
|
|
49973
|
+
)} (${data.disposition.toFixed(2)})`
|
|
49974
|
+
}
|
|
49975
|
+
)
|
|
49976
|
+
]
|
|
49977
|
+
}
|
|
49978
|
+
),
|
|
49979
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("div", { style: `margin-bottom: 25px;`, children: [
|
|
49980
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
49981
|
+
"h3",
|
|
49982
|
+
{
|
|
49983
|
+
style: `color: #4caf50; margin: 0 0 15px 0; font-size: 16px; display: flex; align-items: center;`,
|
|
49984
|
+
children: [
|
|
49985
|
+
"正面词条 (",
|
|
49986
|
+
data.buffs.length,
|
|
49987
|
+
")"
|
|
49988
|
+
]
|
|
49989
|
+
}
|
|
49990
|
+
),
|
|
49991
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("ul", { children: data.buffs.map((buff) => {
|
|
49992
|
+
const inRange = isInRange(buff.percent);
|
|
49993
|
+
const percentColor = getPercentColor(buff.percent);
|
|
49994
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
49995
|
+
"li",
|
|
49996
|
+
{
|
|
49997
|
+
style: `
|
|
49998
|
+
background-color: #eeeeee;
|
|
49999
|
+
border-radius: 6px;
|
|
50000
|
+
padding: 12px;
|
|
50001
|
+
margin-bottom: 10px;
|
|
50002
|
+
border-left: 4px solid ${percentColor};
|
|
50003
|
+
position: relative;`,
|
|
50004
|
+
children: [
|
|
50005
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
50006
|
+
"div",
|
|
50007
|
+
{
|
|
50008
|
+
style: `display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px;`,
|
|
50009
|
+
children: [
|
|
50010
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { style: `font-weight: bold;`, children: buff.name }),
|
|
50011
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { style: `font-size: 18px; font-weight: bold;`, children: formatValue(buff.value, buff.unit) })
|
|
50012
|
+
]
|
|
50013
|
+
}
|
|
50014
|
+
),
|
|
50015
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
50016
|
+
"div",
|
|
50017
|
+
{
|
|
50018
|
+
style: `height: 10px; background-color: #444; border-radius: 3px; margin-bottom: 8px;`,
|
|
50019
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
50020
|
+
"div",
|
|
50021
|
+
{
|
|
50022
|
+
style: `height: 10px; position: relative; overflow: hidden;`,
|
|
50023
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
50024
|
+
"p",
|
|
50025
|
+
{
|
|
50026
|
+
style: `position: absolute; left: 0; top: 0; height: 100%; width: ${getProgressWidth(
|
|
50027
|
+
buff.percent * 10
|
|
50028
|
+
)}; background-color: ${percentColor}; border-radius: 3px;`
|
|
50029
|
+
}
|
|
50030
|
+
)
|
|
50031
|
+
}
|
|
50032
|
+
)
|
|
50033
|
+
}
|
|
50034
|
+
),
|
|
50035
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
50036
|
+
"div",
|
|
50037
|
+
{
|
|
50038
|
+
style: `display: flex; justify-content: space-between; font-size: 12px; color: #aaa;`,
|
|
50039
|
+
children: [
|
|
50040
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("span", { children: [
|
|
50041
|
+
"范围: ",
|
|
50042
|
+
formatRange(buff.min, buff.max, buff.unit)
|
|
50043
|
+
] }),
|
|
50044
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("span", { style: `color: ${percentColor};`, children: [
|
|
50045
|
+
buff.percent > 0 ? "+" : "",
|
|
50046
|
+
(buff.percent * 100).toFixed(2) + "%"
|
|
50047
|
+
] })
|
|
50048
|
+
]
|
|
50049
|
+
}
|
|
50050
|
+
),
|
|
50051
|
+
!inRange ? /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
50052
|
+
"div",
|
|
50053
|
+
{
|
|
50054
|
+
style: `margin-top: 8px; padding: 6px; background-color: rgba(244, 67, 54, 0.2); border-radius: 4px; font-size: 12px; color: #f44336; display: flex; align-items: center;`,
|
|
50055
|
+
children: [
|
|
50056
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { style: `margin-right: 6px;`, children: "⚠" }),
|
|
50057
|
+
"数值不在正常范围内(可能未满级或倾向未更新)"
|
|
50058
|
+
]
|
|
50059
|
+
}
|
|
50060
|
+
) : ""
|
|
50061
|
+
]
|
|
50062
|
+
}
|
|
50063
|
+
);
|
|
50064
|
+
}) })
|
|
50065
|
+
] }),
|
|
50066
|
+
data.curses.length > 0 ? /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("div", { children: [
|
|
50067
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
50068
|
+
"h3",
|
|
50069
|
+
{
|
|
50070
|
+
style: `color: #f44336; margin: 0 0 15px 0; font-size: 16px; display: flex; align-items: center;`,
|
|
50071
|
+
children: [
|
|
50072
|
+
"负面词条 (",
|
|
50073
|
+
data.curses.length,
|
|
50074
|
+
")"
|
|
50075
|
+
]
|
|
50076
|
+
}
|
|
50077
|
+
),
|
|
50078
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("ul", { children: data.curses.map((curse, curseIndex) => {
|
|
50079
|
+
const inRange = isInRange(curse.percent);
|
|
50080
|
+
const percentColor = getPercentColor(curse.percent);
|
|
50081
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
50082
|
+
"li",
|
|
50083
|
+
{
|
|
50084
|
+
style: `background-color: #eeeeee; border-radius: 6px; padding: 12px; margin-bottom: 10px; border-left: 4px solid ${percentColor};`,
|
|
50085
|
+
children: [
|
|
50086
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
50087
|
+
"div",
|
|
50088
|
+
{
|
|
50089
|
+
style: `display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px;`,
|
|
50090
|
+
children: [
|
|
50091
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { style: `font-weight: bold;`, children: curse.name }),
|
|
50092
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { style: `font-size: 18px; font-weight: bold;`, children: formatValue(curse.value, curse.unit) })
|
|
50093
|
+
]
|
|
50094
|
+
}
|
|
50095
|
+
),
|
|
50096
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
50097
|
+
"div",
|
|
50098
|
+
{
|
|
50099
|
+
style: `height: 10px; background-color: #444; border-radius: 3px; margin-bottom: 8px;`,
|
|
50100
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
50101
|
+
"div",
|
|
50102
|
+
{
|
|
50103
|
+
style: `height: 10px; position: relative; overflow: hidden;`,
|
|
50104
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
50105
|
+
"p",
|
|
50106
|
+
{
|
|
50107
|
+
style: `position: absolute; left: 0; top: 0; height: 100%; width: ${getProgressWidth(
|
|
50108
|
+
curse.percent * 10
|
|
50109
|
+
)}; background-color: ${percentColor}; border-radius: 3px;`
|
|
50110
|
+
}
|
|
50111
|
+
)
|
|
50112
|
+
}
|
|
50113
|
+
)
|
|
50114
|
+
}
|
|
50115
|
+
),
|
|
50116
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
50117
|
+
"div",
|
|
50118
|
+
{
|
|
50119
|
+
style: `display: flex; justify-content: space-between; font-size: 12px; color: #aaa;`,
|
|
50120
|
+
children: [
|
|
50121
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("span", { children: [
|
|
50122
|
+
"范围: ",
|
|
50123
|
+
formatRange(curse.min, curse.max, curse.unit)
|
|
50124
|
+
] }),
|
|
50125
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("span", { style: `color: ${percentColor};`, children: [
|
|
50126
|
+
curse.percent > 0 ? "+" : "",
|
|
50127
|
+
(curse.percent * 100).toFixed(2) + "%"
|
|
50128
|
+
] })
|
|
50129
|
+
]
|
|
50130
|
+
}
|
|
50131
|
+
),
|
|
50132
|
+
!inRange ? /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
50133
|
+
"div",
|
|
50134
|
+
{
|
|
50135
|
+
style: `margin-top: 8px; padding: 6px; background-color: rgba(244, 67, 54, 0.2); border-radius: 4px; font-size: 12px; color: #f44336; display: flex; align-items: center;`,
|
|
50136
|
+
children: [
|
|
50137
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { style: `margin-right: 6px;`, children: "⚠" }),
|
|
50138
|
+
"数值不在正常范围内(可能未满级或倾向未更新)"
|
|
50139
|
+
]
|
|
50140
|
+
}
|
|
50141
|
+
) : ""
|
|
50142
|
+
]
|
|
50143
|
+
}
|
|
50144
|
+
);
|
|
50145
|
+
}) })
|
|
50146
|
+
] }) : ""
|
|
50147
|
+
]
|
|
50148
|
+
}
|
|
50149
|
+
) });
|
|
50150
|
+
}, "RivenComponent");
|
|
45992
50151
|
|
|
45993
50152
|
// src/api/wf-api.ts
|
|
45994
50153
|
var apiBase = "https://api.warframe.com/cdn/";
|
|
@@ -45999,6 +50158,37 @@ var getWorldState = /* @__PURE__ */ __name(async () => {
|
|
|
45999
50158
|
return ws;
|
|
46000
50159
|
}, "getWorldState");
|
|
46001
50160
|
|
|
50161
|
+
// src/services/ocr-service.ts
|
|
50162
|
+
var extractTextFromImage = /* @__PURE__ */ __name(async (image, secret) => {
|
|
50163
|
+
if (image instanceof Blob) {
|
|
50164
|
+
const buffer = await image.arrayBuffer();
|
|
50165
|
+
image = Buffer.from(buffer).toString("base64");
|
|
50166
|
+
}
|
|
50167
|
+
const tencentcloud = require("tencentcloud-sdk-nodejs-ocr");
|
|
50168
|
+
const ocrClient = tencentcloud.ocr.v20181119.Client;
|
|
50169
|
+
const clientConfig = {
|
|
50170
|
+
credential: {
|
|
50171
|
+
secretId: secret.id,
|
|
50172
|
+
secretKey: secret.key
|
|
50173
|
+
},
|
|
50174
|
+
region: "",
|
|
50175
|
+
profile: {
|
|
50176
|
+
httpProfile: {
|
|
50177
|
+
endpoint: "ocr.tencentcloudapi.com"
|
|
50178
|
+
}
|
|
50179
|
+
}
|
|
50180
|
+
};
|
|
50181
|
+
const client = new ocrClient(clientConfig);
|
|
50182
|
+
try {
|
|
50183
|
+
return await client.GeneralAccurateOCR({
|
|
50184
|
+
ImageBase64: image
|
|
50185
|
+
});
|
|
50186
|
+
} catch (err) {
|
|
50187
|
+
console.error("error", err);
|
|
50188
|
+
return void 0;
|
|
50189
|
+
}
|
|
50190
|
+
}, "extractTextFromImage");
|
|
50191
|
+
|
|
46002
50192
|
// src/services/wf-service.ts
|
|
46003
50193
|
var arbitrationSchedule = arbys_default.split("\n").map((line) => line.split(",")).filter((arr) => arr.length == 2).map((arr) => {
|
|
46004
50194
|
return {
|
|
@@ -46075,6 +50265,82 @@ var tierListForMatch = [
|
|
|
46075
50265
|
"Requiem",
|
|
46076
50266
|
"Vanguard"
|
|
46077
50267
|
].map((t) => normalizeName(t));
|
|
50268
|
+
var rivenAttrValueDict = (function() {
|
|
50269
|
+
const dict = {};
|
|
50270
|
+
for (const key in rivenAttrValues_default) {
|
|
50271
|
+
const attrs = rivenAttrValues_default[key];
|
|
50272
|
+
dict[key] = {};
|
|
50273
|
+
for (const attrKey in attrs) {
|
|
50274
|
+
const removeDamageSuffix = attrKey.endsWith("Damage") && attrKey !== "Damage" && attrKey !== "Finisher Damage" && !attrKey.startsWith("Critical");
|
|
50275
|
+
const wfmKey = removeDamageSuffix ? normalizeName(attrKey.replace("Damage", "")) : normalizeName(attrKey);
|
|
50276
|
+
dict[key][wfmKey] = attrs[attrKey];
|
|
50277
|
+
}
|
|
50278
|
+
}
|
|
50279
|
+
return dict;
|
|
50280
|
+
})();
|
|
50281
|
+
var weaponRivenDispositionDict = (function() {
|
|
50282
|
+
const mapped = rivencalc_default.weapons.reduce((prev, element) => {
|
|
50283
|
+
let mapped2 = void 0;
|
|
50284
|
+
for (const weaponKey in import_warframe_public_export_plus3.ExportWeapons) {
|
|
50285
|
+
const weapon = import_warframe_public_export_plus3.ExportWeapons[weaponKey];
|
|
50286
|
+
const splited = weapon.name.split("/");
|
|
50287
|
+
if (splited.length <= 0) {
|
|
50288
|
+
continue;
|
|
50289
|
+
}
|
|
50290
|
+
const keyName = splited[splited.length - 1];
|
|
50291
|
+
const normalizedCalcName = normalizeName(element.name);
|
|
50292
|
+
if (normalizeName(keyName) === normalizedCalcName) {
|
|
50293
|
+
mapped2 = weapon;
|
|
50294
|
+
break;
|
|
50295
|
+
}
|
|
50296
|
+
const weaponEN2 = import_warframe_public_export_plus3.dict_en[weapon.name];
|
|
50297
|
+
if (weaponEN2 && normalizeName(weaponEN2) === normalizedCalcName) {
|
|
50298
|
+
mapped2 = weapon;
|
|
50299
|
+
break;
|
|
50300
|
+
}
|
|
50301
|
+
}
|
|
50302
|
+
if (!mapped2) {
|
|
50303
|
+
return prev;
|
|
50304
|
+
}
|
|
50305
|
+
const weaponEN = import_warframe_public_export_plus3.dict_en[mapped2.name];
|
|
50306
|
+
const weaponZH = import_warframe_public_export_plus3.dict_zh[mapped2.name];
|
|
50307
|
+
const result = {
|
|
50308
|
+
name: {
|
|
50309
|
+
en: weaponEN,
|
|
50310
|
+
zh: weaponZH
|
|
50311
|
+
},
|
|
50312
|
+
calc: element,
|
|
50313
|
+
weapon: mapped2
|
|
50314
|
+
};
|
|
50315
|
+
prev.push(result);
|
|
50316
|
+
return prev;
|
|
50317
|
+
}, []);
|
|
50318
|
+
return listToDict(mapped, (e) => [
|
|
50319
|
+
normalizeName(e.name.zh),
|
|
50320
|
+
normalizeName(e.name.en)
|
|
50321
|
+
]);
|
|
50322
|
+
})();
|
|
50323
|
+
var rivenStatFixFactor = {
|
|
50324
|
+
"2_0": { buffFactor: 0.99, buffCount: 2, curseFactor: 0, curseCount: 0 },
|
|
50325
|
+
"2_1": {
|
|
50326
|
+
buffFactor: 1.2375,
|
|
50327
|
+
buffCount: 2,
|
|
50328
|
+
curseFactor: -0.495,
|
|
50329
|
+
curseCount: 1
|
|
50330
|
+
},
|
|
50331
|
+
"3_0": {
|
|
50332
|
+
buffFactor: 0.75,
|
|
50333
|
+
buffCount: 3,
|
|
50334
|
+
curseFactor: 0,
|
|
50335
|
+
curseCount: 0
|
|
50336
|
+
},
|
|
50337
|
+
"3_1": {
|
|
50338
|
+
buffFactor: 0.9375,
|
|
50339
|
+
buffCount: 3,
|
|
50340
|
+
curseFactor: -0.75,
|
|
50341
|
+
curseCount: 1
|
|
50342
|
+
}
|
|
50343
|
+
};
|
|
46078
50344
|
var wfOnReady = /* @__PURE__ */ __name(async () => {
|
|
46079
50345
|
loadRelics();
|
|
46080
50346
|
}, "wfOnReady");
|
|
@@ -46305,6 +50571,226 @@ var generateFissureOutput = /* @__PURE__ */ __name(async (puppe, fissures, type)
|
|
|
46305
50571
|
const imgBase64 = await getHtmlImageBase64(puppe, element.toString());
|
|
46306
50572
|
return OutputImage(imgBase64);
|
|
46307
50573
|
}, "generateFissureOutput");
|
|
50574
|
+
var getWeaponRivenDisposition = /* @__PURE__ */ __name((name2) => {
|
|
50575
|
+
const normalizedName = normalizeName(name2);
|
|
50576
|
+
const normalRes = weaponRivenDispositionDict[normalizedName];
|
|
50577
|
+
if (normalRes) {
|
|
50578
|
+
return normalRes;
|
|
50579
|
+
}
|
|
50580
|
+
const withPrimeSuffix = normalizedName + "prime";
|
|
50581
|
+
const withPrimeRes = weaponRivenDispositionDict[withPrimeSuffix];
|
|
50582
|
+
if (withPrimeRes) {
|
|
50583
|
+
return withPrimeRes;
|
|
50584
|
+
}
|
|
50585
|
+
return void 0;
|
|
50586
|
+
}, "getWeaponRivenDisposition");
|
|
50587
|
+
var getAnalyzedRiven = /* @__PURE__ */ __name(async (secret, dict) => {
|
|
50588
|
+
const img = await fetchAsyncImage(dict.src);
|
|
50589
|
+
if (!img) {
|
|
50590
|
+
return "获取图片失败";
|
|
50591
|
+
}
|
|
50592
|
+
const extractResult = await extractTextFromImage(img, secret);
|
|
50593
|
+
if (!extractResult) {
|
|
50594
|
+
return "解析图片失败";
|
|
50595
|
+
}
|
|
50596
|
+
const parseResult = parseOCRResult(extractResult);
|
|
50597
|
+
if (!parseResult || parseResult.attributes.length < 2 || parseResult.attributes.length > 4) {
|
|
50598
|
+
return "解析图片失败";
|
|
50599
|
+
}
|
|
50600
|
+
return analyzeRivenStat(parseResult);
|
|
50601
|
+
}, "getAnalyzedRiven");
|
|
50602
|
+
var generateAnalyzedRivenOutput = /* @__PURE__ */ __name(async (puppe, data) => {
|
|
50603
|
+
const element = RivenComponent(data);
|
|
50604
|
+
const imgBase64 = await getHtmlImageBase64(puppe, element.toString());
|
|
50605
|
+
return OutputImage(imgBase64);
|
|
50606
|
+
}, "generateAnalyzedRivenOutput");
|
|
50607
|
+
var parseOCRResult = /* @__PURE__ */ __name((ocrResult) => {
|
|
50608
|
+
const list = ocrResult.TextDetections;
|
|
50609
|
+
if (!list) {
|
|
50610
|
+
return;
|
|
50611
|
+
}
|
|
50612
|
+
function similarity(standard, input) {
|
|
50613
|
+
if (!standard || !input) {
|
|
50614
|
+
return 0;
|
|
50615
|
+
}
|
|
50616
|
+
standard = normalizeName(standard);
|
|
50617
|
+
input = normalizeName(input);
|
|
50618
|
+
if (input === "伤害") {
|
|
50619
|
+
return standard === "基础伤害" ? 1 : 0;
|
|
50620
|
+
}
|
|
50621
|
+
if (standard === "基础伤害" && input.match(/^伤害$|近战伤害/)) {
|
|
50622
|
+
return 1;
|
|
50623
|
+
}
|
|
50624
|
+
if (standard === "暴击率") {
|
|
50625
|
+
standard = "暴击几率";
|
|
50626
|
+
}
|
|
50627
|
+
if (standard.includes(input) || input.includes(standard) || standard.split("/").find((x) => !!x && input.includes(x))) {
|
|
50628
|
+
return 1;
|
|
50629
|
+
}
|
|
50630
|
+
const t = tokenSimilarity(standard, input);
|
|
50631
|
+
const s = normalSimilarity(standard, input);
|
|
50632
|
+
return Math.max(t, s);
|
|
50633
|
+
}
|
|
50634
|
+
__name(similarity, "similarity");
|
|
50635
|
+
const texts = list.map((item) => item.DetectedText);
|
|
50636
|
+
const attributes = [];
|
|
50637
|
+
const statLines = [];
|
|
50638
|
+
for (const t of texts) {
|
|
50639
|
+
if (!t || !t.match(/^[x+-]|^[0-9]/)) {
|
|
50640
|
+
continue;
|
|
50641
|
+
}
|
|
50642
|
+
const prefix = t.match(/^[x+-]/) ? t[0] : "";
|
|
50643
|
+
const attrNamePart = removeSpace(t ?? "").replace(/^[^一-龥]+/, "");
|
|
50644
|
+
const attr = globalRivenAttributeList.find((a) => {
|
|
50645
|
+
if (!a) return false;
|
|
50646
|
+
let zhName = a.i18n["zh-hans"]?.name;
|
|
50647
|
+
if (!zhName) return false;
|
|
50648
|
+
const sim = similarity(zhName, attrNamePart);
|
|
50649
|
+
if (sim < 0.8) return false;
|
|
50650
|
+
return true;
|
|
50651
|
+
});
|
|
50652
|
+
if (!attr) {
|
|
50653
|
+
continue;
|
|
50654
|
+
}
|
|
50655
|
+
statLines.push(t);
|
|
50656
|
+
const value = (/* @__PURE__ */ __name((function extractStatValue(text) {
|
|
50657
|
+
const t2 = text.replace(/\s+/g, "");
|
|
50658
|
+
const multMatch = t2.match(/x(\d+(\.\d+)?)/i);
|
|
50659
|
+
if (multMatch) {
|
|
50660
|
+
return {
|
|
50661
|
+
value: parseFloat(multMatch[1]),
|
|
50662
|
+
type: "multiply"
|
|
50663
|
+
};
|
|
50664
|
+
}
|
|
50665
|
+
const percentMatch = t2.match(/([+-]?\d+(\.\d+)?)%/);
|
|
50666
|
+
if (percentMatch) {
|
|
50667
|
+
return {
|
|
50668
|
+
value: parseFloat(percentMatch[1]),
|
|
50669
|
+
type: "percent"
|
|
50670
|
+
};
|
|
50671
|
+
}
|
|
50672
|
+
const numMatch = t2.match(/([+-]?\d+(\.\d+)?)/);
|
|
50673
|
+
if (numMatch) {
|
|
50674
|
+
return {
|
|
50675
|
+
value: parseFloat(numMatch[1]),
|
|
50676
|
+
type: "number"
|
|
50677
|
+
};
|
|
50678
|
+
}
|
|
50679
|
+
return void 0;
|
|
50680
|
+
}), "extractStatValue"))(t);
|
|
50681
|
+
if (!value) {
|
|
50682
|
+
return void 0;
|
|
50683
|
+
}
|
|
50684
|
+
attributes.push({ attr, value: value.value, prefix });
|
|
50685
|
+
}
|
|
50686
|
+
const weaponName = (/* @__PURE__ */ __name((function extractWeaponName(ocrData) {
|
|
50687
|
+
const rejectPatterns = [
|
|
50688
|
+
/%/,
|
|
50689
|
+
/x\d/i,
|
|
50690
|
+
/\d/,
|
|
50691
|
+
// numbers, %, multipliers
|
|
50692
|
+
/伤害/,
|
|
50693
|
+
/暴击/,
|
|
50694
|
+
/射速/,
|
|
50695
|
+
/攻击/,
|
|
50696
|
+
/后坐力/,
|
|
50697
|
+
/段位/,
|
|
50698
|
+
/加倍/,
|
|
50699
|
+
/效/,
|
|
50700
|
+
/武器/,
|
|
50701
|
+
/果/,
|
|
50702
|
+
/\)/,
|
|
50703
|
+
/\(/
|
|
50704
|
+
// junk OCR fragments
|
|
50705
|
+
];
|
|
50706
|
+
const candidates = ocrData.filter((str) => {
|
|
50707
|
+
const s = str.trim();
|
|
50708
|
+
if (/^\d+$/.test(s)) return false;
|
|
50709
|
+
if (/[+%]/.test(s)) return false;
|
|
50710
|
+
if (!/[A-Za-z\u4e00-\u9fa5]/.test(s)) return false;
|
|
50711
|
+
if (rejectPatterns.some((p) => p.test(s))) return false;
|
|
50712
|
+
return true;
|
|
50713
|
+
});
|
|
50714
|
+
const merged = candidates.join("");
|
|
50715
|
+
function removeRivenSuffix(name2) {
|
|
50716
|
+
let s = name2.replace(/\s+/g, "");
|
|
50717
|
+
const rivenPattern = /[A-Za-z]+-?[A-Za-z]+$/;
|
|
50718
|
+
return s.replace(rivenPattern, "");
|
|
50719
|
+
}
|
|
50720
|
+
__name(removeRivenSuffix, "removeRivenSuffix");
|
|
50721
|
+
return merged ? removeRivenSuffix(merged) : null;
|
|
50722
|
+
}), "extractWeaponName"))(texts.filter((t) => !statLines.some((l) => l === t)));
|
|
50723
|
+
if (!weaponName || !attributes.length) {
|
|
50724
|
+
return void 0;
|
|
50725
|
+
}
|
|
50726
|
+
return {
|
|
50727
|
+
name: weaponName,
|
|
50728
|
+
attributes
|
|
50729
|
+
};
|
|
50730
|
+
}, "parseOCRResult");
|
|
50731
|
+
var analyzeRivenStat = /* @__PURE__ */ __name((parseResult) => {
|
|
50732
|
+
const weaponRiven = getWeaponRivenDisposition(parseResult.name);
|
|
50733
|
+
if (!weaponRiven) {
|
|
50734
|
+
return "未找到武器: " + parseResult.name;
|
|
50735
|
+
}
|
|
50736
|
+
const disposition = weaponRiven.calc.disposition;
|
|
50737
|
+
const weaponType = weaponRiven.calc.riventype;
|
|
50738
|
+
const rivenStatCountType = (function() {
|
|
50739
|
+
if (parseResult.attributes.length === 4) {
|
|
50740
|
+
return "3_1";
|
|
50741
|
+
} else if (parseResult.attributes.length === 2) {
|
|
50742
|
+
return "2_0";
|
|
50743
|
+
}
|
|
50744
|
+
const firstStat = parseResult.attributes[0];
|
|
50745
|
+
const firstStatBaseValue = rivenAttrValueDict[weaponType][normalizeName(firstStat.attr.i18n["en"].name)];
|
|
50746
|
+
if (firstStat.value >= firstStatBaseValue * 1.2375 * 0.9 * disposition) {
|
|
50747
|
+
return "2_1";
|
|
50748
|
+
} else {
|
|
50749
|
+
return "3_0";
|
|
50750
|
+
}
|
|
50751
|
+
})();
|
|
50752
|
+
const { buffFactor, buffCount, curseFactor, curseCount } = rivenStatFixFactor[rivenStatCountType];
|
|
50753
|
+
const buffs = [];
|
|
50754
|
+
for (let i = 0; i < buffCount; i++) {
|
|
50755
|
+
const attr = parseResult.attributes[i];
|
|
50756
|
+
const baseValue = rivenAttrValueDict[weaponType][normalizeName(attr.attr.i18n["en"].name)];
|
|
50757
|
+
const value = attr.attr.unit === "multiply" ? attr.value - 1 : attr.value;
|
|
50758
|
+
const standardValue = baseValue * buffFactor * disposition;
|
|
50759
|
+
const percent = (value - standardValue) / standardValue;
|
|
50760
|
+
buffs.push({
|
|
50761
|
+
name: attr.attr.i18n["zh-hans"].name,
|
|
50762
|
+
unit: attr.attr.unit,
|
|
50763
|
+
value: attr.value,
|
|
50764
|
+
percent,
|
|
50765
|
+
max: standardValue * 1.1,
|
|
50766
|
+
min: standardValue * 0.9
|
|
50767
|
+
});
|
|
50768
|
+
}
|
|
50769
|
+
const curses = [];
|
|
50770
|
+
if (curseCount > 0) {
|
|
50771
|
+
for (let i = buffCount; i < buffCount + curseCount; i++) {
|
|
50772
|
+
const attr = parseResult.attributes[i];
|
|
50773
|
+
const baseValue = rivenAttrValueDict[weaponType][normalizeName(attr.attr.i18n["en"].name)];
|
|
50774
|
+
const value = attr.attr.unit === "multiply" ? attr.value - 1 : attr.value;
|
|
50775
|
+
const standardValue = baseValue * curseFactor * disposition;
|
|
50776
|
+
const percent = (value - standardValue) / standardValue * -1;
|
|
50777
|
+
curses.push({
|
|
50778
|
+
name: attr.attr.i18n["zh-hans"].name,
|
|
50779
|
+
unit: attr.attr.unit,
|
|
50780
|
+
value: attr.value,
|
|
50781
|
+
percent,
|
|
50782
|
+
max: standardValue * 0.9,
|
|
50783
|
+
min: standardValue * 1.1
|
|
50784
|
+
});
|
|
50785
|
+
}
|
|
50786
|
+
}
|
|
50787
|
+
return {
|
|
50788
|
+
name: weaponRiven.name.zh,
|
|
50789
|
+
disposition,
|
|
50790
|
+
buffs,
|
|
50791
|
+
curses
|
|
50792
|
+
};
|
|
50793
|
+
}, "analyzeRivenStat");
|
|
46308
50794
|
|
|
46309
50795
|
// src/commands/wfm/wm.ts
|
|
46310
50796
|
var wmCommand = /* @__PURE__ */ __name(async (action, input) => {
|
|
@@ -46423,6 +50909,18 @@ var relicCommand = /* @__PURE__ */ __name(async (action, input) => {
|
|
|
46423
50909
|
return await generateRelicOutput(action.session.app.puppeteer, relic);
|
|
46424
50910
|
}, "relicCommand");
|
|
46425
50911
|
|
|
50912
|
+
// src/commands/wf/riven.ts
|
|
50913
|
+
var rivenCommand = /* @__PURE__ */ __name(async (action, input, secret) => {
|
|
50914
|
+
const result = await getAnalyzedRiven(secret, input);
|
|
50915
|
+
if (typeof result === "string") {
|
|
50916
|
+
return result;
|
|
50917
|
+
}
|
|
50918
|
+
return await generateAnalyzedRivenOutput(
|
|
50919
|
+
action.session.app.puppeteer,
|
|
50920
|
+
result
|
|
50921
|
+
);
|
|
50922
|
+
}, "rivenCommand");
|
|
50923
|
+
|
|
46426
50924
|
// src/hooks/on-ready.ts
|
|
46427
50925
|
var onReadyHandler = /* @__PURE__ */ __name(async () => {
|
|
46428
50926
|
await wmOnReady();
|
|
@@ -46432,7 +50930,11 @@ var onReadyHandler = /* @__PURE__ */ __name(async () => {
|
|
|
46432
50930
|
// src/index.ts
|
|
46433
50931
|
var name = "warframe";
|
|
46434
50932
|
var Config = import_koishi.Schema.object({
|
|
46435
|
-
developerMode: import_koishi.Schema.boolean().default(false)
|
|
50933
|
+
developerMode: import_koishi.Schema.boolean().default(false),
|
|
50934
|
+
ocrAPISecret: import_koishi.Schema.object({
|
|
50935
|
+
id: import_koishi.Schema.string().required(),
|
|
50936
|
+
key: import_koishi.Schema.string().required()
|
|
50937
|
+
}).description("OCR API 密钥")
|
|
46436
50938
|
});
|
|
46437
50939
|
function apply(ctx) {
|
|
46438
50940
|
setupHooks(ctx);
|
|
@@ -46479,6 +50981,9 @@ var setupCommands = /* @__PURE__ */ __name((ctx) => {
|
|
|
46479
50981
|
ctx.command("circuit", "本周回廊战甲及灵化之源").alias("灵化之源").alias("灵化").action(circuitCommand);
|
|
46480
50982
|
ctx.command("lichc", "c系玄骸武器", { hidden: true }).action(inDevelopment);
|
|
46481
50983
|
ctx.command("lichi", "i系玄骸武器", { hidden: true }).action(inDevelopment);
|
|
50984
|
+
ctx.command("riven <img:image>", "分析紫卡截图").action((a, b) => {
|
|
50985
|
+
return rivenCommand(a, b, ctx.config.ocrAPISecret);
|
|
50986
|
+
});
|
|
46482
50987
|
}, "setupCommands");
|
|
46483
50988
|
var inDevelopment = /* @__PURE__ */ __name(() => {
|
|
46484
50989
|
return "功能暂未开放";
|