Skip to content

Commit

Permalink
add new pets and mounts
Browse files Browse the repository at this point in the history
  • Loading branch information
gogodr committed Jul 24, 2022
1 parent da93548 commit ef39625
Show file tree
Hide file tree
Showing 4 changed files with 125 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
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.1
- Add new pets and mounts of the summer update

### 0.8.12.1
- Fix thousands parsing of currency exchange
- Add missing engraving books
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.12.1"
version = "0.8.13.1"
region: str
game_region: str
debug = False
Expand Down
48 changes: 48 additions & 0 deletions modules/market_data/mount.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
74 changes: 73 additions & 1 deletion modules/market_data/pets.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
}

0 comments on commit ef39625

Please sign in to comment.