Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Updating data from the GGPK uses the PoB exporter (see CONTRIBUTING.md#exporting

Steps:
1. Run each script in the Exporter in order
- In between `UModsToText` and `UTextToMods` restore any changes to uniques or new uniques, as the script is naive.
2. Revert the following changes similar to the linked examples:
- [Fix stats on Rigwald's Pack](https://github.com/PathOfBuildingCommunity/PathOfBuilding/commit/85912cc8631bf55f999f8dfbda5fa6510252518c#diff-72415c450079cf8e5de1f00680f4918fd78e43aea4ed78dc5906d5ccf6fb66fb)
- [Make sure the description of a keystone isn't removed](src/Data/LegionPassives.lua#L3911-L3915)
Expand Down
23 changes: 23 additions & 0 deletions src/Data/Global.lua
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,29 @@ SkillType = {
ZeroReservation = 120,
}

ItemTypes = {
"axe",
"bow",
"claw",
"dagger",
"mace",
"fishing",
"staff",
"sword",
"wand",
"helmet",
"body",
"gloves",
"boots",
"shield",
"quiver",
"amulet",
"ring",
"belt",
"jewel",
"flask",
}

GlobalCache = {
cachedData = { MAIN = {}, CALCS = {}, CALCULATOR = {}, CACHE = {}, },
deleteGroup = { },
Expand Down
5,052 changes: 5,052 additions & 0 deletions src/Data/Uniques/Special/ModTextMap.lua

Large diffs are not rendered by default.

6,759 changes: 6,759 additions & 0 deletions src/Data/Uniques/Special/Uniques.lua

Large diffs are not rendered by default.

Loading