HOTFIX: accidentally didn't 5x/0.7x spellcost IDs due to typo in python script
PR proper would've caught this...
This commit is contained in:
parent
7e86de27d2
commit
4d2d831179
4 changed files with 200 additions and 198 deletions
376
clean.json
376
clean.json
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
|
@ -1,4 +1,4 @@
|
||||||
const DB_VERSION = 103;
|
const DB_VERSION = 104;
|
||||||
// @See https://github.com/mdn/learning-area/blob/master/javascript/apis/client-side-storage/indexeddb/video-store/index.jsA
|
// @See https://github.com/mdn/learning-area/blob/master/javascript/apis/client-side-storage/indexeddb/video-store/index.jsA
|
||||||
|
|
||||||
let db;
|
let db;
|
||||||
|
|
|
@ -46,14 +46,14 @@ for item in items:
|
||||||
# TEMP wynn2 migration
|
# TEMP wynn2 migration
|
||||||
# note: 10x'd
|
# note: 10x'd
|
||||||
mul_keys_x10 = {
|
mul_keys_x10 = {
|
||||||
"sppct1": 7,
|
"spPct1": 7,
|
||||||
"sppct2": 7,
|
"spPct2": 7,
|
||||||
"sppct3": 7,
|
"spPct3": 7,
|
||||||
"sppct4": 7,
|
"spPct4": 7,
|
||||||
"spraw1": 50,
|
"spRaw1": 50,
|
||||||
"spraw2": 50,
|
"spRaw2": 50,
|
||||||
"spraw3": 50,
|
"spRaw3": 50,
|
||||||
"spraw4": 50,
|
"spRaw4": 50,
|
||||||
"mr": 60,
|
"mr": 60,
|
||||||
"ms": 40
|
"ms": 40
|
||||||
}
|
}
|
||||||
|
@ -79,6 +79,8 @@ for item in old_items:
|
||||||
if rem >= 5:
|
if rem >= 5:
|
||||||
val += 1
|
val += 1
|
||||||
item[k] = val
|
item[k] = val
|
||||||
|
if item['name'] == "Gale's Sight":
|
||||||
|
print(item)
|
||||||
items.append(item)
|
items.append(item)
|
||||||
#print(f'Unknown old item: {item["name"]}!!!')
|
#print(f'Unknown old item: {item["name"]}!!!')
|
||||||
#old_items_map[item["name"]] = item
|
#old_items_map[item["name"]] = item
|
||||||
|
|
Loading…
Reference in a new issue