New ingreds and remove extra panda king's crown
This commit is contained in:
parent
f7fa81b11d
commit
3c3aec50fd
7 changed files with 53130 additions and 23543 deletions
|
@ -690,5 +690,7 @@
|
|||
"Scuttling Syenite": 688,
|
||||
"Shattered Aspect": 689,
|
||||
"Wintery Aspect": 690,
|
||||
"Thermal Replication": 691
|
||||
"Thermal Replication": 691,
|
||||
"Igneous Aspect": 692,
|
||||
"Evaporated Aspect": 693
|
||||
}
|
29570
ingreds.json
29570
ingreds.json
File diff suppressed because one or more lines are too long
47082
ingreds_clean.json
47082
ingreds_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 ING_DB_VERSION = 7;
|
||||
const ING_DB_VERSION = 8;
|
||||
|
||||
// @See https://github.com/mdn/learning-area/blob/master/javascript/apis/client-side-storage/indexeddb/video-store/index.js
|
||||
|
||||
|
|
|
@ -143,7 +143,7 @@ ing_id_mappings = { #specifically for the id field of an ingredient.
|
|||
}
|
||||
ing_delete_keys = [
|
||||
"sprite",
|
||||
|
||||
"skin"
|
||||
]
|
||||
|
||||
print("loaded all files.")
|
||||
|
|
|
@ -13,9 +13,18 @@ def shorten(v):
|
|||
def is_basic(t):
|
||||
return t is int or t is str or t is float or t is bool or t is list
|
||||
|
||||
def custom_input():
|
||||
if custom_input.alive:
|
||||
try:
|
||||
return input()
|
||||
except:
|
||||
custom_input.alive = False
|
||||
return ""
|
||||
custom_input.alive = True
|
||||
|
||||
def list_diff(list1, list2, path):
|
||||
print(f"Encountered object list {path}, enter match key: ", end="", file=sys.stderr)
|
||||
key = input()
|
||||
key = custom_input()
|
||||
if (key == ""):
|
||||
if list1 != list2:
|
||||
print(f"{path}.{k}: Value difference")
|
||||
|
|
Loading…
Reference in a new issue