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

View File

@ -24,7 +24,19 @@ curl https://stardewids.com/ | xidel --data - --css "td.ts a" | sort >Stardew-Va
### Recipes Wikia ### ### 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 ### ### Shakespeare's Complete Works ###
curl https://www.gutenberg.org/files/100/100-0.txt >Shakespeares-Works.txt curl https://www.gutenberg.org/files/100/100-0.txt >Shakespeares-Works.txt