From 7de7a17baed0c0b7f5f9967a281b37c5bae63c14 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Tue, 27 Oct 2020 13:25:47 +0300 Subject: [PATCH] Update effect list --- eos/effects.py | 9 +++++---- scripts/effectUsedBy.py | 4 ++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/eos/effects.py b/eos/effects.py index 8eed40b1b..6c347f1e1 100644 --- a/eos/effects.py +++ b/eos/effects.py @@ -1784,7 +1784,7 @@ class Effect596(BaseEffect): ammoInfluenceRange Used by: - Items from category: Charge (608 of 974) + Items from category: Charge (608 of 975) """ type = 'passive' @@ -1799,10 +1799,11 @@ class Effect598(BaseEffect): ammoSpeedMultiplier Used by: - Charges from group: Festival Charges (29 of 29) - Charges from group: Interdiction Probe (3 of 3) + Charges from group: Festival Charges (30 of 30) + Charges from group: Interdiction Probe (2 of 2) Charges from group: Structure Festival Charges (2 of 2) Special Edition Assetss from group: Festival Charges Expired (4 of 4) + Charge: Stasis Webification Probe """ type = 'passive' @@ -2371,7 +2372,7 @@ class Effect804(BaseEffect): ammoInfluenceCapNeed Used by: - Items from category: Charge (514 of 974) + Items from category: Charge (514 of 975) """ type = 'passive' diff --git a/scripts/effectUsedBy.py b/scripts/effectUsedBy.py index 61a1cffc6..3ff2a7f61 100755 --- a/scripts/effectUsedBy.py +++ b/scripts/effectUsedBy.py @@ -162,9 +162,9 @@ QUERY_MARKETGROUPID_PARENTGROUPID = 'SELECT parentGroupID FROM \ invmarketgroups WHERE marketGroupID = ? LIMIT 1' QUERY_EFFECTID_TYPEID = 'SELECT typeID FROM dgmtypeeffects WHERE effectID = ?' # Queries for printing -QUERY_GROUPID_GROUPNAME = 'SELECT groupName FROM invgroups WHERE groupID = ? \ +QUERY_GROUPID_GROUPNAME = 'SELECT name FROM invgroups WHERE groupID = ? \ LIMIT 1' -QUERY_CATEGORYID_CATEGORYNAME = 'SELECT categoryName FROM invcategories \ +QUERY_CATEGORYID_CATEGORYNAME = 'SELECT name FROM invcategories \ WHERE categoryID = ? LIMIT 1' QUERY_MARKETGROUPID_MARKETGROUPNAME = 'SELECT marketGroupName FROM \ invmarketgroups WHERE marketGroupID = ? LIMIT 1'