New ingreds and remove extra panda king's crown

This commit is contained in:
b 2021-07-11 13:43:52 -07:00
parent f7fa81b11d
commit 3c3aec50fd
7 changed files with 53130 additions and 23543 deletions

View file

@ -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

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

View file

@ -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

View file

@ -143,7 +143,7 @@ ing_id_mappings = { #specifically for the id field of an ingredient.
}
ing_delete_keys = [
"sprite",
"skin"
]
print("loaded all files.")

View file

@ -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")