Refine dishes & FF lists

This commit is contained in:
Starbeamrainbowlabs 2018-09-14 15:46:26 +01:00
parent 1a984d538c
commit 77aaa83415
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
3 changed files with 32 additions and 559 deletions

File diff suppressed because it is too large Load Diff

View File

@ -7,6 +7,7 @@ Adamantite
Adamantite Bangle
Advanced Color Samples
Aegir Root
Ahriman Eyeball
A Little Friend Sticker
Allural Shallot
Alstor Bass Bones
@ -203,6 +204,8 @@ Garnet Bracelet
Garula Fur
Garula Sirloin
Garula Tusk
Generator Key
Generator Keycard
Genji Gloves
Giant Crab Pincers
Giant Curlhorn
@ -291,6 +294,7 @@ Karlabos Carapace
Kettier Ginger
Key of Prosperity
Killer Tomato
King's Knight Sticker Set
Knight's Anklet
Kujata Marrow
Large Arapaima Scales
@ -337,6 +341,7 @@ Megalixir
Mega Phoenix
Megaphone
Mega-Potion
Memories of KING'S KNIGHT
Mesmenir Horn
Messengers' Amulet
Metal Scrap*
@ -374,7 +379,10 @@ Onion Bangle
Oracle Ascension Coin
Oracle Card
Oracle Earring
Panel B Keycard
Panel C Keycard
Pendulum
Pet Chocochick
Phoenix Bass Bladder
Phoenix Down
Platinum Bangle
@ -421,6 +429,7 @@ Repair Kit
Replica Medal
Ribbon
Ring of Resistance
Ring of the Lucii
Robe of the Lord
Rotten Splinterbone
Rough Scales
@ -544,6 +553,7 @@ Warm Inners
Warped Wings
Warrior's Anklet
Warrior's Fanfare
West Underpass Key
White Choker
White Sage
White Sneakers

View File

@ -24,7 +24,19 @@ curl https://stardewids.com/ | xidel --data - --css "td.ts a" | sort >Stardew-Va
### Recipes Wikia ###
curl http://recipes.wikia.com/sitemap-newsitemapxml-index.xml | xidel --data - --css "loc" | grep -i NS_0 | xargs -n1 -I{} sh -c 'curl {} | xidel --data - --css "loc"' | sed -e 's/^.*\///g' -e 's/_/ /g' | python -c "import urllib, sys; print urllib.unquote(sys.argv[1] if len(sys.argv) > 1 else sys.stdin.read()[0:-1])" | sort >Dishes.txt
curl http://recipes.wikia.com/sitemap-newsitemapxml-index.xml | xidel --data - --css "loc" | grep -i NS_0 | xargs -n1 -I{} sh -c 'curl {} | xidel --data - --css "loc"' | sed -e 's/^.*\///g' -e 's/_/ /g' | python -c "import urllib, sys; print urllib.unquote(sys.argv[1] if len(sys.argv) > 1 else sys.stdin.read()[0:-1])" | grep -iv "Nutrient" | sort >Dishes.txt
### Rise of Berk Dragons list ###
function list_pages() {
curl "http://riseofberk.wikia.com/api.php?action=query&generator=categorymembers&gcmtitle=${1}&cllimt=max&gcmlimit=max&format=json" | jq --raw-output '.query.pages[].title' | grep -iv Category:
}
function list_categories() {
curl "http://riseofberk.wikia.com/api.php?action=query&generator=categorymembers&gcmtitle=${1}&cllimt=max&gcmlimit=max&format=json" | jq --raw-output '.query.pages[].title' | grep -i Category:
}
list_pages "Category:Dragons" >Dragons.txt
### Shakespeare's Complete Works ###
curl https://www.gutenberg.org/files/100/100-0.txt >Shakespeares-Works.txt