Add civilian weapons
This commit is contained in:
@@ -175,7 +175,8 @@ def main(db, json_path):
|
||||
eveTypes = set()
|
||||
for row in data["evetypes"]:
|
||||
# 1306 - group Ship Modifiers, for items like tactical t3 ship modes
|
||||
if (row["published"] or row['groupID'] == 1306):
|
||||
# (3638, 3634, 3636, 3640) - Civilian weapons
|
||||
if (row["published"] or row['groupID'] == 1306 or row['typeID'] in (3638, 3634, 3636, 3640)):
|
||||
eveTypes.add(row["typeID"])
|
||||
|
||||
# ignore checker
|
||||
|
||||
@@ -235,7 +235,11 @@ class Market():
|
||||
"Guristas Shuttle": False,
|
||||
"Mobile Decoy Unit": False, # Seems to be left over test mod for deployables
|
||||
"Tournament Micro Jump Unit": False, # Normally seen only on tournament arenas
|
||||
"Council Diplomatic Shuttle": False, # CSM X celebration]
|
||||
"Council Diplomatic Shuttle": False, # CSM X celebration
|
||||
"Civilian Gatling Railgun": True,
|
||||
"Civilian Gatling Pulse Laser": True,
|
||||
"Civilian Gatling Autocannon": True,
|
||||
"Civilian Light Electron Blaster": True,
|
||||
}
|
||||
|
||||
# do not publish ships that we convert
|
||||
|
||||
Reference in New Issue
Block a user