File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 7.0.1 (2025-05-19)
4
+
5
+ - Add ` vocation ` and ` elemental_bond ` to item attributes.
6
+
3
7
## 7.0.0 (2025-05-17)
4
8
5
9
- ` WikiClient ` is no longer a "static class", an instance must now be created in order to better reuse HTTP sessions.
18
22
- Added ` cooldown2 ` and ` cooldown3 ` for reduced cooldowns by the Wheel of Destiny.
19
23
- Rename ` premium ` to ` is_premium ` .
20
24
- Rename ` promotion ` to ` is_promotion ` .
21
- - Rename ` promotion ` to ` is_promotion ` .
22
- - Rename ` promotion ` to ` is_promotion ` .
23
25
- Added ` is_wheel_spell ` attribute.
24
26
- Added ` is_passive ` attribute.
25
27
- Item changes
56
58
- Renamed ` preview ` to ` is_preview ` .
57
59
- Renamed ` experimental ` to ` is_experimental ` .
58
60
- Mount changes:
59
- - Renamed ` buyable ` to `is_buyable`` .
61
+ - Renamed ` buyable ` to ` is_buyable ` .
60
62
- Update changes:
61
63
- Renamed ` date ` to ` release_date ` .
62
64
110
112
` type ` function.
111
113
- Renamed to ` item_type ` in ` item ` table and ` Item ` class.
112
114
- Renamed to ` creature_type ` in ` creature ` table and ` Creature ` class.
113
- - Parsing relies more on ` mwparserfromhell < https://mwparserfromhell.readthedocs.io/> ` _ and less on regular expressions.
115
+ - Parsing relies more on [ mwparserfromhell] ( https://mwparserfromhell.readthedocs.io/ ) and less on regular expressions.
114
116
- TibiaWiki merged items into "objects" (non pickupable). So now the ` item ` table will contain a lot more records.
115
117
- More attributes related to "objects" are now added to the ` item_attribute ` table.
116
118
- Added support for attributes added in the Summer Update 2020 and some other missing attributes.
Original file line number Diff line number Diff line change 4
4
__copyright__ = "Copyright 2025 Allan Galarza"
5
5
6
6
__license__ = "Apache 2.0"
7
- __version__ = "7.0.0 "
7
+ __version__ = "7.0.1 "
Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ class ItemParser(BaseParser):
49
49
50
50
item_attributes : ClassVar = {
51
51
"level" : "levelrequired" ,
52
+ "vocation" : "vocrequired" ,
52
53
"attack" : "attack" ,
53
54
"defense" : "defense" ,
54
55
"defense_modifier" : "defensemod" ,
@@ -95,6 +96,7 @@ class ItemParser(BaseParser):
95
96
"upgrade_classification" : "upgradeclass" ,
96
97
"is_rotatable" : "rotatable" ,
97
98
"augments" : "augments" ,
99
+ "elemental_bond" : "elementalbond" ,
98
100
}
99
101
100
102
@classmethod
You can’t perform that action at this time.
0 commit comments