mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-09-11 13:46:10 -05:00
Build Analyzer: Add Splat Brella ISM shot stat Closes #1424
This commit is contained in:
@@ -1254,7 +1254,8 @@
|
||||
"specialWeaponId": 14,
|
||||
"MoveSpeed": 0.065,
|
||||
"DamageParam_ValueMax": 810,
|
||||
"InkConsumeUmbrella_WeaponShelterCanopyParam": 0.3
|
||||
"InkConsumeUmbrella_WeaponShelterCanopyParam": 0.3,
|
||||
"InkConsume_WeaponShelterShotgunParam": 0.0632499977946
|
||||
},
|
||||
"6010": {
|
||||
"SpecialPoint": 190,
|
||||
|
||||
@@ -149,6 +149,13 @@ function parametersToMainWeaponResult(
|
||||
);
|
||||
};
|
||||
|
||||
const InkConsume_WeaponShelterShotgunParam = () => {
|
||||
// Splat Brella ink consumption not listed in params
|
||||
if (weapon.Id === 6000) return 0.0632499977946;
|
||||
|
||||
return params["spl__WeaponShelterShotgunParam"]?.["InkConsume"];
|
||||
};
|
||||
|
||||
const BlastParam_DistanceDamage = () => {
|
||||
// REEF-LUX has distance damage listed in params
|
||||
// but actually doesn't deal it in game
|
||||
@@ -360,7 +367,7 @@ function parametersToMainWeaponResult(
|
||||
? params["spl__WeaponShelterCanopyParam"]?.["InkConsumeUmbrella"]
|
||||
: undefined,
|
||||
InkConsume_WeaponShelterShotgunParam:
|
||||
params["spl__WeaponShelterShotgunParam"]?.["InkConsume"],
|
||||
InkConsume_WeaponShelterShotgunParam(),
|
||||
InkConsume_SideStepParam: params["SideStepParam"]?.["InkConsume"],
|
||||
InkConsume_SwingParam:
|
||||
params["spl__WeaponSaberParam"]?.["SwingParam"]?.["InkConsume"],
|
||||
|
||||
Reference in New Issue
Block a user