This commit is contained in:
blitzman
2016-10-21 22:16:24 -04:00
parent 6637feb3a6
commit 50911c7fc8
3 changed files with 23 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
# We should probably have something a little less hacky in place, but time is money!
type = "passive"
def handler(fit, module, context):
def runEffect(id, value):
if id == 21: # Skirmish Burst: Interdiction Maneuvers: Tackle Range
groups = ("Stasis Web", "Warp Scrambler")
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name in groups,
"maxRange", value,
stackingPenalties=True)
print "Inside the CHARGE"
for x in xrange(1, 4):
if module.getModifiedChargeAttr("warfareBuff{}ID".format(x)):
runEffect(module.getModifiedChargeAttr("warfareBuff{}ID".format(x)), module.getModifiedChargeAttr("warfareBuff{}Value".format(x)))

View File

@@ -0,0 +1,6 @@
type = "passive"
def handler(fit, src, context):
print "Inside the MODULE"
print "1 ID/value", src.getModifiedChargeAttr("warfareBuff1ID"), src.getModifiedChargeAttr("warfareBuff1Value")

View File

@@ -82,7 +82,7 @@ if not args.nojson:
"invtypes,mapbulk_marketGroups,phbmetadata,phbtraits,fsdTypeOverrides,"\
"evegroups,evetypes,evecategories,marketProxy()_GetMarketGroups()"
FlowManager(miners, writers).run(list, "multi")
FlowManager(miners, writers).run('', "en-us")
### SQL Convert
import jsonToSql