Skip to content

Commit

Permalink
update combat supplies
Browse files Browse the repository at this point in the history
  • Loading branch information
gogodr committed Oct 8, 2022
1 parent b179328 commit cac6675
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion modules/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions modules/market_data/combat_supplies.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit cac6675

Please sign in to comment.