diff --git a/README.md b/README.md index 5602218..a78a7f7 100644 --- a/README.md +++ b/README.md @@ -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.1 +- Add new pets and mounts of the summer update + ### 0.8.12.1 - Fix thousands parsing of currency exchange - Add missing engraving books diff --git a/modules/config.py b/modules/config.py index c663f4e..8726046 100644 --- a/modules/config.py +++ b/modules/config.py @@ -15,7 +15,7 @@ class Config(metaclass=Singleton): - version = "0.8.12.1" + version = "0.8.13.1" region: str game_region: str debug = False diff --git a/modules/market_data/mount.py b/modules/market_data/mount.py index efc8d16..d65ba07 100644 --- a/modules/market_data/mount.py +++ b/modules/market_data/mount.py @@ -159,5 +159,53 @@ "category": "Mount", "subcategory": "Mount Chest", "amount": 1 + }, + "Armor Wagon Selection Chest": { + "name": "Armor Wagon Selection Chest", + "image": "ghost-horse-selection-chest.webp", + "rarity": 4, + "category": "Mount", + "subcategory": "Mount Chest", + "amount": 1 + }, + "Mount: Coral Armor Wagon": { + "name": "Mount: Coral Armor Wagon", + "image": "mount-coral-armor-wagon.webp", + "rarity": 4, + "category": "Mount", + "subcategory": "Mount", + "amount": 1 + }, + "Mount: Pearl Armor Wagon": { + "name": "Mount: Pearl Armor Wagon", + "image": "mount-pear-armor-wagon.webp", + "rarity": 4, + "category": "Mount", + "subcategory": "Mount", + "amount": 1 + }, + "Mount: Opal Armor Wagon": { + "name": "Mount: Opal Armor Wagon", + "image": "mount-opal-armor-wagon.webp", + "rarity": 4, + "category": "Mount", + "subcategory": "Mount", + "amount": 1 + }, + "Mount: Ruby Armor Wagon": { + "name": "Mount: Ruby Armor Wagon", + "image": "mount-ruby-armor-wagon.webp", + "rarity": 4, + "category": "Mount", + "subcategory": "Mount", + "amount": 1 + }, + "Mount: Onyx Armor Wagon": { + "name": "Mount: Onyx Armor Wagon", + "image": "mount-onyx-armor-wagon.webp", + "rarity": 4, + "category": "Mount", + "subcategory": "Mount", + "amount": 1 } } diff --git a/modules/market_data/pets.py b/modules/market_data/pets.py index 027bfb7..03a77b0 100644 --- a/modules/market_data/pets.py +++ b/modules/market_data/pets.py @@ -94,5 +94,77 @@ "category": "Pets", "subcategory": "Pets", "amount": 1 - } + }, + "Starfish Pet Selection Chest":{ + "name": "Starfish Pet Selection Chest", + "image": "cat-pet-selection-chest.webp", + "rarity": 3, + "category": "Pets", + "subcategory": "Pet Chest", + "amount": 1 + }, + "Panther Pet Selection Chest":{ + "name": "Panther Pet Selection Chest", + "image": "cat-pet-selection-chest.webp", + "rarity": 3, + "category": "Pets", + "subcategory": "Pet Chest", + "amount": 1 + }, + "Pet: Starfish Dugo":{ + "name": "Pet: Starfish Dugo", + "image": "pet-starfish-dugo.webp", + "rarity": 3, + "category": "Pets", + "subcategory": "Pets", + "amount": 1 + }, + "Pet: Starfish Hook":{ + "name": "Pet: Starfish Hook", + "image": "pet-starfish-hook.webp", + "rarity": 3, + "category": "Pets", + "subcategory": "Pets", + "amount": 1 + }, + "Pet: Starfish Archie":{ + "name": "Pet: Starfish Archie", + "image": "pet-starfish-archie.webp", + "rarity": 3, + "category": "Pets", + "subcategory": "Pets", + "amount": 1 + }, + "Pet: Starfish Sway":{ + "name": "Pet: Starfish Sway", + "image": "pet-starfish-sway.webp", + "rarity": 3, + "category": "Pets", + "subcategory": "Pets", + "amount": 1 + }, + "Pet: Starfish Pinkie":{ + "name": "Pet: Starfish Pinkie", + "image": "pet-starfish-pinkie.webp", + "rarity": 3, + "category": "Pets", + "subcategory": "Pets", + "amount": 1 + }, + "Pet: Bilbrin Panther":{ + "name": "Pet: Bilbrin Panther", + "image": "pet-bilbrin-panther.webp", + "rarity": 3, + "category": "Pets", + "subcategory": "Pets", + "amount": 1 + }, + "Pet: Voldis Leopard":{ + "name": "Pet: Voldis Leopard", + "image": "pet-voldis-leopard.webp", + "rarity": 3, + "category": "Pets", + "subcategory": "Pets", + "amount": 1 + }, } \ No newline at end of file