Hey, TradeMacro dev here.
Inspired by your little project here I thought maybe I could get the unique item data from the ggpk instead of scraping the poe wiki. I even thought about asking you if you could also export that data since I don't know any python and don't like it either and would probably write something from scratch with nodejs. I thought is wasn't much work. After taking a quick look at the ggpk file and dat files I have not the slightest idea how to get a complete unique item, even something as basic like this:
{
"name" : "Araku Tiki",
"mods" : [{
"name_orig" : "You gain 100 Evasion Rating when on Low Life",
"name" : "You gain # Evasion Rating when on Low Life",
"values" : [100],
"isVariable" : false
}, {
"name_orig" : "+(30-50) to maximum Life",
"name" : "+# to maximum Life",
"ranges" : [[30, 50]],
"isVariable" : true
}, {
"name_orig" : "+(20-30)% to Fire Resistance",
"name" : "+#% to Fire Resistance",
"ranges" : [[20, 30]],
"isVariable" : true
}, {
"name_orig" : "1% of Life Regenerated per second while on Low Life",
"name" : "#% of Life Regenerated per second while on Low Life",
"values" : [1],
"isVariable" : false
}
]
},
Hey, TradeMacro dev here.
Inspired by your little project here I thought maybe I could get the unique item data from the ggpk instead of scraping the poe wiki. I even thought about asking you if you could also export that data since I don't know any python and don't like it either and would probably write something from scratch with nodejs. I thought is wasn't much work. After taking a quick look at the ggpk file and dat files I have not the slightest idea how to get a complete unique item, even something as basic like this:
Is it really that complicated or am I missing something?