Update to 996005 and bump stable

This commit is contained in:
blitzmann
2016-01-12 00:28:19 -05:00
parent 52d19b8de4
commit 36ab224853
9 changed files with 25 additions and 12 deletions

View File

@@ -18,9 +18,9 @@ debug = False
saveInRoot = False
# Version data
version = "1.17.2"
tag = "git"
expansionName = "Frostline"
version = "1.18.0"
tag = "Stable"
expansionName = "YC 118.1"
expansionVersion = "1.0"
evemonMinVersion = "4081"

View File

@@ -1,8 +1,8 @@
# covertOpsCloakCPUPercentBonusPirateFaction
#
# Used by:
# Ships from group: Expedition Frigate (2 of 2)
# Ship: Astero
# Ship: Prospect
# Ship: Victorieux Luxury Yacht
type = "passive"
runTime = "early"

View File

@@ -1,7 +1,8 @@
# GCHYieldMultiplyPassive
#
# Used by:
# Variations of ship: Venture (2 of 2)
# Ship: Prospect
# Ship: Venture
type = "passive"
def handler(fit, module, context):
fit.modules.filteredItemMultiply(lambda mod: mod.item.group.name == "Gas Cloud Harvester",

View File

@@ -1,10 +1,9 @@
# miningYieldMultiplyPassive
#
# Used by:
# Ships from group: Expedition Frigate (2 of 2)
# Variations of ship: Procurer (2 of 2)
# Variations of ship: Retriever (2 of 2)
# Ship: Venture
# Variations of ship: Venture (3 of 3)
type = "passive"
def handler(fit, module, context):
fit.modules.filteredItemMultiply(lambda mod: mod.item.requiresSkill("Mining"),

View File

@@ -1,7 +1,7 @@
# shipBonusEnergyNosFalloffAB
# shipBonusEnergyNosOptimalAB
#
# Used by:
# Ship: Armageddon
type = "passive"
def handler(fit, src, context):
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Energy Nosferatu", "falloffEffectiveness", src.getModifiedItemAttr("shipBonusAB"), skill="Amarr Battleship")
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Energy Nosferatu", "maxRange", src.getModifiedItemAttr("shipBonusAB"), skill="Amarr Battleship")

View File

@@ -1,7 +1,8 @@
# shipGCHYieldBonusOREfrig2
#
# Used by:
# Variations of ship: Venture (2 of 2)
# Ship: Prospect
# Ship: Venture
type = "passive"
def handler(fit, module, context):
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Gas Cloud Harvester",

View File

@@ -1,8 +1,7 @@
# shipMiningBonusOREfrig1
#
# Used by:
# Ships from group: Expedition Frigate (2 of 2)
# Ship: Venture
# Variations of ship: Venture (3 of 3)
type = "passive"
def handler(fit, module, context):
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Mining"),

BIN
eve.db

Binary file not shown.

View File

@@ -0,0 +1,13 @@
"""
Conversion pack for January 2016 (YC118.1) release
"""
CONVERSIONS = {
# Renamed items
"Micro' Remote Shield Booster": "'Micro' Remote Shield Booster",
"C-IR Compact Guidance Disruptor I": "C-IR Compact Guidance Disruptor",
"'Distributor' Guidance Disruptor I": "'Distributor' Guidance Disruptor",
"'Distributor' Guidance Disruptor I Blueprint": "'Distributor' Guidance Disruptor Blueprint",
"Highstroke Scoped Guidance Disruptor I": "Highstroke Scoped Guidance Disruptor",
"A-211 Enduring Guidance Disruptor I": "A-211 Enduring Guidance Disruptor",
}