From cac6675d6cc66cf341a88906a51e0c0c2170fe9d Mon Sep 17 00:00:00 2001 From: Gogodr Date: Sat, 8 Oct 2022 14:47:56 -0500 Subject: [PATCH] update combat supplies --- README.md | 5 ++++- modules/config.py | 2 +- modules/market_data/combat_supplies.py | 12 ++++++------ 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 845c9ba..7e1efe1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ## LostArk Market Watcher This app listens to the screenshot folder for new files. -This app is meant to be launched through the [Lost Ark Market Launcher](https://github.com/gogodr/LostArk-Market-Launcher) +This app is meant to be launched through the [Lost Ark Market Launcher](https://github.com/Lost-Ark-Market-Online/LostArk-Market-Launcher) Each new file is scanned and if the market window is detected in the picture then the image is segmented. Each segment then is parsed usin Tesseract OCR and classified The information then is collected and published to the LostArk Marketplace firestore database. @@ -29,6 +29,9 @@ In order to contribute to the LostArk Marketplace database, the contributor must Audio files from [MixKit](https://mixkit.co/) ### Changelog +### 0.8.13.3 +- Update Combat supplies names: Splendid Camouflage Robe and Splendid Electric Grenade + ### 0.8.13.2 - Fuzier match for items secondary text diff --git a/modules/config.py b/modules/config.py index ea98fd0..f8ccd68 100644 --- a/modules/config.py +++ b/modules/config.py @@ -15,7 +15,7 @@ class Config(metaclass=Singleton): - version = "0.8.13.2" + version = "0.8.13.3" region: str game_region: str debug = False diff --git a/modules/market_data/combat_supplies.py b/modules/market_data/combat_supplies.py index 8a989d6..9dcad74 100644 --- a/modules/market_data/combat_supplies.py +++ b/modules/market_data/combat_supplies.py @@ -207,10 +207,10 @@ 'subcategory': 'Battle Item - Offense', 'rarity': 2 }, - 'Splendid Lightening Grenade': { - 'name': 'Splendid Lightening Grenade', + 'Splendid Electric Grenade': { + 'name': 'Splendid Electric Grenade', 'amount': 1, - 'image': 'splendid-lightening-grenade.webp', + 'image': 'splendid-electric-grenade.webp', 'category': 'Combat Supplies', 'subcategory': 'Battle Item - Offense', 'rarity': 2 @@ -375,10 +375,10 @@ 'subcategory': 'Battle Item - Utility', 'rarity': 2 }, - 'Splendid Disguise Robe': { - 'name': 'Splendid Disguise Robe', + 'Splendid Camouflage Robe': { + 'name': 'Splendid Camouflage Robe', 'amount': 1, - 'image': 'splendid-disguise-robe.webp', + 'image': 'splendid-camouflage-robe.webp', 'category': 'Combat Supplies', 'subcategory': 'Battle Item - Utility', 'rarity': 2