test
This commit is contained in:
16
eos/effects/chargebonuswarfarecharge.py
Normal file
16
eos/effects/chargebonuswarfarecharge.py
Normal 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)))
|
||||
|
||||
6
eos/effects/modulebonuswarfarelinkskirmish.py
Normal file
6
eos/effects/modulebonuswarfarelinkskirmish.py
Normal 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")
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user