You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got these from first using the graphql console (I LOVE IT by the way!), then using pandas to do an outer merge. I tried to just search for the evolution trigger items that didn't have any effect text, but it kept coming up with nothing, so I had to be circuitous to make sure I wasn't doing something wrong.
importpandasaspdall_items=query_graphql(all_evolution_items) #my function that calls requests on graphql and returns a nicely structured dataframe of ["name", "id"]complete_items=query_graphql(evolution_items_full)
empty_effects=pd.merge(all_items, not_null, on=['name','id'], how="outer", indicator=True
).query('_merge=="left_only"')
print(empty_effects["name"])
`
I've confirmed that the items do cause evolutions.
I'm happy to add these to the csv(s)/graphql, I just don't know which ones to edit (there are a lot of csvs!).
The text was updated successfully, but these errors were encountered:
Hello!
The following evolution trigger items don't have a description, and are not connected to evolutionary chains:
['strawberry-sweet', 'love-sweet', 'berry-sweet', 'clover-sweet', 'flower-sweet', 'star-sweet', 'ribbon-sweet', 'sweet-apple', 'tart-apple', 'cracked-pot', 'chipped-pot']
I got these from first using the graphql console (I LOVE IT by the way!), then using pandas to do an outer merge. I tried to just search for the evolution trigger items that didn't have any effect text, but it kept coming up with nothing, so I had to be circuitous to make sure I wasn't doing something wrong.
Here's my code:
`
I've confirmed that the items do cause evolutions.
I'm happy to add these to the csv(s)/graphql, I just don't know which ones to edit (there are a lot of csvs!).
The text was updated successfully, but these errors were encountered: