@@ -702,15 +702,12 @@ def __runCommandBoosts(self, runTime="normal"):
702702 mod .item .requiresSkill ("High Speed Maneuvering" ),
703703 "speedFactor" , value , stackingPenalties = True )
704704
705- if warfareBuffID == 23 : # Mining Burst: Mining Laser Field Enhancement: Mining/Survey Range
705+ if warfareBuffID == 23 : # Mining Burst: Mining Laser Field Enhancement: Mining Range
706706 self .modules .filteredItemBoost (lambda mod : mod .item .requiresSkill ("Mining" ) or
707707 mod .item .requiresSkill ("Ice Harvesting" ) or
708708 mod .item .requiresSkill ("Gas Cloud Harvesting" ),
709709 "maxRange" , value , stackingPenalties = True )
710710
711- self .modules .filteredItemBoost (lambda mod : mod .item .requiresSkill ("CPU Management" ),
712- "surveyScanRange" , value , stackingPenalties = True )
713-
714711 if warfareBuffID == 24 : # Mining Burst: Mining Laser Optimization: Mining Capacitor/Duration
715712 self .modules .filteredItemBoost (lambda mod : mod .item .requiresSkill ("Mining" ) or
716713 mod .item .requiresSkill ("Ice Harvesting" ) or
@@ -944,6 +941,17 @@ def __runCommandBoosts(self, runTime="normal"):
944941 self .ship .forceItemAttr ("miningScannerUpgrade" , value )
945942 if warfareBuffID == 2481 : # Expedition Burst: Salvager duration bonus
946943 self .modules .filteredItemBoost (lambda mod : mod .item .requiresSkill ("Salvaging" ), "duration" , value )
944+ if warfareBuffID == 2516 : # Mining Burst: Mining Crit Chance
945+ self .modules .filteredItemBoost (
946+ lambda mod : mod .item .requiresSkill ("Mining" ) or mod .item .requiresSkill ("Ice Harvesting" ),
947+ "miningCritChance" , value )
948+ if warfareBuffID == 2517 : # Mining Burst: Mining Residue Chance Reduction
949+ self .modules .filteredItemBoost (
950+ lambda mod : (
951+ mod .item .requiresSkill ("Mining" )
952+ or mod .item .requiresSkill ("Ice Harvesting" )
953+ or mod .item .requiresSkill ("Gas Cloud Harvesting" )),
954+ "miningWasteProbability" , value )
947955
948956 del self .commandBonuses [warfareBuffID ]
949957
0 commit comments