diff --git a/README.md b/README.md index 2a5dfaf..e0c96cd 100644 --- a/README.md +++ b/README.md @@ -44,13 +44,16 @@ The `options` parameter is optional, but is used to specify the type returned (e Options support: - `type` - "series" or "issue". Defaults to "issue". - Use the `lofcg.types` helper for getting type values, eg. `lofcg.types.ISSUE` - - `publishers` - an array of publisher names to filter on. Default to no filtering. + - `publishers` - an array of publisher names to filter on. Defaults to no filtering. + - `sort` - "asc" (ascending) or "desc" (descending). Defaults to "asc". + - **Note:** Sorting is performed within the module on the response from the server (ie. not by the server itself) due to sorting bugs in the endpoints. However, the server provides additional sorting options depending on the list. Passing a value which is not one of the two supported will be delegated to the server (eg. providing "pulls" for Most Pulled on Pull List will have that order provided by the server). ```js const lofcg = require('leagueofcomicgeeks'); const options = { type: lofcg.types.SERIES, - publishers: ['Marvel Comics', 'DC Comics', 'Other'] + publishers: ['Marvel Comics', 'DC Comics', 'Other'], + sort: 'desc' } lofcg.searchResults.get('detective', options, function (err, results) { // ... @@ -90,15 +93,14 @@ Methods on user lists: ## To do - Tests - - [ ] Provide sorting to prevent test data changing - [ ] Unit tests - [ ] Jenkins integration - [ ] Periodic run for integration tests - [ ] PR run for unit tests - Additional functionality - - [ ] Sorting - A-Z, Z-A - - [ ] Pull lists can have "most pulled" + - [x] Sorting - A-Z, Z-A + - [x] Pull lists can have "most pulled" - [ ] Filtering - owned, not owned, read, not read - [ ] New comics can have "only #1s" diff --git a/src/utils/extract-data-from.js b/src/utils/extract-data-from.js index 0e9993b..3e997a9 100644 --- a/src/utils/extract-data-from.js +++ b/src/utils/extract-data-from.js @@ -10,7 +10,14 @@ const convertToISO8601Date = function (dateString) { return date.format('YYYY-MM-DD'); }; -const seriesExtractor = function (response) { +const sortList = function (list, sortBy = 'asc') { + if (sortBy === 'asc' || sortBy === 'desc') { + return _.orderBy(list, 'name', sortBy); + } + return list; +}; + +const seriesExtractor = function (response, options) { const $ = cheerio.load(response.list); const extractSeriesData = function () { @@ -30,10 +37,10 @@ const seriesExtractor = function (response) { }; }; - return $('li').map(extractSeriesData).get(); + return sortList($('li').map(extractSeriesData).get(), options.sort); }; -const issueExtractor = function (response) { +const issueExtractor = function (response, options) { const $ = cheerio.load(response.list); const extractIssueData = function () { @@ -61,7 +68,7 @@ const issueExtractor = function (response) { }; }; - return $('li').map(extractIssueData).get(); + return sortList($('li').map(extractIssueData).get(), options.sort); }; const extractionHandler = { @@ -71,5 +78,5 @@ const extractionHandler = { module.exports = function (response, options) { const handler = extractionHandler[options.type] || extractionHandler[config.defaultType]; - return handler(response); + return handler(response, options); }; diff --git a/src/utils/list-access.js b/src/utils/list-access.js index b9db782..e9b2716 100644 --- a/src/utils/list-access.js +++ b/src/utils/list-access.js @@ -50,7 +50,7 @@ const getList = function (userId, listId, parameters, options, callback) { list_option: type, user_id: userId, view: viewType[type] || 'thumbs', - order: 'alpha-asc', + order: options.sort || 'alpha-asc', publisher: getPublisherIds(options.publishers) }, parameters); const urlParameterString = queryString.stringify(urlParameters, { arrayFormat: 'bracket' }); diff --git a/test/shared/collection/issues-list.spec.js b/test/shared/collection/issues-list.spec.js index 14d7d97..166e4bb 100644 --- a/test/shared/collection/issues-list.spec.js +++ b/test/shared/collection/issues-list.spec.js @@ -1,6 +1,7 @@ const _ = require('lodash'); const allIssuesCollection = require('./test-data/all-issues-collection'); const filteredIssuesCollection = require('./test-data/filtered-issues-collection'); +const sortedIssuesCollection = require('./test-data/sorted-issues-collection'); module.exports = function (lofcg) { describe('get issues list', function () { @@ -36,5 +37,17 @@ module.exports = function (lofcg) { done(); }); }); + + it('should provide a sorted list of comics from a users collection', function (done) { + lofcg.collection.get(readonlyUserId, { sort: 'desc' }, (err, collection) => { + expect(err).toBeNull(); + expect(collection.length).toBe(86); + expect(collection).toEqual(sortedIssuesCollection); + _.each(collection, (comic) => { + expect(comic).toBeAComicIssue(); + }); + done(); + }); + }); }); }; diff --git a/test/shared/collection/series-list.spec.js b/test/shared/collection/series-list.spec.js index d86438b..fb15329 100644 --- a/test/shared/collection/series-list.spec.js +++ b/test/shared/collection/series-list.spec.js @@ -1,10 +1,12 @@ const _ = require('lodash'); const allSeriesCollection = require('./test-data/all-series-collection'); const filteredSeriesCollection = require('./test-data/filtered-series-collection'); +const sortedSeriesCollection = require('./test-data/sorted-series-collection'); module.exports = function (lofcg) { const options = { type: lofcg.types.SERIES }; const filteredOptions = _.extend({ publishers: ['Image Comics'] }, options); + const sortedOptions = _.extend({ sort: 'desc' }, options); describe('get series list', function () { it('should provide no comics in collection with an invalid user id', function (done) { @@ -39,5 +41,17 @@ module.exports = function (lofcg) { done(); }); }); + + it('should provide a sorted list of comics from a users collection', function (done) { + lofcg.collection.get(readonlyUserId, sortedOptions, (err, collection) => { + expect(err).toBeNull(); + expect(collection.length).toBe(3); + expect(collection).toEqual(sortedSeriesCollection); + _.each(collection, (comic) => { + expect(comic).toBeAComicSeries(); + }); + done(); + }); + }); }); }; diff --git a/test/shared/collection/test-data/sorted-issues-collection.json b/test/shared/collection/test-data/sorted-issues-collection.json new file mode 100644 index 0000000..3fe5e6c --- /dev/null +++ b/test/shared/collection/test-data/sorted-issues-collection.json @@ -0,0 +1,776 @@ +[ + { + "id": "5724529", + "name": "The Unbeatable Squirrel Girl #8", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5724529-the-unbeatable-squirrel-girl-8.jpg?1439293069", + "publisher": "Marvel Comics", + "description": "It's the classic tale of good (squirrel) versus evil (squirrel) as SQUIRREL GIRL fights RATATOSKR, the Norse Squirrel God!  The fate of the world hangs in the balance! And yes, \"Norse Squirrel God\"...", + "releaseDate": "2015-08-12", + "price": "$3.99" + }, + { + "id": "5061237", + "name": "The Unbeatable Squirrel Girl #7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5061237-the-unbeatable-squirrel-girl-7.jpg?1436163711", + "publisher": "Marvel Comics", + "description": "Our friend Squirrel Girl doesn't like our new friend Girl Squirrel! In this issue we'll discover if this dislike is... POTENTIALLY JUSTIFIED?? Also: if you don't care whether or not these two people like each...", + "releaseDate": "2015-07-01", + "price": "$3.99" + }, + { + "id": "9824471", + "name": "The Unbeatable Squirrel Girl #6", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9824471-the-unbeatable-squirrel-girl-6.jpg?1433249038", + "publisher": "Marvel Comics", + "description": "The start of a new arc! Squirrel Girl meets some potential new allies, including... GIRL SQUIRREL?? I don't know why we put question marks there; it's actually what happens! Also a hippo named 'Hippo' is...", + "releaseDate": "2015-06-03", + "price": "$3.99" + }, + { + "id": "8229407", + "name": "The Unbeatable Squirrel Girl #5", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8229407-the-unbeatable-squirrel-girl-5.jpg?1430774737", + "publisher": "Marvel Comics", + "description": "The breakout character of 2015 continues her one-woman crusade against injustice and jerks in this standalone issue, a perfect jumping-on point for new readers! These TAILS of the Squirrel Girl will show you the Marvel Universe's...", + "releaseDate": "2015-05-06", + "price": "$3.99" + }, + { + "id": "4859051", + "name": "The Unbeatable Squirrel Girl #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4859051-the-unbeatable-squirrel-girl-4.jpg?1429615279", + "publisher": "Marvel Comics", + "description": "The final showdown between Galactus and Squirrel Girl is here! It's the Power Cosmic versus the Power Chestnut: WHO WILL WIN? Also, Squirrel Girl is late for class. So there's TWO disasters coming!!", + "releaseDate": "2015-04-22", + "price": "$3.99" + }, + { + "id": "2790619", + "name": "The Unbeatable Squirrel Girl #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2790619-the-unbeatable-squirrel-girl-3.jpg?1426546075", + "publisher": "Marvel Comics", + "description": "Time is running out, and the only way for Squirrel Girl to stop Galactus is to get to the moon... you know, somehow?? See the unveiling of Squirrel Girl's new Flying Squirrel Suit... that she maaaaybe borrowed from Iron...", + "releaseDate": "2015-03-18", + "price": "$3.99" + }, + { + "id": "6677681", + "name": "The Unbeatable Squirrel Girl #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6677681-the-unbeatable-squirrel-girl-2.jpg?1422921950", + "publisher": "Marvel Comics", + "description": "Starting college is hard enough, but now Squirrel Girl has to deal with Galactus too? The fate of the entire planet hangs in the balance, and only Squirrel Girl can save it! Also, her squirrel friend Tippy Toe. She can help...", + "releaseDate": "2015-02-04", + "price": "$3.99" + }, + { + "id": "8374448", + "name": "The Unbeatable Squirrel Girl #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8374448-the-unbeatable-squirrel-girl-1.jpg?1420501293", + "publisher": "Marvel Comics", + "description": "Wolverine, Deadpool, Doctor Doom, Thanos: There's one hero that's beaten them all-and now she's got her own ongoing series! (Not that she's bragging.) That's right, you asked for it, you got it, it's...", + "releaseDate": "2015-01-07", + "price": "$3.99" + }, + { + "id": "4148513", + "name": "Paper Girls #9", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4148513-paper-girls-9.jpg?1473205081", + "publisher": "Image Comics", + "description": "The future collides with the past in our present- day 2016, and the Paper Girls must make a difficult decision about who to trust.", + "releaseDate": "2016-09-07", + "price": "$2.99" + }, + { + "id": "9240446", + "name": "Paper Girls #8", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9240446-paper-girls-8.jpg?1470505352", + "publisher": "Image Comics", + "description": "Three young heroes from 1988 have been catapulted to the twenty-first century, and to make matters worse, something horrible has followed them there.", + "releaseDate": "2016-08-03", + "price": "$2.99" + }, + { + "id": "3429543", + "name": "Paper Girls #7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3429543-paper-girls-7.jpg?1467847159", + "publisher": "Image Comics", + "description": "Trapped in a dark future, Erin and her fellow deliverers from 1988 uncover shocking truths about their own fates.", + "releaseDate": "2016-07-06", + "price": "$2.99" + }, + { + "id": "2519140", + "name": "Paper Girls #6", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2519140-paper-girls-6.jpg?1464738761", + "publisher": "Image Comics", + "description": "The smash-hit ongoing series returns with a bold new direction, as Erin, Mac, and Tiffany find themselves launched from 1988 to a distant and terrifying future.", + "releaseDate": "2016-06-01", + "price": "$2.99" + }, + { + "id": "1462701", + "name": "Paper Girls #5", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1462701-paper-girls-5.jpg?1454459165", + "publisher": "Image Comics", + "description": "The first arc of the smash-hit ongoing series concludes with major revelations and another game-changing cliffhanger.", + "releaseDate": "2016-02-03", + "price": "$2.99" + }, + { + "id": "3173369", + "name": "Paper Girls #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3173369-paper-girls-4.jpg?1452042176", + "publisher": "Image Comics", + "description": "What lurks beneath the streets of Stony Stream?", + "releaseDate": "2016-01-06", + "price": "$2.99" + }, + { + "id": "8137536", + "name": "Paper Girls #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8137536-paper-girls-3.jpg?1448973082", + "publisher": "Image Comics", + "description": "The ongoing mystery series from BRIAN K. VAUGHAN & CLIFF CHIANG charges ahead, as the girls have a close encounter with an unexpected visitor.", + "releaseDate": "2015-12-02", + "price": "$2.99" + }, + { + "id": "5947148", + "name": "Paper Girls #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5947148-paper-girls-2.jpg?1446597882", + "publisher": "Image Comics", + "description": "The hottest new ongoing series of the year continues, as the Paper Girls witness the impossible.", + "releaseDate": "2015-11-04", + "price": "$2.99" + }, + { + "id": "8471271", + "name": "Paper Girls #13", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8471271-paper-girls-13.jpg?1491356957", + "publisher": "Image Comics", + "description": "Trapped in the distant past, KJ discovers something shocking about the future.", + "releaseDate": "2017-04-05", + "price": "$2.99" + }, + { + "id": "8972309", + "name": "Paper Girls #12", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8972309-paper-girls-12.jpg?1488242590", + "publisher": "Image Comics", + "description": "Growing up can be deadly.", + "releaseDate": "2017-03-01", + "price": "$2.99" + }, + { + "id": "5996813", + "name": "Paper Girls #11", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5996813-paper-girls-11.jpg?1485819569", + "publisher": "Image Comics", + "description": "A BOLD NEW STORYLINE STARTS HERE! The Eisner and Harvey Award-winning “Best New Series\" from BRIAN K. VAUGHAN andCLIFF CHIANG returns, as Erin, Mac, and Tiffany finally reunite with their long-lost friend KJ…only...", + "releaseDate": "2017-02-01", + "price": "$2.99" + }, + { + "id": "5900157", + "name": "Paper Girls #10", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5900157-paper-girls-10.jpg?1475631000", + "publisher": "Image Comics", + "description": "The second arc of the smash-hit ongoing series concludes with the Paper Girls risking everything to escape the 21st Century… but if any survive, where will they end up next?", + "releaseDate": "2016-10-05", + "price": "$2.99" + }, + { + "id": "1094288", + "name": "Paper Girls #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1094288-paper-girls-1.jpg?1444251251", + "publisher": "Image Comics", + "description": "SAGA writer BRIAN K. VAUGHAN launches a brand-new ONGOING SERIES with superstar Wonder Woman artist CLIFF CHIANG! In the early hours after Halloween of 1988, four 12-year-old newspaper delivery girls uncover the most important...", + "releaseDate": "2015-10-07", + "price": "$2.99" + }, + { + "id": "9733561", + "name": "Adventure Time 2014 Annual #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9733561-adventure-time-2014-annual-1.jpg?1481241466", + "publisher": "BOOM! Studios", + "description": "WHY WE LOVE IT: A very special issue by dynamite creators Becky Dreistdat and Frank Gibson bring you the cutest thing imaginable...Baby Fionna and Cake! WHY YOU'LL LOVE IT: Not only does this issue feature fully painted...", + "releaseDate": "2014-04-30", + "price": "$4.99" + }, + { + "id": "8361841", + "name": "Adventure Time 2013 Annual #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8361841-adventure-time-2013-annual-1.jpg?1452289382", + "publisher": "BOOM! Studios", + "description": "THE FUN WILL NEVER END IN THIS SPECIAL EXPANDED ADVENTURE TIME ANNUAL! Featuring some of the hottest talent in comics today putting their creative spin on the land of Ooo! A great tool for bringing readers into the series...", + "releaseDate": "2013-05-29", + "price": "$4.99" + }, + { + "id": "2494536", + "name": "Adventure Time #9", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2494536-adventure-time-9.jpg?1351399683", + "publisher": "BOOM! Studios", + "description": "BRAND-NEW STORY ARC! PERFECT JUMPING-ON POINT FOR NEW READERS! Join Jake the Dog and Finn the Human as they try to right the wrongs of a Jake-caused TIME PARADOX! If you haven't checked out the comic book adaptation of the...", + "releaseDate": "2012-10-24", + "price": "$3.99" + }, + { + "id": "6538129", + "name": "Adventure Time #8", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6538129-adventure-time-8.jpg?1481309427", + "publisher": "BOOM! Studios", + "description": "THE MOST POPULAR AND TOTALLY RHOMBUS ALL-AGES COMIC ON THE STANDS TODAY! Join Jake the Dog and Finn the Human in another awesome issue of this all-ages classic! With Ooo in the grips of a Jake-caused time paradox, there's...", + "releaseDate": "2012-09-26", + "price": "$3.99" + }, + { + "id": "1205249", + "name": "Adventure Time #7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1205249-adventure-time-7.jpg?1460121549", + "publisher": "BOOM! Studios", + "description": "JOIN JAKE THE DOG AND FINN THE HUMAN AS THE HOTTEST ALL-AGES COMIC BOOK ON THE STANDS CONTINUES! The totally mathematical adventure continues in this latest time-bending issue of ADVENTURE TIME! Order early -- issue #1 went...", + "releaseDate": "2012-08-22", + "price": "$3.99" + }, + { + "id": "5428363", + "name": "Adventure Time #63", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5428363-adventure-time-63.jpg?1491351176", + "publisher": "BOOM! Studios", + "description": "The Princess competition continues with everyone trying to do their best despite the prankster trying to ruin their fun.", + "releaseDate": "2017-04-05", + "price": "$3.99" + }, + { + "id": "6562940", + "name": "Adventure Time #62", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6562940-adventure-time-62.jpg?1488242590", + "publisher": "BOOM! Studios", + "description": "A contest is started to see who is the best Princess in all of Ooo!", + "releaseDate": "2017-03-01", + "price": "$3.99" + }, + { + "id": "4168107", + "name": "Adventure Time #61", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4168107-adventure-time-61.jpg?1485819569", + "publisher": "BOOM! Studios", + "description": "Finn becomes a bit obsessed with building his perfect dungeon, losing the plot a bit, and toys with terrible and great evil forces to build his ideal dungeon understand Joshua better through dungeoncraft.", + "releaseDate": "2017-02-01", + "price": "$3.99" + }, + { + "id": "8903990", + "name": "Adventure Time #60", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8903990-adventure-time-60.jpg?1483491252", + "publisher": "BOOM! Studios", + "description": "Finn gets into the dungeon-making scene and meets fellow dungeon masters, some of whom are villains from Finn's past!", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2705608", + "name": "Adventure Time #6", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2705608-adventure-time-6.jpg?1351042750", + "publisher": "BOOM! Studios", + "description": "THE FUN WILL NEVER END IN THIS HOT ALL-AGES SERIES! The awesome adventures of Finn, Jake, Marceline, Princess Bubblegum and the Ice King continue in the latest issue of this critically-acclaimed, on-going series! Demand...", + "releaseDate": "2012-07-18", + "price": "$3.99" + }, + { + "id": "9517783", + "name": "Adventure Time #59", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9517783-adventure-time-59.jpg?1480952025", + "publisher": "BOOM! Studios", + "description": "Finn finds his current adventure to be a bit more than he expected, but he's getting really into it. It's kind of like how someone approaches taking over their basement with a model train set.", + "releaseDate": "2016-12-07", + "price": "$3.99" + }, + { + "id": "7801919", + "name": "Adventure Time #58", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7801919-adventure-time-58.jpg?1478571909", + "publisher": "BOOM! Studios", + "description": "Finn decides to become a dungeon master like his father figure Joshua was!", + "releaseDate": "2016-11-09", + "price": "$3.99" + }, + { + "id": "3049657", + "name": "Adventure Time #57", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3049657-adventure-time-57.jpg?1476232939", + "publisher": "BOOM! Studios", + "description": "Finn and Jake make it to the core of BMOWORLD and confront the real culprit behind this mess!", + "releaseDate": "2016-10-12", + "price": "$3.99" + }, + { + "id": "3389427", + "name": "Adventure Time #56", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3389427-adventure-time-56.jpg?1473721703", + "publisher": "BOOM! Studios", + "description": "Finn and Jake look for BMO in order to break free of the fantasies they're trapped in!", + "releaseDate": "2016-09-14", + "price": "$3.99" + }, + { + "id": "5074403", + "name": "Adventure Time #55", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5074403-adventure-time-55.jpg?1470743792", + "publisher": "BOOM! Studios", + "description": "Finn and Jake discover that it's not just them-everyone in Ooo is trapped in their own little realities!", + "releaseDate": "2016-08-10", + "price": "$3.99" + }, + { + "id": "7072449", + "name": "Adventure Time #54", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7072449-adventure-time-54.jpg?1468327148", + "publisher": "BOOM! Studios", + "description": "Finn and Jake are sheriff and deputy of a wild west town...or are they? Is this even real?!", + "releaseDate": "2016-07-13", + "price": "$3.99" + }, + { + "id": "5354669", + "name": "Adventure Time #53", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5354669-adventure-time-53.jpg?1465299815", + "publisher": "BOOM! Studios", + "description": "Jake successfully fools King Ghost of the ghost realm and must escape with the cure for Finn, but could this have been a ruse all along to teach Jake a lesson?", + "releaseDate": "2016-06-08", + "price": "$3.99" + }, + { + "id": "3246610", + "name": "Adventure Time #52", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3246610-adventure-time-52.jpg?1462816613", + "publisher": "BOOM! Studios", + "description": "In the ghost realm, Jake is met with some pretty familiar challenges to overcome.", + "releaseDate": "2016-05-11", + "price": "$3.99" + }, + { + "id": "6435163", + "name": "Adventure Time #51", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6435163-adventure-time-51.jpg?1462530698", + "publisher": "BOOM! Studios", + "description": "After too many back-to-back quests, Jake and Finn disagree on how important doing this hero stuff really is.", + "releaseDate": "2016-04-13", + "price": "$3.99" + }, + { + "id": "8363231", + "name": "Adventure Time #50", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8363231-adventure-time-50.jpg?1457393400", + "publisher": "BOOM! Studios", + "description": "Fourth anniversary issue! This special oversized one-shot issue introduces new series artist Ian McGinty (Welcome to Showside, Bravest Warriors)! Finn takes a tour of his past lives when he astral projects through an old...", + "releaseDate": "2016-03-09", + "price": "$4.99" + }, + { + "id": "7381906", + "name": "Adventure Time #5", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7381906-adventure-time-5.jpg?1351042756", + "publisher": "BOOM! Studios", + "description": "Don't miss the beginning of the new arc of this totally rhombus series! The totally sick gang of Finn, Jake, Marceline, Princess Bubblegum, and the Ice King are back in this new arc of the incredibly popular all-ages...", + "releaseDate": "2012-06-20", + "price": "$3.99" + }, + { + "id": "3076848", + "name": "Adventure Time #49", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3076848-adventure-time-49.jpg?1455539650", + "publisher": "BOOM! Studios", + "description": "Finn and Jake must re-banish their old friend from reality in order to defeat a monstrous threat.", + "releaseDate": "2016-02-10", + "price": "$3.99" + }, + { + "id": "8837436", + "name": "Adventure Time #48", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8837436-adventure-time-48.jpg?1452555723", + "publisher": "BOOM! Studios", + "description": "Finn and Jake learn the truth about their mysterious old friend and his connection to Joshua’s spell.", + "releaseDate": "2016-01-13", + "price": "$3.99" + }, + { + "id": "7736591", + "name": "Adventure Time #47", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7736591-adventure-time-47.jpg?1449541064", + "publisher": "BOOM! Studios", + "description": "Finn, Jake, and their mysterious “old friend” travel to Jake’s parents’ old apartment in the city to figure out what’s going on!", + "releaseDate": "2015-12-09", + "price": "$3.99" + }, + { + "id": "6610160", + "name": "Adventure Time #46", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6610160-adventure-time-46.jpg?1447155019", + "publisher": "BOOM! Studios", + "description": "When one of Joshua's old spells wears off, Finn and Jake find themselves facing an old childhood friend that neither of them can remember!", + "releaseDate": "2015-11-11", + "price": "$3.99" + }, + { + "id": "2106538", + "name": "Adventure Time #45", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2106538-adventure-time-45.jpg?1444738138", + "publisher": "BOOM! Studios", + "description": "Special one-shot issue! Princess Bubblegum needs Lemongrab's help, but that means she needs to do things his way for once.", + "releaseDate": "2015-10-14", + "price": "$3.99" + }, + { + "id": "2522194", + "name": "Adventure Time #44", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2522194-adventure-time-44.jpg?1442884497", + "publisher": "BOOM! Studios", + "description": "Finn and Jake are pretty sure the King of Ooo's big conference is a trap and have to sneak in to stop it!", + "releaseDate": "2015-09-23", + "price": "$3.99" + }, + { + "id": "3672337", + "name": "Adventure Time #43", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3672337-adventure-time-43.jpg?1440457595", + "publisher": "BOOM! Studios", + "description": "Finn and Jake break into Party God's yacht to try and clear their names!", + "releaseDate": "2015-08-26", + "price": "$3.99" + }, + { + "id": "3708126", + "name": "Adventure Time #42", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3708126-adventure-time-42.jpg?1437449978", + "publisher": "BOOM! Studios", + "description": "Finn and Jake are on the run, trying to figure out who on the inside framed them for the destruction of Peppermint Butler's secret security team.", + "releaseDate": "2015-07-22", + "price": "$3.99" + }, + { + "id": "3374523", + "name": "Adventure Time #41", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3374523-adventure-time-41.jpg?1435005009", + "publisher": "BOOM! Studios", + "description": "New story arc! Peppermint Butler is one of the most mysterious dudes in Ooo. When he approaches Finn and Jake to recruit them for the secret agency he runs, they've just gotta join and see what's going on!", + "releaseDate": "2015-06-24", + "price": "$3.99" + }, + { + "id": "4343201", + "name": "Adventure Time #40", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4343201-adventure-time-40.jpg?1432686418", + "publisher": "BOOM! Studios", + "description": "It's a special interactive, one-shot issue! Magic Man plans to use the reader to help beat Finn and Jake, but can our heroes turn the tables? Features a special short written by debut writer Henry Leo and Matt Fraction (Hawkeye)!", + "releaseDate": "2015-05-27", + "price": "$3.99" + }, + { + "id": "5195551", + "name": "Adventure Time #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5195551-adventure-time-4.jpg?1460121462", + "publisher": "BOOM! Studios", + "description": "Oh My Glob! The Latest Super-Cool Issue of the Hit Series! Finn, Jake, Marceline, Princess Bubblegum and even Lumpy Space Princess have banded together to stop that jerk the Lich from throwing all of Ooo into the sun! It's...", + "releaseDate": "2012-05-16", + "price": "$3.99" + }, + { + "id": "3199536", + "name": "Adventure Time #39", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3199536-adventure-time-39.jpg?1429615279", + "publisher": "BOOM! Studios", + "description": "The entire world of Ooo is not able to cook but Jake comes through and saves the day with his sandwiches. It's not over yet, though, as the witch is gonna summon her ultimate monster baddie.", + "releaseDate": "2015-04-22", + "price": "$3.99" + }, + { + "id": "1233990", + "name": "Adventure Time #38", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1233990-adventure-time-38.jpg?1427152708", + "publisher": "BOOM! Studios", + "description": "Everyone is hungry, but there isn't enough food to go around. Things get a little dicey as Finn and Jake try to figure out what is up with their friends, and why does this little witch keep coming back? Glob, she's really...", + "releaseDate": "2015-03-25", + "price": "$3.99" + }, + { + "id": "2724168", + "name": "Adventure Time #37", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2724168-adventure-time-37.jpg?1425342592", + "publisher": "BOOM! Studios", + "description": "Finn and Jake might have finally met their match in the EPIC THUMB WAR COMPETITION FOR BAKED GOODS, but it looks like their battle is just beginning as these two pals get ready for their biggest challenge yet.", + "releaseDate": "2015-02-25", + "price": "$3.99" + }, + { + "id": "4821132", + "name": "Adventure Time #36", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4821132-adventure-time-36.jpg?1422364205", + "publisher": "BOOM! Studios", + "description": "It's the first Adventure Time starring its new creative team! With indie all-star Chris Hastings writing and the amazingly talented Zachary Sterling on art, these mathematical adventures are only going to get more algebraic!...", + "releaseDate": "2015-01-28", + "price": "$3.99" + }, + { + "id": "8276925", + "name": "Adventure Time #35", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8276925-adventure-time-35.jpg?1419292401", + "publisher": "BOOM! Studios", + "description": "It's the end of an era...the last ADVENTURE TIME issue featuring the Eisner Awardteam of Ryan North, Shelli Paroline, and Braden Lamb. It's your chance to say goodbye, and experience an adventure you'll never forget.", + "releaseDate": "2014-12-24", + "price": "$3.99" + }, + { + "id": "4348530", + "name": "Adventure Time #34", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4348530-adventure-time-34.jpg?1417484527", + "publisher": "BOOM! Studios", + "description": "Finn has made it to Magic Man at last! It's time for this adventure to end and for Finn to finally get his memory back. It might seem like an easy end, but it looks like there is still one more trick up Magic Man's sleeve.", + "releaseDate": "2014-12-03", + "price": "$3.99" + }, + { + "id": "2543079", + "name": "Adventure Time #33", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2543079-adventure-time-33.jpg?1414443712", + "publisher": "BOOM! Studios", + "description": "Magic Man's hold on Finn is proving to be stronger than anyone had thought and it's taking the whole crew to band together to help their friend, only this time, there really might be nothing they can do. It's up to Finn...", + "releaseDate": "2014-10-29", + "price": "$3.99" + }, + { + "id": "7201061", + "name": "Adventure Time #32", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7201061-adventure-time-32.jpg?1414443719", + "publisher": "BOOM! Studios", + "description": "Finn is on an impossible mission to break Mnemonoid’s curse so that he can finally live his life…and remember it! It’s going to take a lot of pal time and a lot of help from the best of friends but this...", + "releaseDate": "2014-10-01", + "price": "$3.99" + }, + { + "id": "4699308", + "name": "Adventure Time #31", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4699308-adventure-time-31.jpg?1408394978", + "publisher": "BOOM! Studios", + "description": "When Princess Bubblegum and Marceline get their driver’s licenses, they have the perfect plan—build a giant ramp and drive off of it! It’s gonna be so much fun…wait, who’s the Mnemonoid, and...", + "releaseDate": "2014-08-20", + "price": "$3.99" + }, + { + "id": "2730049", + "name": "Adventure Time #30", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2730049-adventure-time-30.jpg?1471030019", + "publisher": "BOOM! Studios", + "description": "It's a rad stand-alone ZINE Special! Enjoy this crazy special as the citizens of Ooo create their own zines to share. Marceline has a lot to say about her music, Peppermint Butler has a few life tips for anyone who will...", + "releaseDate": "2014-07-16", + "price": "$3.99" + }, + { + "id": "3714650", + "name": "Adventure Time #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3714650-adventure-time-3.jpg?1351042767", + "publisher": "BOOM! Studios", + "description": "Algebraic! Don't miss Finn, Jake, and all of their friends on their biggest adventure yet! Trapped by the dreaded Lich, the guys gotta stop all of Ooo from being sucked away forever - and rescue a bunch of wayward Princesses....", + "releaseDate": "2012-04-11", + "price": "$3.99" + }, + { + "id": "5910531", + "name": "Adventure Time #29", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5910531-adventure-time-29.jpg?1402959711", + "publisher": "BOOM! Studios", + "description": "Finn and Jake are back in their bodies, but it looks like the damage is done. Will our heroes be able to right everything they've done or is Ooo finally lost? With the help of an unlikely source, this day might be saved....", + "releaseDate": "2014-06-18", + "price": "$3.99" + }, + { + "id": "7033633", + "name": "Adventure Time #28", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7033633-adventure-time-28.jpg?1400556502", + "publisher": "BOOM! Studios", + "description": "With one answer, there is always a million questions. Finn and Jake find themselves out of one problem and into another. It looks like it's going to be a race to the finish as our heroes discover what it really means...", + "releaseDate": "2014-05-21", + "price": "$3.99" + }, + { + "id": "2895692", + "name": "Adventure Time #27", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2895692-adventure-time-27.jpg?1397528834", + "publisher": "BOOM! Studios", + "description": "This special arc with guest artist Jim Rugg continues!! Finn and Jake might have finally met their match. but what will happen with it turns out that the match isn't a match at all? Things are getting crazy in the land of...", + "releaseDate": "2014-04-16", + "price": "$3.99" + }, + { + "id": "8151285", + "name": "Adventure Time #26", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8151285-adventure-time-26.jpg?1395203506", + "publisher": "BOOM! Studios", + "description": "Cover A: Mike Holmes Cover B: Craig Arndt Finn and Jake have always been best buds; they are always together, it's just something best buds do. But what happens when these two friends get separated on a crazy adventure...", + "releaseDate": "2014-03-19", + "price": "$3.99" + }, + { + "id": "7210049", + "name": "Adventure Time #25", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7210049-adventure-time-25.jpg?1392695358", + "publisher": "BOOM! Studios", + "description": "Ever have a favorite item? Something that you plan to keep with you always? Something that has a history back further than you can remember? Something precious...cherished...that will continue on after you've left on your...", + "releaseDate": "2014-02-19", + "price": "$4.99" + }, + { + "id": "6924403", + "name": "Adventure Time #24", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6924403-adventure-time-24.jpg?1389677954", + "publisher": "BOOM! Studios", + "description": "Princess Bubblegum faces the consequences of her science experiment gone wrong as she finally finds a way to save the day! But is it too late? Find out if Princess Bubblegum is able to right all her wrongs or if her friends...", + "releaseDate": "2014-01-15", + "price": "$3.99" + }, + { + "id": "2129061", + "name": "Adventure Time #23", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2129061-adventure-time-23.jpg?1387326787", + "publisher": "BOOM! Studios", + "description": "Will Princess Bubblegum be able to stop her creation from spreading, or is already too late for the Kingdom of Ooo?! With the Kingdoms Heroes under it's influence it leaves Marceline and Princess Bubblegum in a race again...", + "releaseDate": "2013-12-18", + "price": "$3.99" + }, + { + "id": "8724783", + "name": "Adventure Time #22", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8724783-adventure-time-22.jpg?1384793037", + "publisher": "BOOM! Studios", + "description": "Finn and Jake find themselves in a sticky situation when Princess Bubblegum's experiments searching for the origin of life...specifically, her life...go horribly wrong, overcoming the Candy Kingdom! What sour weapon can...", + "releaseDate": "2013-11-20", + "price": "$3.99" + }, + { + "id": "2882322", + "name": "Adventure Time #21", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2882322-adventure-time-21.jpg?1381884724", + "publisher": "BOOM! Studios", + "description": "It doesn't matter how many episodes or issues you get your hands on for ADVENTURE TIME, there will always be something new and amazing waiting for you behind every corner. The comic is a great read for allages and it's...", + "releaseDate": "2013-10-16", + "price": "$3.99" + }, + { + "id": "3124065", + "name": "Adventure Time #20", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3124065-adventure-time-20.jpg?1460122780", + "publisher": "BOOM! Studios", + "description": "Finn and Jake have endured the Ice King's weird emotional dungeon adventure, and the fiery pits created by Marceline's dad...what will their final dungeon adventure bring? A great jumping-on point for dungeon masters...", + "releaseDate": "2013-09-18", + "price": "$3.99" + }, + { + "id": "5232458", + "name": "Adventure Time #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5232458-adventure-time-2.jpg?1351042771", + "publisher": "BOOM! Studios", + "description": "It's Totally Mathematical! Join Finn, Jake, and all of their friends in this second issue of the ongoing comic book series showcasing all-new adventures through the magical Land of Ooo. The boys have embarked on another...", + "releaseDate": "2012-03-14", + "price": "$3.99" + }, + { + "id": "8840442", + "name": "Adventure Time #19", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8840442-adventure-time-19.jpg?1460122646", + "publisher": "BOOM! Studios", + "description": "The TOTALLY MATH adventure continues with Finn and Jake, everyone's favorite human and his dog! And this arc, things are getting literally mathematical for our heroes... The newest issue of the hottest allages book on...", + "releaseDate": "2013-08-21", + "price": "$3.99" + }, + { + "id": "3518528", + "name": "Adventure Time #18", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3518528-adventure-time-18.jpg?1374034658", + "publisher": "BOOM! Studios", + "description": "The TOTALLY MATH adventure continues with Finn and Jake, everyone's favorite human and dog duo! Will the guys find a way out of their dungeon despair, or will they have to settle for hanging with some tops blooby skeleton...", + "releaseDate": "2013-07-17", + "price": "$3.99" + }, + { + "id": "8765342", + "name": "Adventure Time #17", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8765342-adventure-time-17.jpg?1372825975", + "publisher": "BOOM! Studios", + "description": "It's a new TOTALLY MATH adventure for Finn and Jake, everyone's favorite boy and his dog! And this time, we mean that", + "releaseDate": "2013-06-26", + "price": "$3.99" + }, + { + "id": "6416927", + "name": "Adventure Time #16", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6416927-adventure-time-16.jpg?1369266937", + "publisher": "BOOM! Studios", + "description": "THE FIRST ISSUE OF A NEW ARC AND THE PERFECT JUMPING-ON POINT FOR NEW READERS! It's an all-new adventure for Finn, Jake and the gang from critically acclaimed writer Ryan North! The best all-ages series of 2012 continues!", + "releaseDate": "2013-05-22", + "price": "$3.99" + }, + { + "id": "4694804", + "name": "Adventure Time #15", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4694804-adventure-time-15.jpg?1460122156", + "publisher": "BOOM! Studios", + "description": "A STAND-ALONE ISSUE LEADING INTO THE NEW ARC! A PERFECT JUMPING-ON POINT FOR NEW READERS! Join Jake the Dog and Finn the Human in this totally topsy-turvy take on the land of Ooo! The best all-ages series of 2012 continues!...", + "releaseDate": "2013-04-17", + "price": "$3.99" + }, + { + "id": "5112162", + "name": "Adventure Time #14", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5112162-adventure-time-14.jpg?1363606582", + "publisher": "BOOM! Studios", + "description": "FINAL ISSUE OF THE ARC! Finn and Jake are trapped inside a digital world...who can rescue the heroes? Find out in the latest installment of \"the best comic of 2012!\" An all-ages sensation!", + "releaseDate": "2013-03-20", + "price": "$3.99" + }, + { + "id": "5012608", + "name": "Adventure Time #13", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5012608-adventure-time-13.jpg?1361337214", + "publisher": "BOOM! Studios", + "description": "CRITICS ARE CALLING ADVENTURE TIME THE \"BEST SERIES OF 2012!\" The latest issue of the hottest all-ages comic on the stands now! Join Finn and Jake as they work to save BMO from a magical virus...by going INSIDE THE GAME!", + "releaseDate": "2013-02-20", + "price": "$3.99" + }, + { + "id": "7883919", + "name": "Adventure Time #12", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7883919-adventure-time-12.jpg?1359524395", + "publisher": "BOOM! Studios", + "description": "THE HOTTEST ALL-AGES COMIC CELEBRATES ITS ONE YEAR ANNIVERSARY! BMO's sick, but it's not just any virus...it's a magical virus! And now, Finn and Jake have to seek out a sorta-no-good-very-bad wizard to set things right!...", + "releaseDate": "2013-01-30", + "price": "$3.99" + }, + { + "id": "6782447", + "name": "Adventure Time #11", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6782447-adventure-time-11.jpg?1355893962", + "publisher": "BOOM! Studios", + "description": "THE FINAL TOTALLY AWESOME ISSUE OF THIS ADVENTURE TIME MINI-SERIES! Can the Scream Queens rock their crazy-huge biggest gig ever...and will Princess Bubblegum finally discover the true meaning of ROCK? Final issue of this...", + "releaseDate": "2012-12-19", + "price": "$3.99" + }, + { + "id": "9426413", + "name": "Adventure Time #10", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9426413-adventure-time-10.jpg?1407162985", + "publisher": "BOOM! Studios", + "description": "THERE'S NO BETTER TIME TO JUMP INTO THE ALL-AGES SENSATION! Join Jake the Dog and Finn the Human as they have sensational adventures in the magical land of Ooo! If you haven't checked out the comic book adaptation...", + "releaseDate": "2012-11-28", + "price": "$3.99" + }, + { + "id": "4281652", + "name": "Adventure Time #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4281652-adventure-time-1.jpg?1351042776", + "publisher": "BOOM! Studios", + "description": "It's Adventure Time! Join Finn the Human, Jake the Dog, and Princess Bubblegum for all-new adventures through The Land of Ooo. The top-rated Cartoon Network show now has its own comic book! With the show exploding in the...", + "releaseDate": "2012-02-08", + "price": "$3.99" + } +] diff --git a/test/shared/collection/test-data/sorted-series-collection.json b/test/shared/collection/test-data/sorted-series-collection.json new file mode 100644 index 0000000..b0acd39 --- /dev/null +++ b/test/shared/collection/test-data/sorted-series-collection.json @@ -0,0 +1,26 @@ +[ + { + "id": "115200", + "name": "The Unbeatable Squirrel Girl", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2790619-the-unbeatable-squirrel-girl.jpg", + "publisher": "Marvel Comics", + "count": 8, + "series": "2015" + }, + { + "id": "116147", + "name": "Paper Girls", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1094288-paper-girls.jpg", + "publisher": "Image Comics", + "count": 13, + "series": "2015" + }, + { + "id": "100124", + "name": "Adventure Time", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1205249-adventure-time.jpg", + "publisher": "BOOM! Studios", + "count": 65, + "series": "2012" + } +] diff --git a/test/shared/new-comics/issues-list.spec.js b/test/shared/new-comics/issues-list.spec.js index 5ed828a..2268176 100644 --- a/test/shared/new-comics/issues-list.spec.js +++ b/test/shared/new-comics/issues-list.spec.js @@ -1,6 +1,7 @@ const _ = require('lodash'); const allIssues20170104 = require('./test-data/all-issues-2017-01-04'); const filteredIssues20170104 = require('./test-data/filtered-issues-2017-01-04'); +const sortedIssues20170104 = require('./test-data/sorted-issues-2017-01-04'); module.exports = function (lofcg, newComicsDate) { describe('get issues list', function () { @@ -37,6 +38,18 @@ module.exports = function (lofcg, newComicsDate) { }); }); + it('should provide a sorted list of new comics', function (done) { + lofcg.newComics.get(newComicsDate, { sort: 'desc' }, (err, newComics) => { + expect(err).toBeNull(); + expect(newComics.length).toBe(289); + expect(newComics).toEqual(sortedIssues20170104); + _.each(newComics, (comic) => { + expect(comic).toBeAComicIssue(); + }); + done(); + }); + }); + it('should return an error when provided with an invalid date', function (done) { lofcg.newComics.get('foo', (err) => { expect(err).toEqual(jasmine.any(Error)); diff --git a/test/shared/new-comics/series-list.spec.js b/test/shared/new-comics/series-list.spec.js index e7cb501..9f2e727 100644 --- a/test/shared/new-comics/series-list.spec.js +++ b/test/shared/new-comics/series-list.spec.js @@ -1,10 +1,12 @@ const _ = require('lodash'); const allSeries20170104 = require('./test-data/all-series-2017-01-04'); const filteredSeries20170104 = require('./test-data/filtered-series-2017-01-04'); +const sortedSeries20170104 = require('./test-data/sorted-series-2017-01-04'); module.exports = function (lofcg, newComicsDate) { const options = { type: lofcg.types.SERIES }; const filteredOptions = _.extend({ publishers: ['Image Comics'] }, options); + const sortedOptions = _.extend({ sort: 'desc' }, options); describe('get series list', function () { it('should provide no new comic series', function (done) { @@ -40,6 +42,18 @@ module.exports = function (lofcg, newComicsDate) { }); }); + it('should provide a sorted list of new comic series', function (done) { + lofcg.newComics.get(newComicsDate, sortedOptions, (err, newComics) => { + expect(err).toBeNull(); + expect(newComics.length).toBe(139); + expect(newComics).toEqual(sortedSeries20170104); + _.each(newComics, (comic) => { + expect(comic).toBeAComicSeries(); + }); + done(); + }); + }); + it('should return an error when provided with an invalid date', function (done) { lofcg.newComics.get('foo', options, (err) => { expect(err).toEqual(jasmine.any(Error)); diff --git a/test/shared/new-comics/test-data/all-issues-2017-01-04.json b/test/shared/new-comics/test-data/all-issues-2017-01-04.json index 0ea5c4b..d4f887c 100644 --- a/test/shared/new-comics/test-data/all-issues-2017-01-04.json +++ b/test/shared/new-comics/test-data/all-issues-2017-01-04.json @@ -1,1056 +1,1074 @@ [ { - "id": "6436185", - "name": "Batman #14", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6436185-batman-14.jpg?1484810948", - "publisher": "DC Comics", - "description": "\"ROOFTOPS\" Part One! In this two-part story; how do you solve a problem like Selina Kyle? Is she a hero? Is she a villain? Can Batman and Catwoman ever really work things out? The award-winning team of Tom King...", + "id": "9266415", + "name": "2000 AD #2012", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9266415-2000-ad-2012.jpg?1485269508", + "publisher": "Rebellion", + "description": "Judge Dredd: Deep in the Heart (Pt1)\n\n\tKingmaker (Pt2)\n\n\tThe Order: Wyrm War (Pt2)\n\n\tHope ...for the Future (Pt2)\n\n\tKingdom: As it is in Heaven (Pt2)", "releaseDate": "2017-01-04", "price": "$2.99" }, { - "id": "2793270", - "name": "Saga #41", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2793270-saga-41.jpg?1490190820", - "publisher": "Image Comics", - "description": "“THE WAR FOR PHANG,” Part Five. \n\n\tAlana and Marko get their war on.", + "id": "6826764", + "name": "A&A #11", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6826764-aa-11.jpg?1483540093", + "publisher": "Valiant", + "description": "Freaky fracas! Obadiah Archer: Skilled marksmen, trained fi ghter, and...deranged circus freak?! Through the unfathomable forces of nature, Archer and Gub Gub - the pint-sized and deranged clone of Armstrong - have swapped...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$3.99" }, { - "id": "3614432", - "name": "The Walking Dead #162", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3614432-the-walking-dead-162.jpg?1476788672", - "publisher": "Image Comics", - "description": "END OF STORY ARC\n\t“THE WHISPERER WAR,” Conclusion", + "id": "9408111", + "name": "A&A #11 Cover B - Marc Laming", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9408111-aa-11-cover-b-marc-laming.jpg?1483540126", + "publisher": "Valiant", + "description": "Freaky fracas! Obadiah Archer: Skilled marksmen, trained fi ghter, and...deranged circus freak?! Through the unfathomable forces of nature, Archer and Gub Gub - the pint-sized and deranged clone of Armstrong - have swapped...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$3.99" }, { - "id": "9586230", - "name": "Superman #14", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9586230-superman-14.jpg?1484922748", - "publisher": "DC Comics", - "description": "“MULTIPLICITY” part one! The New Super-Man of China has been taken! The Red Son Superman of Earth-30 has been beaten! And who knows what’s happened to Sunshine Superman! Someone is collecting Supermen across...", + "id": "5508662", + "name": "A&A #11 Cover C - Dean Haspiel Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5508662-aa-11-cover-c-dean-haspiel-variant.jpg?1483540173", + "publisher": "Valiant", + "description": "Freaky fracas! Obadiah Archer: Skilled marksmen, trained fi ghter, and...deranged circus freak?! Through the unfathomable forces of nature, Archer and Gub Gub - the pint-sized and deranged clone of Armstrong - have swapped...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$3.99" }, { - "id": "9901948", - "name": "Justice League #12", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9901948-justice-league-12.jpg?1483539956", - "publisher": "DC Comics", - "description": "A “JUSTICE LEAGUE VS. SUICIDE SQUAD” tie-in! Behold the rebirth of one of the DC Universe’s most cunning villains as [REDACTED].", + "id": "8903990", + "name": "Adventure Time #60", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8903990-adventure-time-60.jpg?1483491252", + "publisher": "BOOM! Studios", + "description": "Finn gets into the dungeon-making scene and meets fellow dungeon masters, some of whom are villains from Finn's past!", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$3.99" }, { - "id": "8250153", - "name": "Nightwing #12", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8250153-nightwing-12.jpg?1484922799", + "id": "3137328", + "name": "Adventure Time #60 Subscription Le Cover", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3137328-adventure-time-60-subscription-le-cover.jpg?1483491252", + "publisher": "BOOM! Studios", + "description": "Finn gets into the dungeon-making scene and meets fellow dungeon masters, some of whom are villains from Finn's past!", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "6182300", + "name": "Amazing Spider-Man Worldwide Vol. 1 HC", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6182300-amazing-spider-man-worldwide-vol-1-hc.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "The world's greatest super hero goes global! Parker Industries is more successful than ever, with new offices in Shanghai, London and San Francisco. Peter Parker is racking up the frequent-flyer miles - with his 'bodyguard'...", + "releaseDate": "2017-01-04", + "price": "$34.99" + }, + { + "id": "1796701", + "name": "Aquaman #14", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1796701-aquaman-14.jpg?1483497159", "publisher": "DC Comics", - "description": "“BLUDHAVEN” part three! The body count in Blüdhaven continues to rise! Nightwing will have to team up with the Run-Offs to discover who the murderer is and clear the name of the Defacer. But before they...", + "description": "“THE DELUGE” part three! No sooner has Aquaman found a lead on the location of N.E.M.O.’s secret headquarters than the United States sends a team of aquatically trained super-soldiers to take out the sea...", "releaseDate": "2017-01-04", "price": "$2.99" }, { - "id": "8107453", - "name": "Green Arrow #14", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8107453-green-arrow-14.jpg?1483495026", + "id": "3271923", + "name": "Aquaman #14 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3271923-aquaman-14-variant-edition.jpg?1483497197", "publisher": "DC Comics", - "description": "“EMERALD OUTLAW” part three! Tension in Seattle reaches fever pitch when the media begins to question Green Arrow’s involvement in a series of murders committed by an archer with unmatched skills. If the...", + "description": "“THE DELUGE” part three! No sooner has Aquaman found a lead on the location of N.E.M.O.’s secret headquarters than the United States sends a team of aquatically trained super-soldiers to take out the sea...", "releaseDate": "2017-01-04", "price": "$2.99" }, { - "id": "6024995", - "name": "Old Man Logan #16", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6024995-old-man-logan-16.jpg?1483491252", - "publisher": "Marvel Comics", - "description": "IN SPACE, NO ONE CAN HEAR YOU SNIKT! After a disastrous rescue mission, LOGAN is trapped in the cold void of space, hunted by the BROOD! But…wait…Logan is also BACK IN THE WASTELANDS? How can this be? Has the...", + "id": "7997604", + "name": "Archie 75th Anniversary Digest #5", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7997604-archie-75th-anniversary-digest-5.jpg?1483505453", + "publisher": "Archie Comics", + "description": "Celebrate Archie's 75th anniversary in a special way with this commemorative digest! This issue is jam-packed some of the best stories featuring Archie, Betty, and Veronica and even more of the gals of Riverdale, bonus...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$6.99" }, { - "id": "8222681", - "name": "The Wicked + The Divine #25", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8222681-the-wicked-the-divine-25.jpg?1484803815", - "publisher": "Image Comics", - "description": "“IMPERIAL PHASE (I),” Part Three\n\tThe comic that says, “What could possibly go wrong?” and then looks at the camera and stares until we all start crying releases another issue.", + "id": "1481243", + "name": "Archie Comics Digest #275", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1481243-archie-comics-digest-275.jpg?1489992418", + "publisher": "Archie Comics", + "description": "Brand new story! The new game 'Cosmo Go!' is all the rage and kids are running all over Riverdale trying to seize rare Cosmo characters to get the biggest prize of all - Cosmo himself! Pop Tate sees the value in...", "releaseDate": "2017-01-04", - "price": "$3.50" + "price": "$4.99" }, { - "id": "5129075", - "name": "Moon Knight #10", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5129075-moon-knight-10.jpg?1483491252", - "publisher": "Marvel Comics", - "description": "“DEATH AND BIRTH” STARTS HERE! Marc Spector was born in Chicago, but where was Steven Grant born? This story goes deep into Spector’s past, picks up where LEMIRE and SMALLWOOD left off in New Egypt…...", + "id": "8262062", + "name": "Army of Darkness / Xena: Forever... And A Day #1 Nycc Exc Ed", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Dynamite", + "description": "You're Xena the Warrior Princess and your thousand strong army has fallen to an implacable and ancient evil. What do you do? You suck it up and summon the only ally who stands any hope at all of helping you prevent the...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "2805585", - "name": "Green Lanterns #14", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2805585-green-lanterns-14.jpg?1484842471", - "publisher": "DC Comics", - "description": "“THE PHANTOM LANTERN” conclusion! It’s Simon and Jessica’s final confrontation with the Phantom Lantern as the evil Volthoom’s plan for the rogue Guardian of the Universe inches closer to realization....", + "id": "2010124", + "name": "Art of Magic: The Gathering Vol. 3: Kaladesh HC", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2010124-art-of-magic-the-gathering-vol-3-kaladesh-hc.jpg?1483491252", + "publisher": "VIZ Media", + "description": "Optimism, innovation, and the spirit of creativity fill these pages, lavishly illustrated with the award-winning art of Magic: The Gathering! Welcome to Kaladesh - a vibrant, beautiful plane where anything is possible. Join...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$39.99" }, { - "id": "1796701", - "name": "Aquaman #14", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1796701-aquaman-14.jpg?1483497159", - "publisher": "DC Comics", - "description": "“THE DELUGE” part three! No sooner has Aquaman found a lead on the location of N.E.M.O.’s secret headquarters than the United States sends a team of aquatically trained super-soldiers to take out the sea...", + "id": "8928676", + "name": "Astro Boy Omnibus Vol. 6 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8928676-astro-boy-omnibus-vol-6-tp.jpg?1483491252", + "publisher": "Dark Horse Comics", + "description": "Sixty years old and still rockin', Astro Boy proudly wears the championship belt of all-ages robot action! In this volume, a powerful robot bent on creating a robot nation threatens to ignite all-out war between man...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$19.99" }, { - "id": "9959237", - "name": "The Unworthy Thor #3", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9959237-the-unworthy-thor-3.jpg?1483491252", - "publisher": "Marvel Comics", - "description": "The Odinson and Beta Ray Bill continue their quest to take the hammer of the Ultimate Thor from the clutches of the Collector. Elsewhere, a mysterious and powerful cosmic entity has learned of the weapon’s location...", + "id": "5715291", + "name": "Attack On Titan Vol. 20 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5715291-attack-on-titan-vol-20-tp.jpg?1482882160", + "publisher": "Kodansha Comics", + "description": "FACING ANNIHILATION The Survey Corps's quest for the truth of the world inside the Walls has brought them back to Titan-infested Shiganshina District, a mere stone's throw from Eren's childhood home. They have...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$10.99" }, { - "id": "3577803", - "name": "Harley Quinn #11", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3577803-harley-quinn-11.jpg?1483497000", - "publisher": "DC Comics", - "description": "“JOKER LOVES HARLEY” part one! For months now, strange reminders of Harley’s time with the Joker have been popping up in the most unexpected places…is this coincidence? Or a message? As our tale...", + "id": "8886084", + "name": "Back To The Future: Citizen Brown TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8886084-back-to-the-future-citizen-brown-tp.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Time-traveling into comics directly out of Telltale's 2010 smash-hit episodic videogame BACK TO THE FUTURE: THE GAME! When an empty time-traveling DeLorean suddenly shows up in 1986, Marty McFly quickly learns that his...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$19.99" }, { - "id": "8052350", - "name": "Justice League vs. Suicide Squad #3", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8052350-justice-league-vs-suicide-squad-3.jpg?1483539907", + "id": "6436185", + "name": "Batman #14", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6436185-batman-14.jpg?1484810948", "publisher": "DC Comics", - "description": "Belle Reve Penitentiary. Headquarters of Task Force X, home to the worst super-criminal scum in the DC Universe and new residence of…the Justice League?! The Suicide Squad delight in showing Earth’s greatest...", + "description": "\"ROOFTOPS\" Part One! In this two-part story; how do you solve a problem like Selina Kyle? Is she a hero? Is she a villain? Can Batman and Catwoman ever really work things out? The award-winning team of Tom King...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$2.99" }, { - "id": "9694083", - "name": "Black Science #27", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9694083-black-science-27.jpg?1476782851", - "publisher": "Image Comics", - "description": "A terrifying yet familiar shadow falls over the Dimensionauts, and with Grant locked in an asylum, it’s up to his daughter to save what’s left to save!", + "id": "3591165", + "name": "Batman #14 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3591165-batman-14-variant-edition.jpg?1483496632", + "publisher": "DC Comics", + "description": "\"ROOFTOPS\" Part One! In this two-part story; how do you solve a problem like Selina Kyle? Is she a hero? Is she a villain? Can Batman and Catwoman ever really work things out? The award-winning team of Tom King...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$2.99" }, { - "id": "7384900", - "name": "Champions #4", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7384900-champions-4.jpg?1483723869", - "publisher": "Marvel Comics", - "description": "Dead set on proving themselves, the Champions are faced with their first no-win scenario — and how it plays out will reveal a whole new side to certain members.", + "id": "1690460", + "name": "Behind the Scenes Vol. 3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1690460-behind-the-scenes-vol-3.jpg?1483491252", + "publisher": "VIZ Media", + "description": "Ranmaru Kurisu comes from a family of hardy, rough-and-tumble fisherfolk and he sticks out at home like a delicate, artistic sore thumb. It's given him a raging inferiority complex and a permanently pessimistic outlook....", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$9.99" }, { - "id": "4825708", - "name": "Spider-Man 2099 #19", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4825708-spider-man-2099-19.jpg?1483491252", - "publisher": "Marvel Comics", - "description": "Spidey’s mission to take down the terrorists who left his girlfriend in a coma isn’t going very well... THE FIST, an extremist offshoot of THE HAND, has teamed up with an ancient, evil goddess and literally started...", + "id": "1607215", + "name": "Betty Boop #1 Nycc Exc Ed", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Dynamite", + "description": "The most famous female cartoon star of all is back - and Dynamite has her! All-new adventures of Betty Boop (with her pals Koko the Clown and Bimbo, natch!) by award-winning writer Roger Langridge and Gis", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "5476098", - "name": "Captain America: Sam Wilson #17", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5476098-captain-america-sam-wilson-17.jpg?1483491252", - "publisher": "Marvel Comics", - "description": "The All-New Falcon and Rage — together! Nothing good will come of this!", + "id": "2076021", + "name": "Big Trouble in Little China / Escape From New York #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2076021-big-trouble-in-little-china-escape-from-new-york-4.jpg?1483491252", + "publisher": "BOOM! Studios", + "description": "Snake and Jack go undercover to join David Lo Pan's army.", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "9172708", - "name": "The Avengers #3", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9172708-the-avengers-3.jpg?1488120739", - "publisher": "Marvel Comics", - "description": "Kang War Three ends in a most unexpected manner! The Firewall of Time has been shattered — and now the Avengers are faced with the dangers it held back!", + "id": "2205304", + "name": "Big Trouble in Little China / Escape From New York #4 Subscription Massafera Cover", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2205304-big-trouble-in-little-china-escape-from-new-york-4-subscription-massafera-cover.jpg?1483491252", + "publisher": "BOOM! Studios", + "description": "Snake and Jack go undercover to join David Lo Pan's army.", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "6698577", - "name": "DC Comics Bombshells #21", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6698577-dc-comics-bombshells-21.jpg?1483496938", - "publisher": "DC Comics", - "description": "Batwoman and Renee Montoya’s pasts come back to haunt them as Cheetah appears and reminds them how she shot Jason Todd to death. As Cheetah makes a connection to the mechanical cheetah god by bonding to its broken...", + "id": "5054211", + "name": "Bizenghast 3in1 Vol. 1: Special Collector Ed", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5054211-bizenghast-3in1-vol-1-special-collector-ed.jpg?1482882163", + "publisher": "Tokyopop", + "description": "When a young girl moves to the forgotten town of Bizenghast, she uncovers a terrifying collection of lost souls that leads her to the brink of insanity. One thing that becomes painfully clear: The residences of Bizenghast...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$19.99" }, { - "id": "2870681", - "name": "Nailbiter #28", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2870681-nailbiter-28.jpg?1476786785", + "id": "9694083", + "name": "Black Science #27", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9694083-black-science-27.jpg?1476782851", "publisher": "Image Comics", - "description": "The new Murder Store is having a grand reopening in Buckaroo! But a returning serial killer has other plans…", + "description": "A terrifying yet familiar shadow falls over the Dimensionauts, and with Grant locked in an asylum, it’s up to his daughter to save what’s left to save!", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$3.99" }, { - "id": "7945653", - "name": "Scarlet Witch #14", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7945653-scarlet-witch-14.jpg?1483491252", - "publisher": "Marvel Comics", - "description": "A RACE AGAINST TIME TO SAVE WITCHES EVERYWHERE! WANDA’s latest journey for answers has her traveling through alternate dimensions! Amid perils new and old, Wanda, AGATHA and NATALYA will have to fight AIMLESS...", + "id": "3776946", + "name": "Bloodlines TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3776946-bloodlines-tp.jpg?1482850988", + "publisher": "DC Comics", + "description": "When a meteor crashes to Earth, bringing with it an unspeakable alien presence that terrorizes a nearby small town, the lucky ones die first. As for the rest, they find themselves locked in a hellish struggle for control...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$14.99" }, { - "id": "7723942", - "name": "Hawkeye #2", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7723942-hawkeye-2.jpg?1484891213", - "publisher": "Marvel Comics", - "description": "Solve first case as a P.I. – check. Make new friends – working on it. Realize that first case isn’t quite solved and that there’s a much larger conspiracy at work – aw, dang! Kate Bishop’s...", + "id": "3367848", + "name": "Bob's Burgers #15 Nycc Exc Ed", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Dynamite", + "description": "Gene serves up a magnificent medieval tale in Issue 15 of the Bob's Burgers Comic Book! A rogue dodgeball sends Gene back in time - to a land of kings, and knights, and a wizard who's just 'meh.' Gene discovers...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "8759009", - "name": "The Autumnlands: Tooth & Claw #14", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8759009-the-autumnlands-tooth-claw-14.jpg?1483491252", - "publisher": "Image Comics", - "description": "END OF STORY ARC.\n\n\tEverything goes BOOM. Our travelers have to pick up the pieces in the final chapter of THE AUTUMNLANDS: WOODLAND CREATURES.", + "id": "3930907", + "name": "Boo Worlds Cutest Dog Walk In the Park Vol. 1 HC", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3930907-boo-worlds-cutest-dog-walk-in-the-park-vol-1-hc.jpg?1483491252", + "publisher": "Dynamite", + "description": "The World's Cutest Dog comes to comics! He's Boo, the Pomeranian pup that's become an internet sensation, and he's ready for four-color adventures in his first-ever graphic novel! Join Boo and his canine...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$12.99" }, { - "id": "1281939", - "name": "Cyborg #8", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1281939-cyborg-8.jpg?1483496803", - "publisher": "DC Comics", - "description": "“Kill Switch”! Cyborg has been deactivated! Now, Vic Stone must rely on help from the outside to break into S.T.A.R. Labs and switch the Justice Leaguer back on. But can Cyborg rely on a clever but luckless streetwise...", + "id": "2602415", + "name": "Box Office Poison Color Comics #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2602415-box-office-poison-color-comics-1.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "The story of Sherman, Dorothy, Ed, Stephen, Jane, and Mr. Flavor as you've never seen it before: IN FULL COLOR! Alex Robinson's masterpiece of dreary jobs, comic books, love, sex, messy apartments, girlfriends (and...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$3.99" }, { - "id": "3777858", - "name": "Nova #2", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3777858-nova-2.jpg?1483780045", - "publisher": "Marvel Comics", - "description": "THE RUMORS ARE TRUE! Richard Rider is back from the dead! Even better — he’s back in his Nova helmet! But Earth already HAS a Nova as its guardian, and Sam Alexander isn’t one to be replaced so easily…...", + "id": "3393034", + "name": "Cannibal #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3393034-cannibal-4.jpg?1476782934", + "publisher": "Image Comics", + "description": "END OF STORY ARC\n\tPart Four. The first arc concludes. Danny’s past comes back to haunt him, while Cash’s desperate search for Jolene continues!", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "2518867", - "name": "Shade, The Changing Girl #4", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2518867-shade-the-changing-girl-4.jpg?1483584817", - "publisher": "Young Animal", - "description": "As Megan, the soul that Shade displaced, gets farther and farther away from Earth, Shade is starting to find things about her new planet and her new body that she really likes. For instance, there’s music. And also...", + "id": "5476098", + "name": "Captain America: Sam Wilson #17", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5476098-captain-america-sam-wilson-17.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "The All-New Falcon and Rage — together! Nothing good will come of this!", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "1837947", - "name": "Midnighter and Apollo #4", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1837947-midnighter-and-apollo-4.jpg?1483496745", + "id": "4549332", + "name": "Catwoman Vol. 6: Final Jeopardy TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4549332-catwoman-vol-6-final-jeopardy-tp.jpg?1483491252", "publisher": "DC Comics", - "description": "Apollo’s in Hell, and the only weapon that can kill his captor has been destroyed! Does Midnighter have a plan? Why are you even asking that question?", + "description": "With everything crumbling around her, Selina Kyle must carefully rebuild her secret identity to protect her new daughter and her friends. But after being thrown off the planet with all the super-villains, Catwoman must claw...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$24.99" }, { - "id": "2335868", - "name": "The Flintstones #7", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2335868-the-flintstones-7.jpg?1483491252", - "publisher": "DC Comics", - "description": "The Great Gazoo is working on his report card for the human race, and so far humanity has earned a big fat \"F.\" When the Church of Gerard starts selling Indulgences, Bedrock descends into violence and debauchery....", + "id": "7384900", + "name": "Champions #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7384900-champions-4.jpg?1483723869", + "publisher": "Marvel Comics", + "description": "Dead set on proving themselves, the Champions are faced with their first no-win scenario — and how it plays out will reveal a whole new side to certain members.", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "8632080", - "name": "Justice League of America: The Atom Rebirth #1", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8632080-justice-league-of-america-the-atom-rebirth-1.jpg?1483491252", - "publisher": "DC Comics", - "description": "Prodigious theoretical physics student, hyper-allergic, and crippling social anxiety sufferer. But little does young Ryan know, his first day at Ivy University will begin an epic journey that will take the all-new Atom into...", + "id": "2628089", + "name": "Chris Samnee Daredevil Artist Ed HC", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2628089-chris-samnee-daredevil-artist-ed-hc.jpg?1484408115", + "publisher": "IDW Publishing", + "description": "IDW Publishing launched the very first Artist's Edition in 2010. It was a bold concept that to date has garnered five consecutive Eisner Awards in the category of Best Archival Project. With the release of Chris Samnee's...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "" }, { - "id": "9876900", - "name": "U.S.Avengers #1", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9876900-usavengers-1.jpg?1484922741", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "1281939", + "name": "Cyborg #8", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1281939-cyborg-8.jpg?1483496803", + "publisher": "DC Comics", + "description": "“Kill Switch”! Cyborg has been deactivated! Now, Vic Stone must rely on help from the outside to break into S.T.A.R. Labs and switch the Justice Leaguer back on. But can Cyborg rely on a clever but luckless streetwise...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$2.99" }, { - "id": "6799143", - "name": "Unfollow #15", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6799143-unfollow-15.jpg?1483491252", - "publisher": "Vertigo Comics", - "description": "A year has passed since the tragic events at Akira’s commune. The 140 are dying at an alarming rate, and the world is now split between Akira’s vision and Rubinstein’s. Things have changed. So has Dave....", + "id": "8041059", + "name": "Cyborg #8 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8041059-cyborg-8-variant-edition.jpg?1483496852", + "publisher": "DC Comics", + "description": "“Kill Switch”! Cyborg has been deactivated! Now, Vic Stone must rely on help from the outside to break into S.T.A.R. Labs and switch the Justice Leaguer back on. But can Cyborg rely on a clever but luckless streetwise...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$2.99" }, { - "id": "1846049", - "name": "Giant Days #22", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1846049-giant-days-22.jpg?1483491252", - "publisher": "BOOM! Studios", - "description": "Daisy struggles with the persistent advances of Ingrid Oesterle, Esther gets the call from the Dark Nebula to be a comic shop employee, and Susan finally saves up enough money to buy a scooter that she's too afraid to...", + "id": "6698577", + "name": "DC Comics Bombshells #21", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6698577-dc-comics-bombshells-21.jpg?1483496938", + "publisher": "DC Comics", + "description": "Batwoman and Renee Montoya’s pasts come back to haunt them as Cheetah appears and reminds them how she shot Jason Todd to death. As Cheetah makes a connection to the mechanical cheetah god by bonding to its broken...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "3393034", - "name": "Cannibal #4", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3393034-cannibal-4.jpg?1476782934", - "publisher": "Image Comics", - "description": "END OF STORY ARC\n\tPart Four. The first arc concludes. Danny’s past comes back to haunt him, while Cash’s desperate search for Jolene continues!", + "id": "8666781", + "name": "DC Super Hero Girls: Past Times at Super Hero High Chapter #7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8666781-dc-super-hero-girls-past-times-at-super-hero-high-chapter-7.jpg?1483557895", + "publisher": "DC Comics", + "description": "Batgirl and Harley Quinn are stranded…in the world of the Atomic Knights! Can they convince the knights and their giant dogs that they’re not working with the evil Vandal Savage?", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$0.99" }, { - "id": "5224475", - "name": "Deadpool: Too Soon? #4", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5224475-deadpool-too-soon-4.jpg?1483491252", + "id": "4879833", + "name": "Deadpool Worlds Greatest Vol. 1 HC", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4879833-deadpool-worlds-greatest-vol-1-hc.jpg?1483491252", "publisher": "Marvel Comics", - "description": "Someone has been murdering all of Deadpool’s friends – from Forbush Man to Rocket and Groot! Now Wade Wilson is down to his final suspects and you’ll never guess who it is! This Marvel Universe murder mystery...", + "description": "He's annoying. He's dangerous. He smells terrible. But the public loves him! That's right - 25 years after his introduction, the Merc with a Mouth is now an Avenger and the world's most popular hero. Eat...", "releaseDate": "2017-01-04", - "price": "$4.99" + "price": "$34.99" }, { - "id": "7228953", - "name": "The Unstoppable Wasp #1", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7228953-the-unstoppable-wasp-1.jpg?1486191873", + "id": "5647354", + "name": "Deadpool the Duck #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5647354-deadpool-the-duck-1.jpg?1484784213", "publisher": "Marvel Comics", - "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", + "description": "What do you get when you take one cynical anthropomorphic duck (named Howard) and cross it with the smelliest (and most annoying) mercenary in the Marvel Universe? DEADPOOL THE DUCK! When Deadpool is sent on a mission from...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "6906139", - "name": "Death of Hawkman #4", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6906139-death-of-hawkman-4.jpg?1483497890", - "publisher": "DC Comics", - "description": "Having uncovered Despero’s plans to acquire the Zeta energy, Hawkman and Adam Strange realize that hundreds of thousands of Thanagarians could perish in the process! But is it already too late for Thanagar?", + "id": "3637000", + "name": "Deadpool the Duck #1 Connecting Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3637000-deadpool-the-duck-1-connecting-variant.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "What do you get when you take one cynical anthropomorphic duck (named Howard) and cross it with the smelliest (and most annoying) mercenary in the Marvel Universe? DEADPOOL THE DUCK! When Deadpool is sent on a mission from...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "5647354", - "name": "Deadpool the Duck #1", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5647354-deadpool-the-duck-1.jpg?1484784213", + "id": "9311856", + "name": "Deadpool the Duck #1 Incentive Chip Zdarsky Variant Cover", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9311856-deadpool-the-duck-1-incentive-chip-zdarsky-variant-cover.jpg?1483572156", "publisher": "Marvel Comics", "description": "What do you get when you take one cynical anthropomorphic duck (named Howard) and cross it with the smelliest (and most annoying) mercenary in the Marvel Universe? DEADPOOL THE DUCK! When Deadpool is sent on a mission from...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "2575423", - "name": "Jem and The Holograms #22", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2575423-jem-and-the-holograms-22.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "THE STINGERS part 4! Jem and The Holograms new drummer is incredible and everyone knows it-too bad she's a spy working for The Misfits! What secrets will she discover when let into the inner sanctum of JEM?! As both...", + "id": "7438320", + "name": "Deadpool the Duck #1 Incentive Rafael Albuquerque Variant Cover", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7438320-deadpool-the-duck-1-incentive-rafael-albuquerque-variant-cover.jpg?1483572108", + "publisher": "Marvel Comics", + "description": "What do you get when you take one cynical anthropomorphic duck (named Howard) and cross it with the smelliest (and most annoying) mercenary in the Marvel Universe? DEADPOOL THE DUCK! When Deadpool is sent on a mission from...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "8652905", - "name": "The Fall and Rise of Captain Atom #1", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8652905-the-fall-and-rise-of-captain-atom-1.jpg?1483497735", - "publisher": "DC Comics", - "description": "“Blowback” part one! Captain Atom hasn’t been seen or heard from in years—and even if you think you know what happened to him…you’re wrong! But you’re not alone. To this day, no...", - "releaseDate": "2017-01-04", - "price": "$2.99" - }, - { - "id": "6152672", - "name": "Faith #7", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6152672-faith-7.jpg?1483539795", - "publisher": "Valiant", - "description": "Haunted heroics! Faith Herbert has lost many allies throughout her life… Her mother. Her father. Even a fellow Renegade. Despite this, Los Angeles’ high-flying hero has always defined herself by more than tragedy....", + "id": "9100210", + "name": "Deadpool the Duck #1 Ron Lim Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9100210-deadpool-the-duck-1-ron-lim-variant.jpg?1483572132", + "publisher": "Marvel Comics", + "description": "What do you get when you take one cynical anthropomorphic duck (named Howard) and cross it with the smelliest (and most annoying) mercenary in the Marvel Universe? DEADPOOL THE DUCK! When Deadpool is sent on a mission from...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "8903990", - "name": "Adventure Time #60", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8903990-adventure-time-60.jpg?1483491252", - "publisher": "BOOM! Studios", - "description": "Finn gets into the dungeon-making scene and meets fellow dungeon masters, some of whom are villains from Finn's past!", + "id": "6447744", + "name": "Deadpool the Duck #1 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6447744-deadpool-the-duck-1-variant-edition.jpg?1483574028", + "publisher": "Marvel Comics", + "description": "What do you get when you take one cynical anthropomorphic duck (named Howard) and cross it with the smelliest (and most annoying) mercenary in the Marvel Universe? DEADPOOL THE DUCK! When Deadpool is sent on a mission from...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "6104235", - "name": "Star Trek: Boldly Go #4", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6104235-star-trek-boldly-go-4.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "Spock is gone, taken by an enemy unlike any Captain Kirk and his crew have faced before. War with the Romulan Empire is imminent. In the face of the ultimate no-win scenario, will the Federation survive? Don't miss the...", + "id": "5224475", + "name": "Deadpool: Too Soon? #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5224475-deadpool-too-soon-4.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "Someone has been murdering all of Deadpool’s friends – from Forbush Man to Rocket and Groot! Now Wade Wilson is down to his final suspects and you’ll never guess who it is! This Marvel Universe murder mystery...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$4.99" }, { - "id": "8719121", - "name": "Injustice: Gods Among Us - Ground Zero #3", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8719121-injustice-gods-among-us-ground-zero-3.jpg?1483497742", - "publisher": "DC Comics", - "description": "Batman has been taken prisoner! That's good news for Superman, until he figures out it's not the same Batman he's been pursuing all these years.", + "id": "4377170", + "name": "Deadpool: Too Soon? #4 Robson Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4377170-deadpool-too-soon-4-robson-variant.jpg?1483109509", + "publisher": "Marvel Comics", + "description": "Someone has been murdering all of Deadpool’s friends – from Forbush Man to Rocket and Groot! Now Wade Wilson is down to his final suspects and you’ll never guess who it is! This Marvel Universe murder mystery...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$4.99" }, { - "id": "6826764", - "name": "A&A #11", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6826764-aa-11.jpg?1483540093", - "publisher": "Valiant", - "description": "Freaky fracas! Obadiah Archer: Skilled marksmen, trained fi ghter, and...deranged circus freak?! Through the unfathomable forces of nature, Archer and Gub Gub - the pint-sized and deranged clone of Armstrong - have swapped...", + "id": "6906139", + "name": "Death of Hawkman #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6906139-death-of-hawkman-4.jpg?1483497890", + "publisher": "DC Comics", + "description": "Having uncovered Despero’s plans to acquire the Zeta energy, Hawkman and Adam Strange realize that hundreds of thousands of Thanagarians could perish in the process! But is it already too late for Thanagar?", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "5262471", - "name": "Ragnarok #11", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5262471-ragnarok-11.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "Thor Odinson and the Black Elf assassin, Regn, face off against the Lord of the Dead and his draugar in the Dark Tower, the citadel of his power that stands on the edge of Hel.", + "id": "3736111", + "name": "Deaths Dark Angel #1 Exclusive Cover", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "American Mythology", + "description": "An American Comics Original! Returning after 30 years, this special edition cover was limited to just a tiny 325 copy print run.", "releaseDate": "2017-01-04", - "price": "$4.99" + "price": "$15.00" }, { - "id": "6889739", - "name": "Rise of the Black Flame #5", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6889739-rise-of-the-black-flame-5.jpg?1483505423", - "publisher": "Dark Horse Comics", - "description": "The heroes’ search finally ends at the temple of the Black Flame cult, but they don’t arrive in time to stop what they find there.", + "id": "8501592", + "name": "Disney Princess #8", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8501592-disney-princess-8.jpg?1482539584", + "publisher": "Disney Comics", + "description": "The hit series continues! Disney's beloved heroines have returned in this hilarious collection of Disney Princess comic strips! Featuring laugh-out-loud stories from the worlds of Ariel, Belle, Rapunzel, Tiana, Cinderella,...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$2.99" }, { - "id": "2202585", - "name": "Everafter: From the Pages of Fables #5", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2202585-everafter-from-the-pages-of-fables-5.jpg?1483494756", - "publisher": "Vertigo Comics", - "description": "Bo’s hunt for Jordan gets bloody! Meanwhile, it’s damage control for the rest of the Shadow Players as San Francisco is under siege by a horde of enraged and undead warriors. Desperate to stop an imminent Mundy...", + "id": "9226857", + "name": "Doctor Strange / The Punisher: Magic Bullets Chapter #5", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9226857-doctor-strange-the-punisher-magic-bullets-chapter-5.jpg?1483557243", + "publisher": "Marvel Comics", + "description": "The strangest team-up has a takedown! For Strange and Punisher, it’s time to take to the skies!", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$0" }, { - "id": "1539524", - "name": "Slapstick #2", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1539524-slapstick-2.jpg?1483491252", - "publisher": "Marvel Comics", - "description": "Slapstick vs. Bro-Man! Who or what is Bro-Man? Well, look at the cover! He’s another cartoon-like character! Also, is it weird that Slapstick is hiding a mad scientist in his parents’ basement? Probably!", + "id": "8132400", + "name": "Doctor Who: The Eleventh Doctor - Year Three #1 Blank Sketch Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Titan Books", + "description": "Same great creators, whole new flavor! The eleventh Doctor begins his blockbuster third year with writer Rob Williams (Suicide Squad) and series artists Simon Fraser and Leandro Casco in the hot seat! Year Three unfolds...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "8414601", - "name": "G.I. Joe: A Real American Hero #235", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8414601-gi-joe-a-real-american-hero-235.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "COBRA prepares for its next strike against G.I. JOE, and this time, the Real American Heroes won't see it coming!", + "id": "8926436", + "name": "Doctor Who: The Eleventh Doctor - Year Three #1 Cover B Photo", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8926436-doctor-who-the-eleventh-doctor-year-three-1-cover-b-photo.jpg?1484021813", + "publisher": "Titan Books", + "description": "Same great creators, whole new flavor! The eleventh Doctor begins his blockbuster third year with writer Rob Williams (Suicide Squad) and series artists Simon Fraser and Leandro Casco in the hot seat! Year Three unfolds...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "1992660", - "name": "Optimus Prime #2", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1992660-optimus-prime-2.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "NEW CYBERTRON! A massive corkscrew-shaped space ship has drilled into Earth, bringing with it a surprising disruption to OPTIMUS PRIME's plans. Meanwhile-ARCEE fields a dangerous offer that may be too good to resist!...", + "id": "4144896", + "name": "Doctor Who: The Eleventh Doctor - Year Three #1 Cover C Question 6", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4144896-doctor-who-the-eleventh-doctor-year-three-1-cover-c-question-6.jpg?1484056035", + "publisher": "Titan Books", + "description": "Same great creators, whole new flavor! The eleventh Doctor begins his blockbuster third year with writer Rob Williams (Suicide Squad) and series artists Simon Fraser and Leandro Casco in the hot seat! Year Three unfolds...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "2076021", - "name": "Big Trouble in Little China / Escape From New York #4", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2076021-big-trouble-in-little-china-escape-from-new-york-4.jpg?1483491252", - "publisher": "BOOM! Studios", - "description": "Snake and Jack go undercover to join David Lo Pan's army.", + "id": "8011269", + "name": "Doctor Who: The Eleventh Doctor - Year Three #1 Cover D Fraser", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8011269-doctor-who-the-eleventh-doctor-year-three-1-cover-d-fraser.jpg?1484056036", + "publisher": "Titan Books", + "description": "Same great creators, whole new flavor! The eleventh Doctor begins his blockbuster third year with writer Rob Williams (Suicide Squad) and series artists Simon Fraser and Leandro Casco in the hot seat! Year Three unfolds...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "6418628", - "name": "Mickey Mouse #16", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6418628-mickey-mouse-16.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "'Darkenblot,' Part 1 of 3! The futuristic city of Avantgarde has an awesome robot police force-but it's just become the Phantom Blot's private army! Can Mickey brave high-tech horrors to stop his old foe?...", + "id": "2847788", + "name": "Doctor Who: The Eleventh Doctor - Year Three #1 Cover E Di Meo", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2847788-doctor-who-the-eleventh-doctor-year-three-1-cover-e-di-meo.jpg?1484056037", + "publisher": "Titan Books", + "description": "Same great creators, whole new flavor! The eleventh Doctor begins his blockbuster third year with writer Rob Williams (Suicide Squad) and series artists Simon Fraser and Leandro Casco in the hot seat! Year Three unfolds...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "5205654", - "name": "Grimm Fairy Tales #1 Cvr F Basaldua", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5205654-grimm-fairy-tales-1-cvr-f-basaldua.jpg?1483992374", - "publisher": "Zenescope", - "description": "New Series Launch! Grimm Fairy Tales is Back! The world of humans has forever changed and the Grimm Universe has been shaken to its core. It started with the Age of Darkness and now with the death of Sela Mathers, earth's...", + "id": "4842197", + "name": "Doctor Who: The Twelfth Doctor - Year Two #13 Cover B Photo", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4842197-doctor-who-the-twelfth-doctor-year-two-13-cover-b-photo.jpg?1484021815", + "publisher": "Titan Books", + "description": "A French swordswoman, dark matter monsters, alternate universes, swashbuckling adventure and symbiotic intrigue - all just another Wednesday for the Doctor! But when you throw in secret police, an alien takeover of the aristocracy,...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "8042847", - "name": "Marvel's Guardians of the Galaxy Vol. 2 Prelude #1", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8042847-marvels-guardians-of-the-galaxy-vol-2-prelude-1.jpg?1485674534", - "publisher": "Marvel Comics", - "description": "GET HOOKED ON THE GUARDIANS! When the fate of the galaxy is at stake, there's only one thing to do: call in the greatest warriors the galaxy has ever known. What do you mean, who?!  ROCKET. GROOT. DRAX. GAMORA....", + "id": "7776477", + "name": "Doctor Who: The Twelfth Doctor - Year Two #13 Cover C Question 6", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Titan Books", + "description": "A French swordswoman, dark matter monsters, alternate universes, swashbuckling adventure and symbiotic intrigue - all just another Wednesday for the Doctor! But when you throw in secret police, an alien takeover of the aristocracy,...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "" }, { - "id": "5373679", - "name": "The Walking Dead #162 Cover B Connecting Variant Adams & Fairbairn", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5373679-the-walking-dead-162-cover-b-connecting-variant-adams-fairbairn.jpg?1486006026", - "publisher": "Image Comics", - "description": "END OF STORY ARC\n\t“THE WHISPERER WAR,” Conclusion", + "id": "7308800", + "name": "Doctor Who: The Twelfth Doctor - Year Two #13 Cover D Glass", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Titan Books", + "description": "A French swordswoman, dark matter monsters, alternate universes, swashbuckling adventure and symbiotic intrigue - all just another Wednesday for the Doctor! But when you throw in secret police, an alien takeover of the aristocracy,...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "" }, { - "id": "6498448", - "name": "Uncle Scrooge #22", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6498448-uncle-scrooge-22.jpg?1483491252", + "id": "8825311", + "name": "Donald & Mickey Magic Kingdom Collection TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8825311-donald-mickey-magic-kingdom-collection-tp.jpg?1483491252", "publisher": "IDW Publishing", - "description": "'The Golden Birds!' When rare, deadly giant hawks with 24-karat feathers are discovered at the South Pole, brassy business-gal Brigitta MacBridge wants to help Scrooge save them for science-so why is he fleeing in...", + "description": "Sixty years of Disney Parks-who knew? Now IDW is celebrating with decades of Disney's classic Park-themed adventure comics! Carl Barks' Scrooge McDuck and Donald travel from the Mark Twain Riverboat to the top of...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$12.99" }, { - "id": "3984727", - "name": "Grant Morrison's 18 Days #19", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3984727-grant-morrisons-18-days-19.jpg?1491565360", - "publisher": "Graphic India", - "description": "Grant Morrison's epic creation continues. The conclusion to the grand hunt! Abhimanyu and his cousin Gatok must hide in the dense jungles from Emperor Duryodhana's unstoppable assassins: the insidious Ashwatthama,...", + "id": "5958392", + "name": "Dragonlance the Legend of Huma TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5958392-dragonlance-the-legend-of-huma-tp.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "The world of Krynn is under siege by the dark goddess Takhisis. Led by the renegade wizard Galan Dracos, Takhisis' forces of evil threaten to conquer all. The only resistance to the Dark Queen are the Knights of Solamnia...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$19.99" }, { - "id": "8501592", - "name": "Disney Princess #8", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8501592-disney-princess-8.jpg?1482539584", - "publisher": "Disney Comics", - "description": "The hit series continues! Disney's beloved heroines have returned in this hilarious collection of Disney Princess comic strips! Featuring laugh-out-loud stories from the worlds of Ariel, Belle, Rapunzel, Tiana, Cinderella,...", + "id": "9048092", + "name": "Eden's Fall TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9048092-edens-fall-tp.jpg?1483491252", + "publisher": "Top Cow Productions", + "description": "Top Cow combines three of its most provocative titles (THINK TANK, THE TITHE, POSTAL) in an unflinching fable of revenge and consequence. FBI Agent James Miller (THE TITHE) follows a sociopath into the off-the-grid town...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$14.99" }, { - "id": "3591165", - "name": "Batman #14 Variant Edition", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3591165-batman-14-variant-edition.jpg?1483496632", - "publisher": "DC Comics", - "description": "\"ROOFTOPS\" Part One! In this two-part story; how do you solve a problem like Selina Kyle? Is she a hero? Is she a villain? Can Batman and Catwoman ever really work things out? The award-winning team of Tom King...", + "id": "6883547", + "name": "Equilibrium #1 Bcc Exc Mega Signed Cover", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "American Mythology", + "description": "In the first years of the 21st century, a third World War broke out. Those of us who survived knew mankind could never survive a fourth... that our own volatile natures could simply no longer be risked. Now, the government...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "" }, { - "id": "6372928", - "name": "Vikings Uprising #4", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6372928-vikings-uprising-4.jpg?1484021719", - "publisher": "Titan Books", - "description": "Lagertha and her forces are in a desperate situation, as she finds the rebel slaves have learned a lot from their former masters. It will take all of her bravery and resourcefulness to survive! Meanwhile, in Kattegat, Ragnar...", + "id": "7849540", + "name": "Erb Land That Time Forgot #1 Antique Signed Cover", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "American Mythology", + "description": "One hundred years ago, Bowen Tyler, a handful of British allies, and the crew of a German U-33 submarine were lost at sea. What they discovered was something that defied time, and all of known science: the island of Caspak!...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$19.99" }, { - "id": "9798463", - "name": "Superman Vol. 1: Son Of Superman TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9798463-superman-vol-1-son-of-superman-tp.jpg?1483855271", - "publisher": "DC Comics", - "description": "After the stunning events of DC REBIRTH, the world is left without Superman! Luckily, there is another Man of Steel to fill his shoes: the pre-Flashpoint Kal-El! However, can this new Superman protect the world while raising...", + "id": "2202585", + "name": "Everafter: From the Pages of Fables #5", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2202585-everafter-from-the-pages-of-fables-5.jpg?1483494756", + "publisher": "Vertigo Comics", + "description": "Bo’s hunt for Jordan gets bloody! Meanwhile, it’s damage control for the rest of the Shadow Players as San Francisco is under siege by a horde of enraged and undead warriors. Desperate to stop an imminent Mundy...", "releaseDate": "2017-01-04", - "price": "$16.99" + "price": "$3.99" }, { - "id": "7966030", - "name": "Scooby-Doo, Where Are You? #77", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7966030-scooby-doo-where-are-you-77.jpg?1483497514", - "publisher": "DC Comics", - "description": "Scooby, Shaggy and the gang are checking out the excitement at a big surfing contest, but one thing they weren’t expecting to find was pirates! Fred and Daphne suit up to help uncover the culprit, but will they solve...", + "id": "6152672", + "name": "Faith #7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6152672-faith-7.jpg?1483539795", + "publisher": "Valiant", + "description": "Haunted heroics! Faith Herbert has lost many allies throughout her life… Her mother. Her father. Even a fellow Renegade. Despite this, Los Angeles’ high-flying hero has always defined herself by more than tragedy....", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "5689449", - "name": "Yakuza Demon Killers #3", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5689449-yakuza-demon-killers-3.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "Will Ochita's induction lead to corruption? A contentious decision within the Yakuza hierarchy leads to Ochita being inducted as their first female member. As the Yakuza quarrel, the opportunistic demon leader Gaikotsu...", + "id": "1305238", + "name": "Faith #7 Cover B - David Lafuente", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1305238-faith-7-cover-b-david-lafuente.jpg?1483539845", + "publisher": "Valiant", + "description": "Haunted heroics! Faith Herbert has lost many allies throughout her life… Her mother. Her father. Even a fellow Renegade. Despite this, Los Angeles’ high-flying hero has always defined herself by more than tragedy....", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "4153816", - "name": "Justice League vs. Suicide Squad #3 Suicide Squad Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4153816-justice-league-vs-suicide-squad-3-suicide-squad-variant.jpg?1483491252", - "publisher": "DC Comics", - "description": "Belle Reve Penitentiary. Headquarters of Task Force X, home to the worst super-criminal scum in the DC Universe and new residence of…the Justice League?! The Suicide Squad delight in showing Earth’s greatest...", + "id": "9033694", + "name": "Faith #7 Cover C - Philip Tan", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9033694-faith-7-cover-c-philip-tan.jpg?1483539891", + "publisher": "Valiant", + "description": "Haunted heroics! Faith Herbert has lost many allies throughout her life… Her mother. Her father. Even a fellow Renegade. Despite this, Los Angeles’ high-flying hero has always defined herself by more than tragedy....", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "3875647", - "name": "Justice League vs. Suicide Squad #3 Justice League Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3875647-justice-league-vs-suicide-squad-3-justice-league-variant.jpg?1483491252", - "publisher": "DC Comics", - "description": "Belle Reve Penitentiary. Headquarters of Task Force X, home to the worst super-criminal scum in the DC Universe and new residence of…the Justice League?! The Suicide Squad delight in showing Earth’s greatest...", + "id": "2311042", + "name": "Faith #7 Cover D - Jen Bartel Incentive Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2311042-faith-7-cover-d-jen-bartel-incentive-variant.jpg?1483539944", + "publisher": "Valiant", + "description": "Haunted heroics! Faith Herbert has lost many allies throughout her life… Her mother. Her father. Even a fellow Renegade. Despite this, Los Angeles’ high-flying hero has always defined herself by more than tragedy....", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "4699455", - "name": "Harley Quinn #11 Frank Cho Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4699455-harley-quinn-11-frank-cho-variant.jpg?1483497058", - "publisher": "DC Comics", - "description": "“JOKER LOVES HARLEY” part one! For months now, strange reminders of Harley’s time with the Joker have been popping up in the most unexpected places…is this coincidence? Or a message? As our tale...", + "id": "2765173", + "name": "Faith #7 Cover E - Geoff Shaw Incentive Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2765173-faith-7-cover-e-geoff-shaw-incentive-variant.jpg?1483539994", + "publisher": "Valiant", + "description": "Haunted heroics! Faith Herbert has lost many allies throughout her life… Her mother. Her father. Even a fellow Renegade. Despite this, Los Angeles’ high-flying hero has always defined herself by more than tragedy....", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$3.99" }, { - "id": "1701102", - "name": "Superman #14 Variant Edition", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1701102-superman-14-variant-edition.jpg?1483491252", - "publisher": "DC Comics", - "description": "“MULTIPLICITY” part one! The New Super-Man of China has been taken! The Red Son Superman of Earth-30 has been beaten! And who knows what’s happened to Sunshine Superman! Someone is collecting Supermen across...", + "id": "3729379", + "name": "Franken Fran Vol. 4 Omnibus", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3729379-franken-fran-vol-4-omnibus.jpg?1483491252", + "publisher": "Seven Seas Entertainment", + "description": "Starting with the bolts that protrude from her head, Fran isn't exactly what you would call a normal girl, nor is the cast of horribly disfigured creatures who join her. Despite her Frankenstein-like ways, Fran cares...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$19.99" }, { - "id": "6916943", - "name": "Star Wars: Han Solo TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6916943-star-wars-han-solo-tp.jpg?1483491252", - "publisher": "Marvel Comics", - "description": "Everyone's favorite scoundrel goes Solo! Han is given a top-secret undercover mission for the Rebellion: rescuing several informants and spies! His cover for the assignment? Only the biggest and most infamous starship...", + "id": "8414601", + "name": "G.I. Joe: A Real American Hero #235", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8414601-gi-joe-a-real-american-hero-235.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "COBRA prepares for its next strike against G.I. JOE, and this time, the Real American Heroes won't see it coming!", "releaseDate": "2017-01-04", - "price": "$16.99" + "price": "$3.99" }, { - "id": "8146900", - "name": "Squarriors: Summer #2", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8146900-squarriors-summer-2.jpg?1483505154", - "publisher": "Devil's Due Publishing", - "description": "The Maw and Amoni begin their march to the Tin Kin compound, Tree Jump and Crash retrace Pasha's Southern journey, and the Tin Kin must decide whether to shelter or refuse a group of unusual refugees.", + "id": "2946107", + "name": "G.I. Joe: A Real American Hero #235 Subscription Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2946107-gi-joe-a-real-american-hero-235-subscription-variant.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "COBRA prepares for its next strike against G.I. JOE, and this time, the Real American Heroes won't see it coming!", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "8302380", - "name": "Justice League #12 Variant Edition (jl Ss)", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8302380-justice-league-12-variant-edition-jl-ss.jpg?1483496492", - "publisher": "DC Comics", - "description": "A “JUSTICE LEAGUE VS. SUICIDE SQUAD” tie-in! Behold the rebirth of one of the DC Universe’s most cunning villains as [REDACTED].", + "id": "1846049", + "name": "Giant Days #22", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1846049-giant-days-22.jpg?1483491252", + "publisher": "BOOM! Studios", + "description": "Daisy struggles with the persistent advances of Ingrid Oesterle, Esther gets the call from the Dark Nebula to be a comic shop employee, and Susan finally saves up enough money to buy a scooter that she's too afraid to...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$3.99" }, { - "id": "4863677", - "name": "Green Arrow Vol. 1: The Death and Life Of Oliver Queen TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4863677-green-arrow-vol-1-the-death-and-life-of-oliver-queen-tp.jpg?1482850944", - "publisher": "DC Comics", - "description": "Green Arrow's life will be forever changed as he is betrayed by those closest to him! A budding relationship with Black Canary forces Ollie to confront the fact that he can't fight \"the man\" if he is \"the...", + "id": "3984727", + "name": "Grant Morrison's 18 Days #19", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3984727-grant-morrisons-18-days-19.jpg?1491565360", + "publisher": "Graphic India", + "description": "Grant Morrison's epic creation continues. The conclusion to the grand hunt! Abhimanyu and his cousin Gatok must hide in the dense jungles from Emperor Duryodhana's unstoppable assassins: the insidious Ashwatthama,...", "releaseDate": "2017-01-04", - "price": "$16.99" + "price": "$2.99" }, { - "id": "3730443", - "name": "Marvel Universe Avengers: Ultron Revolution #7", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3730443-marvel-universe-avengers-ultron-revolution-7.jpg?1483491252", - "publisher": "Marvel Comics", - "description": "THE SHOCKING CONCLUSION TO THE THUNDERBOLTS! In an epic showdown, it's the AVENGERS versus the THUNDERBOLTS! When it's revealed that the Thunderbolts are actually a villainous team posing as a heroic one, can the...", + "id": "1885703", + "name": "Grant Morrison's 18 Days #19 Singh Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1885703-grant-morrisons-18-days-19-singh-variant.jpg?1491565360", + "publisher": "Graphic India", + "description": "Grant Morrison's epic creation continues. The conclusion to the grand hunt! Abhimanyu and his cousin Gatok must hide in the dense jungles from Emperor Duryodhana's unstoppable assassins: the insidious Ashwatthama,...", "releaseDate": "2017-01-04", "price": "$2.99" }, { - "id": "2338531", - "name": "Nightwing #12 Variant Edition", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2338531-nightwing-12-variant-edition.jpg?1483586262", + "id": "5525728", + "name": "Grayson Vol. 5: Spyrals End TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5525728-grayson-vol-5-spyrals-end-tp.jpg?1485966467", "publisher": "DC Comics", - "description": "“BLUDHAVEN” part three! The body count in Blüdhaven continues to rise! Nightwing will have to team up with the Run-Offs to discover who the murderer is and clear the name of the Defacer. But before they...", + "description": "REMEMBER HIS NAME The entire world is caught in a secret spiral of war and one man stands at the center…Dick Grayson. Corrupted from within, the all-powerful clandestine organization called Spyral is at war with itself,...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$16.99" }, { - "id": "3050429", - "name": "World of Tanks #4", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3050429-world-of-tanks-4.jpg?1483491252", - "publisher": "Dark Horse Comics", - "description": "In this exciting penultimate issue, Linnet's crew faces their toughest battle yet! Meanwhile, Kraft's confidence breaks down as he questions the goals of his fellow officers. Garth Ennis (Preacher, Hellblazer) and...", + "id": "8107453", + "name": "Green Arrow #14", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8107453-green-arrow-14.jpg?1483495026", + "publisher": "DC Comics", + "description": "“EMERALD OUTLAW” part three! Tension in Seattle reaches fever pitch when the media begins to question Green Arrow’s involvement in a series of murders committed by an archer with unmatched skills. If the...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$2.99" }, { - "id": "4435488", - "name": "Morning Glories Vol. 10: Expulsion TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4435488-morning-glories-vol-10-expulsion-tp.jpg?1483491252", - "publisher": "Image Comics", - "description": "Features the 'Expulsion' arc and the blockbuster Season 2 finale! Casey takes a stand in the Student Council election, Guillaume challenges the headmaster in the Towerball finals, and Vanessa and Ian face off in...", + "id": "6440976", + "name": "Green Arrow #14 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6440976-green-arrow-14-variant-edition.jpg?1483495049", + "publisher": "DC Comics", + "description": "“EMERALD OUTLAW” part three! Tension in Seattle reaches fever pitch when the media begins to question Green Arrow’s involvement in a series of murders committed by an archer with unmatched skills. If the...", "releaseDate": "2017-01-04", - "price": "$14.99" + "price": "$2.99" }, { - "id": "3271923", - "name": "Aquaman #14 Variant Edition", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3271923-aquaman-14-variant-edition.jpg?1483497197", + "id": "8660460", + "name": "Green Arrow Vol. 1: Life and Death of Oliver Queen (rebirth) TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8660460-green-arrow-vol-1-life-and-death-of-oliver-queen-rebirth-tp.jpg?1483491252", "publisher": "DC Comics", - "description": "“THE DELUGE” part three! No sooner has Aquaman found a lead on the location of N.E.M.O.’s secret headquarters than the United States sends a team of aquatically trained super-soldiers to take out the sea...", + "description": "By day he’s Oliver Queen, playboy socialite, CEO of Queen Industries and philanthropic do-gooder. But at night he patrols the streets of Seattle, where he champions the oppressed as a true social justice warrior. He...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$16.99" }, { - "id": "8322314", - "name": "Steam Wars Bounty Hunters Hell For Hire #1", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8322314-steam-wars-bounty-hunters-hell-for-hire-1.jpg?1483491252", - "publisher": "Antarctic Press", - "description": "Pursued by the Hegemonic Crux's mounted cavalry, a desperate rebel noble heads for cover in the Dead Forest. The troopers believe they have the target at their mercy, but the predators will soon become prey themselves...", + "id": "4863677", + "name": "Green Arrow Vol. 1: The Death and Life Of Oliver Queen TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4863677-green-arrow-vol-1-the-death-and-life-of-oliver-queen-tp.jpg?1482850944", + "publisher": "DC Comics", + "description": "Green Arrow's life will be forever changed as he is betrayed by those closest to him! A budding relationship with Black Canary forces Ollie to confront the fact that he can't fight \"the man\" if he is \"the...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$16.99" }, { - "id": "9635584", - "name": "The Unstoppable Wasp #1 Hip-Hop Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9635584-the-unstoppable-wasp-1-hip-hop-variant.jpg?1483112014", - "publisher": "Marvel Comics", - "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", + "id": "6723039", + "name": "Green Ghost Declassified", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6723039-green-ghost-declassified.jpg?1482882177", + "publisher": "Moonstone", + "description": "The Green Ghost - magician sleuth George Chance - returns! Once a debunker of the supernatural, the Green Ghost terrorized criminals with his horrific skull-face and wraithlike abilities. But criminologist Chance came back...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$14.99" }, { - "id": "6440976", - "name": "Green Arrow #14 Variant Edition", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6440976-green-arrow-14-variant-edition.jpg?1483495049", + "id": "2805585", + "name": "Green Lanterns #14", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2805585-green-lanterns-14.jpg?1484842471", "publisher": "DC Comics", - "description": "“EMERALD OUTLAW” part three! Tension in Seattle reaches fever pitch when the media begins to question Green Arrow’s involvement in a series of murders committed by an archer with unmatched skills. If the...", + "description": "“THE PHANTOM LANTERN” conclusion! It’s Simon and Jessica’s final confrontation with the Phantom Lantern as the evil Volthoom’s plan for the rogue Guardian of the Universe inches closer to realization....", "releaseDate": "2017-01-04", "price": "$2.99" }, { - "id": "4110979", - "name": "Justice League of America: The Atom Rebirth #1 Variant Edition", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4110979-justice-league-of-america-the-atom-rebirth-1-variant-edition.jpg?1483491252", + "id": "3070724", + "name": "Green Lanterns #14 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3070724-green-lanterns-14-variant-edition.jpg?1483497304", "publisher": "DC Comics", - "description": "Prodigious theoretical physics student, hyper-allergic, and crippling social anxiety sufferer. But little does young Ryan know, his first day at Ivy University will begin an epic journey that will take the all-new Atom into...", + "description": "“THE PHANTOM LANTERN” conclusion! It’s Simon and Jessica’s final confrontation with the Phantom Lantern as the evil Volthoom’s plan for the rogue Guardian of the Universe inches closer to realization....", "releaseDate": "2017-01-04", "price": "$2.99" }, { - "id": "5037853", - "name": "Strawberry Shortcake #8", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5037853-strawberry-shortcake-8.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "The rivalry between Strawberry Shortcake and the Purple Pie Man has escalated into a hold-nothing-back race to the finish! Strawberry will need her friends, her food savvy and a little luck to stay ahead of her ruthless...", - "releaseDate": "2017-01-04", - "price": "$3.99" - }, - { - "id": "1158869", - "name": "The Wicked + The Divine #25 Cover B Lenox", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1158869-the-wicked-the-divine-25-cover-b-lenox.jpg?1483491252", - "publisher": "Image Comics", - "description": "“IMPERIAL PHASE (I),” Part Three\n\tThe comic that says, “What could possibly go wrong?” and then looks at the camera and stares until we all start crying releases another issue.", + "id": "5205654", + "name": "Grimm Fairy Tales #1 Cvr F Basaldua", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5205654-grimm-fairy-tales-1-cvr-f-basaldua.jpg?1483992374", + "publisher": "Zenescope", + "description": "New Series Launch! Grimm Fairy Tales is Back! The world of humans has forever changed and the Grimm Universe has been shaken to its core. It started with the Age of Darkness and now with the death of Sela Mathers, earth's...", "releaseDate": "2017-01-04", - "price": "$3.50" + "price": "" }, { - "id": "2854178", - "name": "Masked #2", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2854178-masked-2.jpg?1483491252", - "publisher": "Titan Books", - "description": "Frank Braffort has caught the attention of the Government officials working most closely with the mysterious anomalies populating the city. With little to go on, but mounting pressure as the anomalies take on more extreme...", + "id": "5872805", + "name": "Grumpy Cat Grumpus Vol. 3 HC", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5872805-grumpy-cat-grumpus-vol-3-hc.jpg?1483491252", + "publisher": "Dynamite", + "description": "The World's Grumpiest Cat - and the world's most adorable internet sensation - continues to delight fans of all ages with her comic book misadventures (although she's actually quite disappointed to delight anyone,...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$12.99" }, { - "id": "3070724", - "name": "Green Lanterns #14 Variant Edition", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3070724-green-lanterns-14-variant-edition.jpg?1483497304", + "id": "3577803", + "name": "Harley Quinn #11", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3577803-harley-quinn-11.jpg?1483497000", "publisher": "DC Comics", - "description": "“THE PHANTOM LANTERN” conclusion! It’s Simon and Jessica’s final confrontation with the Phantom Lantern as the evil Volthoom’s plan for the rogue Guardian of the Universe inches closer to realization....", + "description": "“JOKER LOVES HARLEY” part one! For months now, strange reminders of Harley’s time with the Joker have been popping up in the most unexpected places…is this coincidence? Or a message? As our tale...", "releaseDate": "2017-01-04", "price": "$2.99" }, { - "id": "8660460", - "name": "Green Arrow Vol. 1: Life and Death of Oliver Queen (rebirth) TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8660460-green-arrow-vol-1-life-and-death-of-oliver-queen-rebirth-tp.jpg?1483491252", + "id": "4699455", + "name": "Harley Quinn #11 Frank Cho Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4699455-harley-quinn-11-frank-cho-variant.jpg?1483497058", "publisher": "DC Comics", - "description": "By day he’s Oliver Queen, playboy socialite, CEO of Queen Industries and philanthropic do-gooder. But at night he patrols the streets of Seattle, where he champions the oppressed as a true social justice warrior. He...", + "description": "“JOKER LOVES HARLEY” part one! For months now, strange reminders of Harley’s time with the Joker have been popping up in the most unexpected places…is this coincidence? Or a message? As our tale...", "releaseDate": "2017-01-04", - "price": "$16.99" + "price": "$2.99" }, { - "id": "9179780", - "name": "Moon Knight #10 Portacio Classic Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9179780-moon-knight-10-portacio-classic-variant.jpg?1483108169", + "id": "7723942", + "name": "Hawkeye #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7723942-hawkeye-2.jpg?1484891213", "publisher": "Marvel Comics", - "description": "“DEATH AND BIRTH” STARTS HERE! Marc Spector was born in Chicago, but where was Steven Grant born? This story goes deep into Spector’s past, picks up where LEMIRE and SMALLWOOD left off in New Egypt…...", + "description": "Solve first case as a P.I. – check. Make new friends – working on it. Realize that first case isn’t quite solved and that there’s a much larger conspiracy at work – aw, dang! Kate Bishop’s...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "2959951", - "name": "U.S.Avengers #1 Casanova Hip Hop Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2959951-usavengers-1-casanova-hip-hop-variant.jpg?1483121625", + "id": "7467432", + "name": "Hawkeye #2 Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7467432-hawkeye-2-variant.jpg?1483490897", "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "description": "Solve first case as a P.I. – check. Make new friends – working on it. Realize that first case isn’t quite solved and that there’s a much larger conspiracy at work – aw, dang! Kate Bishop’s...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "3538056", - "name": "U.S.Avengers #1 Young Variant", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "8719121", + "name": "Injustice: Gods Among Us - Ground Zero #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8719121-injustice-gods-among-us-ground-zero-3.jpg?1483497742", + "publisher": "DC Comics", + "description": "Batman has been taken prisoner! That's good news for Superman, until he figures out it's not the same Batman he's been pursuing all these years.", "releaseDate": "2017-01-04", - "price": "" + "price": "$2.99" }, { - "id": "2602415", - "name": "Box Office Poison Color Comics #1", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2602415-box-office-poison-color-comics-1.jpg?1483491252", + "id": "2575423", + "name": "Jem and The Holograms #22", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2575423-jem-and-the-holograms-22.jpg?1483491252", "publisher": "IDW Publishing", - "description": "The story of Sherman, Dorothy, Ed, Stephen, Jane, and Mr. Flavor as you've never seen it before: IN FULL COLOR! Alex Robinson's masterpiece of dreary jobs, comic books, love, sex, messy apartments, girlfriends (and...", + "description": "THE STINGERS part 4! Jem and The Holograms new drummer is incredible and everyone knows it-too bad she's a spy working for The Misfits! What secrets will she discover when let into the inner sanctum of JEM?! As both...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "3637000", - "name": "Deadpool the Duck #1 Connecting Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3637000-deadpool-the-duck-1-connecting-variant.jpg?1483491252", - "publisher": "Marvel Comics", - "description": "What do you get when you take one cynical anthropomorphic duck (named Howard) and cross it with the smelliest (and most annoying) mercenary in the Marvel Universe? DEADPOOL THE DUCK! When Deadpool is sent on a mission from...", + "id": "3595214", + "name": "Jem and The Holograms #22 10 Copy incentive", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3595214-jem-and-the-holograms-22-10-copy-incentive.jpg?1481601331", + "publisher": "IDW Publishing", + "description": "THE STINGERS part 4! Jem and The Holograms new drummer is incredible and everyone knows it-too bad she's a spy working for The Misfits! What secrets will she discover when let into the inner sanctum of JEM?! As both...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "5525728", - "name": "Grayson Vol. 5: Spyrals End TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5525728-grayson-vol-5-spyrals-end-tp.jpg?1485966467", + "id": "8253883", + "name": "Jem and The Holograms #22 Subscription Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8253883-jem-and-the-holograms-22-subscription-variant.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "THE STINGERS part 4! Jem and The Holograms new drummer is incredible and everyone knows it-too bad she's a spy working for The Misfits! What secrets will she discover when let into the inner sanctum of JEM?! As both...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "9901948", + "name": "Justice League #12", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9901948-justice-league-12.jpg?1483539956", "publisher": "DC Comics", - "description": "REMEMBER HIS NAME The entire world is caught in a secret spiral of war and one man stands at the center…Dick Grayson. Corrupted from within, the all-powerful clandestine organization called Spyral is at war with itself,...", + "description": "A “JUSTICE LEAGUE VS. SUICIDE SQUAD” tie-in! Behold the rebirth of one of the DC Universe’s most cunning villains as [REDACTED].", "releaseDate": "2017-01-04", - "price": "$16.99" + "price": "$2.99" }, { - "id": "6827446", - "name": "U.S.Avengers #1 Reis Canada Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6827446-usavengers-1-reis-canada-variant.jpg?1479943860", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "8302380", + "name": "Justice League #12 Variant Edition (jl Ss)", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8302380-justice-league-12-variant-edition-jl-ss.jpg?1483496492", + "publisher": "DC Comics", + "description": "A “JUSTICE LEAGUE VS. SUICIDE SQUAD” tie-in! Behold the rebirth of one of the DC Universe’s most cunning villains as [REDACTED].", "releaseDate": "2017-01-04", - "price": "" + "price": "$2.99" }, { - "id": "2168967", - "name": "Wynonna Earp Legends: Doc Holliday #2", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2168967-wynonna-earp-legends-doc-holliday-2.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "Wynonna Earp and Doc Holliday have picked up an unusual ally: a former Pinkerton by the name of Charles Siringo. But they're gonna need Charlie's help if Wynonna and Doc are gonna stand a chance against an enemy...", + "id": "9788714", + "name": "Justice League United Vol. 3: Reunited TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9788714-justice-league-united-vol-3-reunited-tp.jpg?1482851272", + "publisher": "DC Comics", + "description": "In these stories from JUSTICE LEAGUE UNITED #11-16 and an 8-page Sneak Peek story appearing in print for the first time, the team is transported into an eternal war between the forces of good and evil-but they'll need...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$14.99" }, { - "id": "2464703", - "name": "Shade, The Changing Girl #4 Joëlle Jones Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2464703-shade-the-changing-girl-4-jolle-jones-variant.jpg?1483504487", - "publisher": "Young Animal", - "description": "As Megan, the soul that Shade displaced, gets farther and farther away from Earth, Shade is starting to find things about her new planet and her new body that she really likes. For instance, there’s music. And also...", + "id": "8632080", + "name": "Justice League of America: The Atom Rebirth #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8632080-justice-league-of-america-the-atom-rebirth-1.jpg?1483491252", + "publisher": "DC Comics", + "description": "Prodigious theoretical physics student, hyper-allergic, and crippling social anxiety sufferer. But little does young Ryan know, his first day at Ivy University will begin an epic journey that will take the all-new Atom into...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$2.99" }, { - "id": "1734378", - "name": "The Unstoppable Wasp #1 Torque Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1734378-the-unstoppable-wasp-1-torque-variant.jpg?1483111376", - "publisher": "Marvel Comics", - "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", + "id": "4110979", + "name": "Justice League of America: The Atom Rebirth #1 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4110979-justice-league-of-america-the-atom-rebirth-1-variant-edition.jpg?1483491252", + "publisher": "DC Comics", + "description": "Prodigious theoretical physics student, hyper-allergic, and crippling social anxiety sufferer. But little does young Ryan know, his first day at Ivy University will begin an epic journey that will take the all-new Atom into...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$2.99" }, { - "id": "8748748", - "name": "The Unstoppable Wasp #1 Park Movie Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8748748-the-unstoppable-wasp-1-park-movie-variant.jpg?1483110637", - "publisher": "Marvel Comics", - "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", + "id": "8052350", + "name": "Justice League vs. Suicide Squad #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8052350-justice-league-vs-suicide-squad-3.jpg?1483539907", + "publisher": "DC Comics", + "description": "Belle Reve Penitentiary. Headquarters of Task Force X, home to the worst super-criminal scum in the DC Universe and new residence of…the Justice League?! The Suicide Squad delight in showing Earth’s greatest...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "4876873", - "name": "The Unstoppable Wasp #1 Young Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4876873-the-unstoppable-wasp-1-young-variant.jpg?1483111355", - "publisher": "Marvel Comics", - "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", + "id": "3875647", + "name": "Justice League vs. Suicide Squad #3 Justice League Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3875647-justice-league-vs-suicide-squad-3-justice-league-variant.jpg?1483491252", + "publisher": "DC Comics", + "description": "Belle Reve Penitentiary. Headquarters of Task Force X, home to the worst super-criminal scum in the DC Universe and new residence of…the Justice League?! The Suicide Squad delight in showing Earth’s greatest...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "8433616", - "name": "Moon Knight #10 Crook Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8433616-moon-knight-10-crook-variant.jpg?1483108058", - "publisher": "Marvel Comics", - "description": "“DEATH AND BIRTH” STARTS HERE! Marc Spector was born in Chicago, but where was Steven Grant born? This story goes deep into Spector’s past, picks up where LEMIRE and SMALLWOOD left off in New Egypt…...", + "id": "4153816", + "name": "Justice League vs. Suicide Squad #3 Suicide Squad Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4153816-justice-league-vs-suicide-squad-3-suicide-squad-variant.jpg?1483491252", + "publisher": "DC Comics", + "description": "Belle Reve Penitentiary. Headquarters of Task Force X, home to the worst super-criminal scum in the DC Universe and new residence of…the Justice League?! The Suicide Squad delight in showing Earth’s greatest...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "1239489", - "name": "Moon Knight #10 Story Thus Far Now", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1239489-moon-knight-10-story-thus-far-now.jpg?1483108188", - "publisher": "Marvel Comics", - "description": "“DEATH AND BIRTH” STARTS HERE! Marc Spector was born in Chicago, but where was Steven Grant born? This story goes deep into Spector’s past, picks up where LEMIRE and SMALLWOOD left off in New Egypt…...", + "id": "4219681", + "name": "King Cat 76", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4219681-king-cat-76.jpg?1483505249", + "publisher": "Alternative Comics", + "description": "The newest issue of this long-running, award-winning comic-zine features Nature Notes, Dreaming, Old People in Restaurants, Sports Radio, Fall Signs, Winter Signs, Radishes, Birds, and 9 pages of fascinating Letters to the...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "9959464", - "name": "The Fall and Rise of Captain Atom #1 Variant Edition", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9959464-the-fall-and-rise-of-captain-atom-1-variant-edition.jpg?1483497794", - "publisher": "DC Comics", - "description": "“Blowback” part one! Captain Atom hasn’t been seen or heard from in years—and even if you think you know what happened to him…you’re wrong! But you’re not alone. To this day, no...", + "id": "6414040", + "name": "Kolchak Forgotten Lore of Edgar Allen Poe", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6414040-kolchak-forgotten-lore-of-edgar-allen-poe.jpg?1482882183", + "publisher": "Moonstone", + "description": "From tell-tale hearts and premature burials to black cats and the Red Death, reporter Carl Kolchak grapples with deepening horror and madness as events from Edgar Allan Poe's tales of mystery and imagination come to...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$11.99" + }, + { + "id": "2119416", + "name": "Life & Adventures of Santa Claus: Illus Eric Shanower HC", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2119416-life-adventures-of-santa-claus-illus-eric-shanower-hc.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Both of L. Frank Baum's classic Santa Claus tales are collected here: The Life and Adventures of Santa Claus and A Kidnapped Santa Claus, with with beautiful spot illustrations and cover art by Eisner Award-winning comics...", + "releaseDate": "2017-01-04", + "price": "$16.99" }, { - "id": "8952055", - "name": "U.S.Avengers #1 Reis Arkansas State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8952055-usavengers-1-reis-arkansas-state-variant.jpg?1483586268", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "3548052", + "name": "Marry Me #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3548052-marry-me-1.jpg?1483637522", + "publisher": "Other", + "description": "Stasia is a world-famous pop star who is so frustrated with her love life that she accepts the proposal of a random fan holding a MARRY ME sign at one of her concerts. After she says yes, what happens next? Find out in this...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "4514148", - "name": "U.S.Avengers #1 Reis California State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4514148-usavengers-1-reis-california-state-variant.jpg?1478844489", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "4159676", + "name": "Marry Me #1 Cover B", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4159676-marry-me-1-cover-b.jpg?1483648321", + "publisher": "Other", + "description": "Stasia is a world-famous pop star who is so frustrated with her love life that she accepts the proposal of a random fan holding a MARRY ME sign at one of her concerts. After she says yes, what happens next? Find out in this...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "3692050", - "name": "U.S.Avengers #1 Reis New Jersey State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3692050-usavengers-1-reis-new-jersey-state-variant.jpg?1480129872", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "3267286", + "name": "Marry Me #1 Cover C", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3267286-marry-me-1-cover-c.jpg?1483648330", + "publisher": "Other", + "description": "Stasia is a world-famous pop star who is so frustrated with her love life that she accepts the proposal of a random fan holding a MARRY ME sign at one of her concerts. After she says yes, what happens next? Find out in this...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "2071059", - "name": "U.S.Avengers #1 Reis Texas State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2071059-usavengers-1-reis-texas-state-variant.jpg?1480129238", + "id": "6492931", + "name": "Marvel Free Previews #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6492931-marvel-free-previews-1.jpg?1484504122", "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "description": "Monsters Unleashed #1 is an advance look, at the full MONSTERS UNLEASHED PREVIEWS of… Monsters Unleashed #1 Avengers #1.MU The Uncanny Inhumans #1.MU Champions #1.MU Spiderman/Deadpool #1.MU Doctor Strange #1.MU All...", "releaseDate": "2017-01-04", - "price": "" + "price": "$Free" }, { - "id": "2205304", - "name": "Big Trouble in Little China / Escape From New York #4 Subscription Massafera Cover", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2205304-big-trouble-in-little-china-escape-from-new-york-4-subscription-massafera-cover.jpg?1483491252", - "publisher": "BOOM! Studios", - "description": "Snake and Jack go undercover to join David Lo Pan's army.", + "id": "3730443", + "name": "Marvel Universe Avengers: Ultron Revolution #7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3730443-marvel-universe-avengers-ultron-revolution-7.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "THE SHOCKING CONCLUSION TO THE THUNDERBOLTS! In an epic showdown, it's the AVENGERS versus the THUNDERBOLTS! When it's revealed that the Thunderbolts are actually a villainous team posing as a heroic one, can the...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$2.99" }, { - "id": "4549332", - "name": "Catwoman Vol. 6: Final Jeopardy TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4549332-catwoman-vol-6-final-jeopardy-tp.jpg?1483491252", - "publisher": "DC Comics", - "description": "With everything crumbling around her, Selina Kyle must carefully rebuild her secret identity to protect her new daughter and her friends. But after being thrown off the planet with all the super-villains, Catwoman must claw...", + "id": "6816589", + "name": "Marvel Universe Ult Spider-Man vs. Sinister Six Digest Vol. 1 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6816589-marvel-universe-ult-spider-man-vs-sinister-six-digest-vol-1-tp.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "Featuring screen-capture images from MARVEL'S ULTIMATE SPIDER-MAN VS. THE SINISTER SIX! Spider-Man faces fearsome foes and finds fabulous friends! With Spider-Verse and Contest of Champions behind him, things are looking...", "releaseDate": "2017-01-04", - "price": "$24.99" + "price": "$9.99" }, { - "id": "8041059", - "name": "Cyborg #8 Variant Edition", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8041059-cyborg-8-variant-edition.jpg?1483496852", - "publisher": "DC Comics", - "description": "“Kill Switch”! Cyborg has been deactivated! Now, Vic Stone must rely on help from the outside to break into S.T.A.R. Labs and switch the Justice Leaguer back on. But can Cyborg rely on a clever but luckless streetwise...", + "id": "8042847", + "name": "Marvel's Guardians of the Galaxy Vol. 2 Prelude #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8042847-marvels-guardians-of-the-galaxy-vol-2-prelude-1.jpg?1485674534", + "publisher": "Marvel Comics", + "description": "GET HOOKED ON THE GUARDIANS! When the fate of the galaxy is at stake, there's only one thing to do: call in the greatest warriors the galaxy has ever known. What do you mean, who?!  ROCKET. GROOT. DRAX. GAMORA....", "releaseDate": "2017-01-04", "price": "$2.99" }, { - "id": "2815795", - "name": "U.S.Avengers #1 Reis Florida State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2815795-usavengers-1-reis-florida-state-variant.jpg?1479435022", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "2854178", + "name": "Masked #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2854178-masked-2.jpg?1483491252", + "publisher": "Titan Books", + "description": "Frank Braffort has caught the attention of the Government officials working most closely with the mysterious anomalies populating the city. With little to go on, but mounting pressure as the anomalies take on more extreme...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "3946273", - "name": "U.S.Avengers #1 Reis Georgia State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3946273-usavengers-1-reis-georgia-state-variant.jpg?1480130054", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "7661500", + "name": "Masked #2 Cover B Kurth", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7661500-masked-2-cover-b-kurth.jpg?1483491252", + "publisher": "Titan Books", + "description": "Frank Braffort has caught the attention of the Government officials working most closely with the mysterious anomalies populating the city. With little to go on, but mounting pressure as the anomalies take on more extreme...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "3264086", - "name": "U.S.Avengers #1 Reis Michigan State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3264086-usavengers-1-reis-michigan-state-variant.jpg?1480131746", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "3977289", + "name": "Masked #2 Cover D", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3977289-masked-2-cover-d.jpg?1484021845", + "publisher": "Titan Books", + "description": "Frank Braffort has caught the attention of the Government officials working most closely with the mysterious anomalies populating the city. With little to go on, but mounting pressure as the anomalies take on more extreme...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "7000267", - "name": "U.S.Avengers #1 Reis New York State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7000267-usavengers-1-reis-new-york-state-variant.jpg?1478845128", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "6418628", + "name": "Mickey Mouse #16", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6418628-mickey-mouse-16.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "'Darkenblot,' Part 1 of 3! The futuristic city of Avantgarde has an awesome robot police force-but it's just become the Phantom Blot's private army! Can Mickey brave high-tech horrors to stop his old foe?...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "4302198", - "name": "U.S.Avengers #1 Reis North Carolina State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4302198-usavengers-1-reis-north-carolina-state-variant.jpg?1480130341", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "4076398", + "name": "Mickey Mouse #16 Subscription Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4076398-mickey-mouse-16-subscription-variant.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "'Darkenblot,' Part 1 of 3! The futuristic city of Avantgarde has an awesome robot police force-but it's just become the Phantom Blot's private army! Can Mickey brave high-tech horrors to stop his old foe?...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "6182300", - "name": "Amazing Spider-Man Worldwide Vol. 1 HC", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6182300-amazing-spider-man-worldwide-vol-1-hc.jpg?1483491252", - "publisher": "Marvel Comics", - "description": "The world's greatest super hero goes global! Parker Industries is more successful than ever, with new offices in Shanghai, London and San Francisco. Peter Parker is racking up the frequent-flyer miles - with his 'bodyguard'...", + "id": "5360153", + "name": "Mickey Mouse Mysterious Melody HC", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5360153-mickey-mouse-mysterious-melody-hc.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "What was life like for Mickey before 1928... before Hollywood stardom struck? In this riveting, phantasmagorical 'what-if' tale, we follow the Mouse from his humble origins-as Oswald Rabbit's screenwriter!-through...", "releaseDate": "2017-01-04", - "price": "$34.99" + "price": "$14.99" }, { - "id": "4879833", - "name": "Deadpool Worlds Greatest Vol. 1 HC", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4879833-deadpool-worlds-greatest-vol-1-hc.jpg?1483491252", - "publisher": "Marvel Comics", - "description": "He's annoying. He's dangerous. He smells terrible. But the public loves him! That's right - 25 years after his introduction, the Merc with a Mouth is now an Avenger and the world's most popular hero. Eat...", + "id": "1837947", + "name": "Midnighter and Apollo #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1837947-midnighter-and-apollo-4.jpg?1483496745", + "publisher": "DC Comics", + "description": "Apollo’s in Hell, and the only weapon that can kill his captor has been destroyed! Does Midnighter have a plan? Why are you even asking that question?", "releaseDate": "2017-01-04", - "price": "$34.99" + "price": "$3.99" }, { - "id": "9226857", - "name": "Doctor Strange / The Punisher: Magic Bullets Chapter #5", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9226857-doctor-strange-the-punisher-magic-bullets-chapter-5.jpg?1483557243", - "publisher": "Marvel Comics", - "description": "The strangest team-up has a takedown! For Strange and Punisher, it’s time to take to the skies!", + "id": "1487818", + "name": "Monster Musume: I ♥ Monster Girls Vo. 03 GN", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1487818-monster-musume-i-monster-girls-vo-03-gn.jpg?1480194484", + "publisher": "Seven Seas Entertainment", + "description": "", "releaseDate": "2017-01-04", - "price": "$0" + "price": "$12.99" }, { "id": "5078946", @@ -1062,121 +1080,76 @@ "price": "$34.99" }, { - "id": "2359275", - "name": "U.S.Avengers #1 Reis Alaska State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2359275-usavengers-1-reis-alaska-state-variant.jpg?1480133120", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", - "releaseDate": "2017-01-04", - "price": "" - }, - { - "id": "7915526", - "name": "U.S.Avengers #1 Reis Florida State Variant", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "id": "5129075", + "name": "Moon Knight #10", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5129075-moon-knight-10.jpg?1483491252", "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "description": "“DEATH AND BIRTH” STARTS HERE! Marc Spector was born in Chicago, but where was Steven Grant born? This story goes deep into Spector’s past, picks up where LEMIRE and SMALLWOOD left off in New Egypt…...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "3710084", - "name": "U.S.Avengers #1 Reis Massachusetts State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3710084-usavengers-1-reis-massachusetts-state-variant.jpg?1480130136", + "id": "8433616", + "name": "Moon Knight #10 Crook Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8433616-moon-knight-10-crook-variant.jpg?1483108058", "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "description": "“DEATH AND BIRTH” STARTS HERE! Marc Spector was born in Chicago, but where was Steven Grant born? This story goes deep into Spector’s past, picks up where LEMIRE and SMALLWOOD left off in New Egypt…...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "9989772", - "name": "U.S.Avengers #1 Reis Puerto Rico Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9989772-usavengers-1-reis-puerto-rico-variant.jpg?1480132820", + "id": "9179780", + "name": "Moon Knight #10 Portacio Classic Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9179780-moon-knight-10-portacio-classic-variant.jpg?1483108169", "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "description": "“DEATH AND BIRTH” STARTS HERE! Marc Spector was born in Chicago, but where was Steven Grant born? This story goes deep into Spector’s past, picks up where LEMIRE and SMALLWOOD left off in New Egypt…...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "3874274", - "name": "U.S.Avengers #1 Reis South Carolina State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3874274-usavengers-1-reis-south-carolina-state-variant.jpg?1480129595", + "id": "1239489", + "name": "Moon Knight #10 Story Thus Far Now", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1239489-moon-knight-10-story-thus-far-now.jpg?1483108188", "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", - "releaseDate": "2017-01-04", - "price": "" - }, - { - "id": "8337934", - "name": "Yakuza Demon Killers #3 Subscription Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8337934-yakuza-demon-killers-3-subscription-variant.jpg?1478297878", - "publisher": "IDW Publishing", - "description": "Will Ochita's induction lead to corruption? A contentious decision within the Yakuza hierarchy leads to Ochita being inducted as their first female member. As the Yakuza quarrel, the opportunistic demon leader Gaikotsu...", + "description": "“DEATH AND BIRTH” STARTS HERE! Marc Spector was born in Chicago, but where was Steven Grant born? This story goes deep into Spector’s past, picks up where LEMIRE and SMALLWOOD left off in New Egypt…...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "1481243", - "name": "Archie Comics Digest #275", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1481243-archie-comics-digest-275.jpg?1489992418", - "publisher": "Archie Comics", - "description": "Brand new story! The new game 'Cosmo Go!' is all the rage and kids are running all over Riverdale trying to seize rare Cosmo characters to get the biggest prize of all - Cosmo himself! Pop Tate sees the value in...", - "releaseDate": "2017-01-04", - "price": "$4.99" - }, - { - "id": "2628089", - "name": "Chris Samnee Daredevil Artist Ed HC", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2628089-chris-samnee-daredevil-artist-ed-hc.jpg?1484408115", - "publisher": "IDW Publishing", - "description": "IDW Publishing launched the very first Artist's Edition in 2010. It was a bold concept that to date has garnered five consecutive Eisner Awards in the category of Best Archival Project. With the release of Chris Samnee's...", - "releaseDate": "2017-01-04", - "price": "" - }, - { - "id": "8666781", - "name": "DC Super Hero Girls: Past Times at Super Hero High Chapter #7", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8666781-dc-super-hero-girls-past-times-at-super-hero-high-chapter-7.jpg?1483557895", - "publisher": "DC Comics", - "description": "Batgirl and Harley Quinn are stranded…in the world of the Atomic Knights! Can they convince the knights and their giant dogs that they’re not working with the evil Vandal Savage?", - "releaseDate": "2017-01-04", - "price": "$0.99" - }, - { - "id": "9048092", - "name": "Eden's Fall TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9048092-edens-fall-tp.jpg?1483491252", - "publisher": "Top Cow Productions", - "description": "Top Cow combines three of its most provocative titles (THINK TANK, THE TITHE, POSTAL) in an unflinching fable of revenge and consequence. FBI Agent James Miller (THE TITHE) follows a sociopath into the off-the-grid town...", + "id": "4435488", + "name": "Morning Glories Vol. 10: Expulsion TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4435488-morning-glories-vol-10-expulsion-tp.jpg?1483491252", + "publisher": "Image Comics", + "description": "Features the 'Expulsion' arc and the blockbuster Season 2 finale! Casey takes a stand in the Student Council election, Guillaume challenges the headmaster in the Towerball finals, and Vanessa and Ian face off in...", "releaseDate": "2017-01-04", "price": "$14.99" }, { - "id": "3595214", - "name": "Jem and The Holograms #22 10 Copy incentive", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3595214-jem-and-the-holograms-22-10-copy-incentive.jpg?1481601331", + "id": "4443739", + "name": "My Little Pony: Friendship Is Magic Vol. 11 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4443739-my-little-pony-friendship-is-magic-vol-11-tp.jpg?1483491252", "publisher": "IDW Publishing", - "description": "THE STINGERS part 4! Jem and The Holograms new drummer is incredible and everyone knows it-too bad she's a spy working for The Misfits! What secrets will she discover when let into the inner sanctum of JEM?! As both...", + "description": "Rainbow Dash travels to a remote and dangerous location and finds her fellow Wonderbolt, Soarin, is about to undertake a dangerous mission. Will Dash be able to get over her ego help her fellow Pegasus?", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$19.99" }, { - "id": "6492931", - "name": "Marvel Free Previews #1", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6492931-marvel-free-previews-1.jpg?1484504122", - "publisher": "Marvel Comics", - "description": "Monsters Unleashed #1 is an advance look, at the full MONSTERS UNLEASHED PREVIEWS of… Monsters Unleashed #1 Avengers #1.MU The Uncanny Inhumans #1.MU Champions #1.MU Spiderman/Deadpool #1.MU Doctor Strange #1.MU All...", + "id": "2870681", + "name": "Nailbiter #28", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2870681-nailbiter-28.jpg?1476786785", + "publisher": "Image Comics", + "description": "The new Murder Store is having a grand reopening in Buckaroo! But a returning serial killer has other plans…", "releaseDate": "2017-01-04", - "price": "$Free" + "price": "$2.99" }, { - "id": "6816589", - "name": "Marvel Universe Ult Spider-Man vs. Sinister Six Digest Vol. 1 TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6816589-marvel-universe-ult-spider-man-vs-sinister-six-digest-vol-1-tp.jpg?1483491252", - "publisher": "Marvel Comics", - "description": "Featuring screen-capture images from MARVEL'S ULTIMATE SPIDER-MAN VS. THE SINISTER SIX! Spider-Man faces fearsome foes and finds fabulous friends! With Spider-Verse and Contest of Champions behind him, things are looking...", + "id": "8007309", + "name": "Naruto Vol. 17 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8007309-naruto-vol-17-tp.jpg?1483491252", + "publisher": "VIZ Media", + "description": "As the five leaders of the strongest villages in the ninja world meet to discuss the fate of their universe, plans are made that will affect Naruto deeply. The new Hokage, leader of Naruto's village, is not afraid to...", "releaseDate": "2017-01-04", - "price": "$9.99" + "price": "$14.99" }, { "id": "7001112", @@ -1188,868 +1161,859 @@ "price": "$39.99" }, { - "id": "7141772", - "name": "Nova #2 Chiang Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7141772-nova-2-chiang-variant.jpg?1481765237", - "publisher": "Marvel Comics", - "description": "THE RUMORS ARE TRUE! Richard Rider is back from the dead! Even better — he’s back in his Nova helmet! But Earth already HAS a Nova as its guardian, and Sam Alexander isn’t one to be replaced so easily…...", - "releaseDate": "2017-01-04", - "price": "$3.99" - }, - { - "id": "1714786", - "name": "Star Trek: Boldly Go #4 Marc Laming Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1714786-star-trek-boldly-go-4-marc-laming-variant.jpg?1483449408", - "publisher": "IDW Publishing", - "description": "Spock is gone, taken by an enemy unlike any Captain Kirk and his crew have faced before. War with the Romulan Empire is imminent. In the face of the ultimate no-win scenario, will the Federation survive? Don't miss the...", + "id": "4606166", + "name": "Nge Shinji Ikari Raising Project Omnibus Vol. 2 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4606166-nge-shinji-ikari-raising-project-omnibus-vol-2-tp.jpg?1483491252", + "publisher": "Dark Horse Comics", + "description": "Book Two introduces Mana Kirishima, the mysterious transfer student who might be more capable than even Rei and Asuka . . . and who's definitely more capable when it comes to making moves on Shinji! The four of them...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$19.99" }, { - "id": "6196070", - "name": "Star Trek: Boldly Go #4 Photo Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6196070-star-trek-boldly-go-4-photo-variant.jpg?1483449434", - "publisher": "IDW Publishing", - "description": "Spock is gone, taken by an enemy unlike any Captain Kirk and his crew have faced before. War with the Romulan Empire is imminent. In the face of the ultimate no-win scenario, will the Federation survive? Don't miss the...", + "id": "8250153", + "name": "Nightwing #12", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8250153-nightwing-12.jpg?1484922799", + "publisher": "DC Comics", + "description": "“BLUDHAVEN” part three! The body count in Blüdhaven continues to rise! Nightwing will have to team up with the Run-Offs to discover who the murderer is and clear the name of the Defacer. But before they...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$2.99" }, { - "id": "9344788", - "name": "The Incredible Hulk: Epic Collection - Future Imperfect TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9344788-the-incredible-hulk-epic-collection-future-imperfect-tp.jpg?1475778832", - "publisher": "Marvel Comics", - "description": "Witness the Incredible Hulk's terrifying future! Could our hero truly be destined to rule a ravaged world with a gamma fist as the despotic Maestro?! Or can a time-torn Bruce Banner change his own nightmarish fate? One...", + "id": "2338531", + "name": "Nightwing #12 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2338531-nightwing-12-variant-edition.jpg?1483586262", + "publisher": "DC Comics", + "description": "“BLUDHAVEN” part three! The body count in Blüdhaven continues to rise! Nightwing will have to team up with the Run-Offs to discover who the murderer is and clear the name of the Defacer. But before they...", "releaseDate": "2017-01-04", - "price": "$39.99" + "price": "$2.99" }, { - "id": "2997236", - "name": "The Shadow Glass TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2997236-the-shadow-glass-tp.jpg?1484021829", - "publisher": "Dark Horse Comics", - "description": "A young student to England's greatest occultist learns her real father is in league with the devil. When Rose finds out that the man who raised her isn't her father, she ignores his warnings about the terrible secrets...", + "id": "9923729", + "name": "Nisekoi: False Love Vol. 19", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9923729-nisekoi-false-love-vol-19.jpg?1483491252", + "publisher": "VIZ Media", + "description": "A laugh-out-loud story that features a fake love relationship between two heirs of rival gangs...plus, a mission to find out which girl actually holds the key to Raku's pendant—and his heart! Love triangle! Comedic...", "releaseDate": "2017-01-04", - "price": "$19.99" + "price": "$9.99" }, { - "id": "8281348", - "name": "U.S.Avengers #1 Christopher Action Figure Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8281348-usavengers-1-christopher-action-figure-variant.jpg?1483121558", + "id": "3777858", + "name": "Nova #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3777858-nova-2.jpg?1483780045", "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "description": "THE RUMORS ARE TRUE! Richard Rider is back from the dead! Even better — he’s back in his Nova helmet! But Earth already HAS a Nova as its guardian, and Sam Alexander isn’t one to be replaced so easily…...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "2056578", - "name": "U.S.Avengers #1 Reis Alabama State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2056578-usavengers-1-reis-alabama-state-variant.jpg?1480128762", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", - "releaseDate": "2017-01-04", - "price": "" - }, - { - "id": "1711688", - "name": "U.S.Avengers #1 Reis Illinois State Variant", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "id": "7141772", + "name": "Nova #2 Chiang Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7141772-nova-2-chiang-variant.jpg?1481765237", "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "description": "THE RUMORS ARE TRUE! Richard Rider is back from the dead! Even better — he’s back in his Nova helmet! But Earth already HAS a Nova as its guardian, and Sam Alexander isn’t one to be replaced so easily…...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "1405366", - "name": "U.S.Avengers #1 Reis Indiana State Variant", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "id": "6024995", + "name": "Old Man Logan #16", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6024995-old-man-logan-16.jpg?1483491252", "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "description": "IN SPACE, NO ONE CAN HEAR YOU SNIKT! After a disastrous rescue mission, LOGAN is trapped in the cold void of space, hunted by the BROOD! But…wait…Logan is also BACK IN THE WASTELANDS? How can this be? Has the...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "4200959", - "name": "U.S.Avengers #1 Reis Indiana State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4200959-usavengers-1-reis-indiana-state-variant.jpg?1478845789", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "1992660", + "name": "Optimus Prime #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1992660-optimus-prime-2.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "NEW CYBERTRON! A massive corkscrew-shaped space ship has drilled into Earth, bringing with it a surprising disruption to OPTIMUS PRIME's plans. Meanwhile-ARCEE fields a dangerous offer that may be too good to resist!...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "4377998", - "name": "U.S.Avengers #1 Reis Iowa State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4377998-usavengers-1-reis-iowa-state-variant.jpg?1480131907", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "9130403", + "name": "Optimus Prime #2 RI Cover", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9130403-optimus-prime-2-ri-cover.jpg?1483300631", + "publisher": "IDW Publishing", + "description": "NEW CYBERTRON! A massive corkscrew-shaped space ship has drilled into Earth, bringing with it a surprising disruption to OPTIMUS PRIME's plans. Meanwhile-ARCEE fields a dangerous offer that may be too good to resist!...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "6708353", - "name": "U.S.Avengers #1 Reis Kansas State Variant", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "7615356", + "name": "Optimus Prime #2 SUB-A Cover", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7615356-optimus-prime-2-sub-a-cover.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "NEW CYBERTRON! A massive corkscrew-shaped space ship has drilled into Earth, bringing with it a surprising disruption to OPTIMUS PRIME's plans. Meanwhile-ARCEE fields a dangerous offer that may be too good to resist!...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "6264890", - "name": "U.S.Avengers #1 Reis Louisiana State Variant", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "2994581", + "name": "Optimus Prime #2 SUB-B Cover", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2994581-optimus-prime-2-sub-b-cover.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "NEW CYBERTRON! A massive corkscrew-shaped space ship has drilled into Earth, bringing with it a surprising disruption to OPTIMUS PRIME's plans. Meanwhile-ARCEE fields a dangerous offer that may be too good to resist!...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "3880319", - "name": "U.S.Avengers #1 Reis Minnesota State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3880319-usavengers-1-reis-minnesota-state-variant.jpg?1480132111", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "6865898", + "name": "Pokemon Adv Black 2 White 2 Vol. 1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6865898-pokemon-adv-black-2-white-2-vol-1.jpg?1483491252", + "publisher": "VIZ Media", + "description": "Two years have passed since Team Plasma was defeated and Trainer Black was sucked into the Light Stone along with Legendary Pokémon Reshiram… Now Team Plasma is back to its wicked ways, controlling other people’s...", "releaseDate": "2017-01-04", - "price": "" + "price": "$9.99" }, { - "id": "5703394", - "name": "U.S.Avengers #1 Reis Missouri State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5703394-usavengers-1-reis-missouri-state-variant.jpg?1480131627", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "6324102", + "name": "Pokemon Xy Vol. 9", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6324102-pokemon-xy-vol-9.jpg?1483491252", + "publisher": "VIZ Media", + "description": "X was a Pokémon Trainer child prodigy. But now he's depressed and hides in his room avoiding everyone—including his best friend Y. An attack on their hometown by Legendary Pokémon Xerneas and Yveltal,...", "releaseDate": "2017-01-04", - "price": "" + "price": "$4.99" }, { - "id": "9838971", - "name": "U.S.Avengers #1 Reis New Mexico State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9838971-usavengers-1-reis-new-mexico-state-variant.jpg?1480132995", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "7734698", + "name": "Powerpuff Girls Vol. 1: Homecoming TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7734698-powerpuff-girls-vol-1-homecoming-tp.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Following the debut of their NEW hit Cartoon Network show, THE POWERPUFF GIRLS make a triumphant return to the world of comics! These stories, written by show-writers Jake Goldman and Haley Mancini, reintroduce us to the...", "releaseDate": "2017-01-04", - "price": "" + "price": "$12.99" }, { - "id": "4196214", - "name": "U.S.Avengers #1 Reis Ohio State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4196214-usavengers-1-reis-ohio-state-variant.jpg?1480130964", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "7485790", + "name": "Princess Ai Vol. 2: Lumination", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7485790-princess-ai-vol-2-lumination.jpg?1483491252", + "publisher": "Tokyopop", + "description": "We open on Ai, unconscious and sprawled sexily on a Tokyo street or alley, her clothes thrashed and torn. She gets up and wanders into the Tokyo night, confused and in shock and wondering, \"Where am I?\" Ai is holding...", "releaseDate": "2017-01-04", - "price": "" + "price": "$9.99" }, { - "id": "2792678", - "name": "U.S.Avengers #1 Reis Oklahoma State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2792678-usavengers-1-reis-oklahoma-state-variant.jpg?1480132887", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "1382034", + "name": "Princess Ai Vol. 3: Evolution", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1382034-princess-ai-vol-3-evolution.jpg?1483491252", + "publisher": "Tokyopop", + "description": "", "releaseDate": "2017-01-04", - "price": "" + "price": "$9.99" }, { - "id": "5963565", - "name": "U.S.Avengers #1 Reis Pennsylvania State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5963565-usavengers-1-reis-pennsylvania-state-variant.jpg?1480129770", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "4502371", + "name": "Project Superpowers the Owl TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4502371-project-superpowers-the-owl-tp.jpg?1483491252", + "publisher": "Dynamite", + "description": "Fear the shadows, the Owl has returned! Lost for fifty years in an ethereal limbo, the heroic adventurer of the 1940s has returned, cloaked in a winged costume and fueled by a fierce dedication to justice. In a violent and...", "releaseDate": "2017-01-04", - "price": "" + "price": "$15.99" }, { - "id": "4837090", - "name": "U.S.Avengers #1 Reis Virginia State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4837090-usavengers-1-reis-virginia-state-variant.jpg?1480128980", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "5262471", + "name": "Ragnarok #11", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5262471-ragnarok-11.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Thor Odinson and the Black Elf assassin, Regn, face off against the Lord of the Dead and his draugar in the Dark Tower, the citadel of his power that stands on the edge of Hel.", "releaseDate": "2017-01-04", - "price": "" + "price": "$4.99" }, { - "id": "1170618", - "name": "U.S.Avengers #1 Reis West Virginia State Variant", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "8374099", + "name": "Ragnarok #11 Subscription Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8374099-ragnarok-11-subscription-variant.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Thor Odinson and the Black Elf assassin, Regn, face off against the Lord of the Dead and his draugar in the Dark Tower, the citadel of his power that stands on the edge of Hel.", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "8262062", - "name": "Army of Darkness / Xena: Forever... And A Day #1 Nycc Exc Ed", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "Dynamite", - "description": "You're Xena the Warrior Princess and your thousand strong army has fallen to an implacable and ancient evil. What do you do? You suck it up and summon the only ally who stands any hope at all of helping you prevent the...", + "id": "9688670", + "name": "Renfield Tale of Madness TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9688670-renfield-tale-of-madness-tp.jpg?1483491252", + "publisher": "Caliber Comics", + "description": "Renfield tells a tale of gothic horror in this haunting and sophisticated story of the bug-eating prophet from Bram Stoker's Dracula. Confined to an insane asylum, Renfield is slowly consumed by madness from the 'Master...", "releaseDate": "2017-01-04", - "price": "" + "price": "$16.99" }, { - "id": "8886084", - "name": "Back To The Future: Citizen Brown TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8886084-back-to-the-future-citizen-brown-tp.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "Time-traveling into comics directly out of Telltale's 2010 smash-hit episodic videogame BACK TO THE FUTURE: THE GAME! When an empty time-traveling DeLorean suddenly shows up in 1986, Marty McFly quickly learns that his...", + "id": "6889739", + "name": "Rise of the Black Flame #5", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6889739-rise-of-the-black-flame-5.jpg?1483505423", + "publisher": "Dark Horse Comics", + "description": "The heroes’ search finally ends at the temple of the Black Flame cult, but they don’t arrive in time to stop what they find there.", "releaseDate": "2017-01-04", - "price": "$19.99" + "price": "$3.99" }, { - "id": "3776946", - "name": "Bloodlines TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3776946-bloodlines-tp.jpg?1482850988", - "publisher": "DC Comics", - "description": "When a meteor crashes to Earth, bringing with it an unspeakable alien presence that terrorizes a nearby small town, the lucky ones die first. As for the rest, they find themselves locked in a hellish struggle for control...", + "id": "8092345", + "name": "Rurouni Kenshin 3in1 Vol. 1 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8092345-rurouni-kenshin-3in1-vol-1-tp.jpg?1483491252", + "publisher": "VIZ Media", + "description": "One hundred and forty years ago in Kyoto, with the coming of the American 'Black Ships,' there arose a warrior who, felling men with his bloodstained blade, gained the name Hitokiri, or Manslayer! His killer blade...", "releaseDate": "2017-01-04", "price": "$14.99" }, { - "id": "6447744", - "name": "Deadpool the Duck #1 Variant Edition", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6447744-deadpool-the-duck-1-variant-edition.jpg?1483574028", - "publisher": "Marvel Comics", - "description": "What do you get when you take one cynical anthropomorphic duck (named Howard) and cross it with the smelliest (and most annoying) mercenary in the Marvel Universe? DEADPOOL THE DUCK! When Deadpool is sent on a mission from...", + "id": "2793270", + "name": "Saga #41", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2793270-saga-41.jpg?1490190820", + "publisher": "Image Comics", + "description": "“THE WAR FOR PHANG,” Part Five. \n\n\tAlana and Marko get their war on.", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$2.99" }, { - "id": "3736111", - "name": "Deaths Dark Angel #1 Exclusive Cover", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "American Mythology", - "description": "An American Comics Original! Returning after 30 years, this special edition cover was limited to just a tiny 325 copy print run.", + "id": "7945653", + "name": "Scarlet Witch #14", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7945653-scarlet-witch-14.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "A RACE AGAINST TIME TO SAVE WITCHES EVERYWHERE! WANDA’s latest journey for answers has her traveling through alternate dimensions! Amid perils new and old, Wanda, AGATHA and NATALYA will have to fight AIMLESS...", "releaseDate": "2017-01-04", - "price": "$15.00" + "price": "$3.99" }, { - "id": "1305238", - "name": "Faith #7 Cover B - David Lafuente", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1305238-faith-7-cover-b-david-lafuente.jpg?1483539845", - "publisher": "Valiant", - "description": "Haunted heroics! Faith Herbert has lost many allies throughout her life… Her mother. Her father. Even a fellow Renegade. Despite this, Los Angeles’ high-flying hero has always defined herself by more than tragedy....", + "id": "7966030", + "name": "Scooby-Doo, Where Are You? #77", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7966030-scooby-doo-where-are-you-77.jpg?1483497514", + "publisher": "DC Comics", + "description": "Scooby, Shaggy and the gang are checking out the excitement at a big surfing contest, but one thing they weren’t expecting to find was pirates! Fred and Daphne suit up to help uncover the culprit, but will they solve...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "3729379", - "name": "Franken Fran Vol. 4 Omnibus", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3729379-franken-fran-vol-4-omnibus.jpg?1483491252", - "publisher": "Seven Seas Entertainment", - "description": "Starting with the bolts that protrude from her head, Fran isn't exactly what you would call a normal girl, nor is the cast of horribly disfigured creatures who join her. Despite her Frankenstein-like ways, Fran cares...", + "id": "1026753", + "name": "Seraph of the End Vol. 11", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1026753-seraph-of-the-end-vol-11.jpg?1483491252", + "publisher": "VIZ Media", + "description": "Mika and Yuichiro are finally reunited! With Mika on the brink of death, Yui offers his blood to save his friend's life - which turns Mika into a full-fledged vampire! Meanwhile, the captured Guren is attempting to lead...", "releaseDate": "2017-01-04", - "price": "$19.99" + "price": "$9.99" }, { - "id": "2946107", - "name": "G.I. Joe: A Real American Hero #235 Subscription Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2946107-gi-joe-a-real-american-hero-235-subscription-variant.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "COBRA prepares for its next strike against G.I. JOE, and this time, the Real American Heroes won't see it coming!", + "id": "2518867", + "name": "Shade, The Changing Girl #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2518867-shade-the-changing-girl-4.jpg?1483584817", + "publisher": "Young Animal", + "description": "As Megan, the soul that Shade displaced, gets farther and farther away from Earth, Shade is starting to find things about her new planet and her new body that she really likes. For instance, there’s music. And also...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "1885703", - "name": "Grant Morrison's 18 Days #19 Singh Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1885703-grant-morrisons-18-days-19-singh-variant.jpg?1491565360", - "publisher": "Graphic India", - "description": "Grant Morrison's epic creation continues. The conclusion to the grand hunt! Abhimanyu and his cousin Gatok must hide in the dense jungles from Emperor Duryodhana's unstoppable assassins: the insidious Ashwatthama,...", + "id": "2464703", + "name": "Shade, The Changing Girl #4 Joëlle Jones Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2464703-shade-the-changing-girl-4-jolle-jones-variant.jpg?1483504487", + "publisher": "Young Animal", + "description": "As Megan, the soul that Shade displaced, gets farther and farther away from Earth, Shade is starting to find things about her new planet and her new body that she really likes. For instance, there’s music. And also...", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$3.99" }, { - "id": "8253883", - "name": "Jem and The Holograms #22 Subscription Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8253883-jem-and-the-holograms-22-subscription-variant.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "THE STINGERS part 4! Jem and The Holograms new drummer is incredible and everyone knows it-too bad she's a spy working for The Misfits! What secrets will she discover when let into the inner sanctum of JEM?! As both...", + "id": "7156707", + "name": "Sixsmiths", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7156707-sixsmiths.jpg?1483491252", + "publisher": "Caliber Comics", + "description": "The Sixsmiths are a family of Satanists who've suffered from the global recession. Now their lives are in turmoil: Dad needs a job; the twins need to survive the public school system; Mum needs to keep them all sane....", "releaseDate": "2017-01-04", - "price": "" + "price": "$16.99" }, { - "id": "9788714", - "name": "Justice League United Vol. 3: Reunited TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9788714-justice-league-united-vol-3-reunited-tp.jpg?1482851272", - "publisher": "DC Comics", - "description": "In these stories from JUSTICE LEAGUE UNITED #11-16 and an 8-page Sneak Peek story appearing in print for the first time, the team is transported into an eternal war between the forces of good and evil-but they'll need...", + "id": "5796858", + "name": "Skip Beat 3-in-1 Ed Vol. 12 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5796858-skip-beat-3-in-1-ed-vol-12-tp.jpg?1483491252", + "publisher": "VIZ Media", + "description": "Kyoko has realized that she has feelings for Ren, and it's horrible! She's convinced he'll be disgusted with her for not keeping her heart in check. And she's worried that the president of LME will catch...", "releaseDate": "2017-01-04", "price": "$14.99" }, { - "id": "5360153", - "name": "Mickey Mouse Mysterious Melody HC", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5360153-mickey-mouse-mysterious-melody-hc.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "What was life like for Mickey before 1928... before Hollywood stardom struck? In this riveting, phantasmagorical 'what-if' tale, we follow the Mouse from his humble origins-as Oswald Rabbit's screenwriter!-through...", + "id": "1539524", + "name": "Slapstick #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1539524-slapstick-2.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "Slapstick vs. Bro-Man! Who or what is Bro-Man? Well, look at the cover! He’s another cartoon-like character! Also, is it weird that Slapstick is hiding a mad scientist in his parents’ basement? Probably!", "releaseDate": "2017-01-04", - "price": "$14.99" + "price": "$3.99" }, { - "id": "1487818", - "name": "Monster Musume: I ♥ Monster Girls Vo. 03 GN", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1487818-monster-musume-i-monster-girls-vo-03-gn.jpg?1480194484", - "publisher": "Seven Seas Entertainment", - "description": "", + "id": "5481831", + "name": "Slapstick #2 Brown Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5481831-slapstick-2-brown-variant.jpg?1483112368", + "publisher": "Marvel Comics", + "description": "Slapstick vs. Bro-Man! Who or what is Bro-Man? Well, look at the cover! He’s another cartoon-like character! Also, is it weird that Slapstick is hiding a mad scientist in his parents’ basement? Probably!", "releaseDate": "2017-01-04", - "price": "$12.99" + "price": "$3.99" }, { - "id": "8374099", - "name": "Ragnarok #11 Subscription Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8374099-ragnarok-11-subscription-variant.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "Thor Odinson and the Black Elf assassin, Regn, face off against the Lord of the Dead and his draugar in the Dark Tower, the citadel of his power that stands on the edge of Hel.", + "id": "7318109", + "name": "Souls Eternal Vol. 2: The Children's War, Part 1 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7318109-souls-eternal-vol-2-the-childrens-war-part-1-tp.jpg?1484100047", + "publisher": "Hashtag Comics", + "description": "Emma summons Halahar The Swordsman to battle, but at what cost? David is confronted by the Dark Knight, and we learn that there is more to the Izanami Children than we ever imagined!", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$9.99" }, { - "id": "3029112", - "name": "The Avengers #3 Tedesco Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3029112-the-avengers-3-tedesco-variant.jpg?1488120739", + "id": "4825708", + "name": "Spider-Man 2099 #19", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4825708-spider-man-2099-19.jpg?1483491252", "publisher": "Marvel Comics", - "description": "Kang War Three ends in a most unexpected manner! The Firewall of Time has been shattered — and now the Avengers are faced with the dangers it held back!", + "description": "Spidey’s mission to take down the terrorists who left his girlfriend in a coma isn’t going very well... THE FIST, an extremist offshoot of THE HAND, has teamed up with an ancient, evil goddess and literally started...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "8901444", - "name": "The Unworthy Thor #3 Lupacchino Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8901444-the-unworthy-thor-3-lupacchino-variant.jpg?1483110956", - "publisher": "Marvel Comics", - "description": "The Odinson and Beta Ray Bill continue their quest to take the hammer of the Ultimate Thor from the clutches of the Collector. Elsewhere, a mysterious and powerful cosmic entity has learned of the weapon’s location...", + "id": "8146900", + "name": "Squarriors: Summer #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8146900-squarriors-summer-2.jpg?1483505154", + "publisher": "Devil's Due Publishing", + "description": "The Maw and Amoni begin their march to the Tin Kin compound, Tree Jump and Crash retrace Pasha's Southern journey, and the Tin Kin must decide whether to shelter or refuse a group of unusual refugees.", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "3133996", - "name": "U.S.Avengers #1 Blank Variant", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "6104235", + "name": "Star Trek: Boldly Go #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6104235-star-trek-boldly-go-4.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Spock is gone, taken by an enemy unlike any Captain Kirk and his crew have faced before. War with the Romulan Empire is imminent. In the face of the ultimate no-win scenario, will the Federation survive? Don't miss the...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "5443593", - "name": "U.S.Avengers #1 Reis Arizona State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5443593-usavengers-1-reis-arizona-state-variant.jpg?1480133057", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "1714786", + "name": "Star Trek: Boldly Go #4 Marc Laming Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1714786-star-trek-boldly-go-4-marc-laming-variant.jpg?1483449408", + "publisher": "IDW Publishing", + "description": "Spock is gone, taken by an enemy unlike any Captain Kirk and his crew have faced before. War with the Romulan Empire is imminent. In the face of the ultimate no-win scenario, will the Federation survive? Don't miss the...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "3261459", - "name": "U.S.Avengers #1 Reis Colorado State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3261459-usavengers-1-reis-colorado-state-variant.jpg?1480132490", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "6196070", + "name": "Star Trek: Boldly Go #4 Photo Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6196070-star-trek-boldly-go-4-photo-variant.jpg?1483449434", + "publisher": "IDW Publishing", + "description": "Spock is gone, taken by an enemy unlike any Captain Kirk and his crew have faced before. War with the Romulan Empire is imminent. In the face of the ultimate no-win scenario, will the Federation survive? Don't miss the...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "5158330", - "name": "U.S.Avengers #1 Reis Hawaii State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5158330-usavengers-1-reis-hawaii-state-variant.jpg?1480133154", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "1248911", + "name": "Star Trek: Boldly Go #4 Subscription Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1248911-star-trek-boldly-go-4-subscription-variant.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Spock is gone, taken by an enemy unlike any Captain Kirk and his crew have faced before. War with the Romulan Empire is imminent. In the face of the ultimate no-win scenario, will the Federation survive? Don't miss the...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "4765792", - "name": "U.S.Avengers #1 Reis Idaho State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4765792-usavengers-1-reis-idaho-state-variant.jpg?1480132697", + "id": "6916943", + "name": "Star Wars: Han Solo TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6916943-star-wars-han-solo-tp.jpg?1483491252", "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "description": "Everyone's favorite scoundrel goes Solo! Han is given a top-secret undercover mission for the Rebellion: rescuing several informants and spies! His cover for the assignment? Only the biggest and most infamous starship...", + "releaseDate": "2017-01-04", + "price": "$16.99" + }, + { + "id": "8322314", + "name": "Steam Wars Bounty Hunters Hell For Hire #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8322314-steam-wars-bounty-hunters-hell-for-hire-1.jpg?1483491252", + "publisher": "Antarctic Press", + "description": "Pursued by the Hegemonic Crux's mounted cavalry, a desperate rebel noble heads for cover in the Dead Forest. The troopers believe they have the target at their mercy, but the predators will soon become prey themselves...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "2776313", - "name": "U.S.Avengers #1 Reis Kentucky State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2776313-usavengers-1-reis-kentucky-state-variant.jpg?1480130768", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "5037853", + "name": "Strawberry Shortcake #8", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5037853-strawberry-shortcake-8.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "The rivalry between Strawberry Shortcake and the Purple Pie Man has escalated into a hold-nothing-back race to the finish! Strawberry will need her friends, her food savvy and a little luck to stay ahead of her ruthless...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "7929259", - "name": "U.S.Avengers #1 Reis Louisiana State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7929259-usavengers-1-reis-louisiana-state-variant.jpg?1478845684", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "5503697", + "name": "Strawberry Shortcake #8 Subscription Variant A", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5503697-strawberry-shortcake-8-subscription-variant-a.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "The rivalry between Strawberry Shortcake and the Purple Pie Man has escalated into a hold-nothing-back race to the finish! Strawberry will need her friends, her food savvy and a little luck to stay ahead of her ruthless...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "1777863", - "name": "U.S.Avengers #1 Reis Maine State Variant", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "8063300", + "name": "Strawberry Shortcake #8 Subscription Variant B", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8063300-strawberry-shortcake-8-subscription-variant-b.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "The rivalry between Strawberry Shortcake and the Purple Pie Man has escalated into a hold-nothing-back race to the finish! Strawberry will need her friends, her food savvy and a little luck to stay ahead of her ruthless...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "3070352", - "name": "U.S.Avengers #1 Reis Maryland State Variant", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "9586230", + "name": "Superman #14", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9586230-superman-14.jpg?1484922748", + "publisher": "DC Comics", + "description": "“MULTIPLICITY” part one! The New Super-Man of China has been taken! The Red Son Superman of Earth-30 has been beaten! And who knows what’s happened to Sunshine Superman! Someone is collecting Supermen across...", "releaseDate": "2017-01-04", - "price": "" + "price": "$2.99" }, { - "id": "8374554", - "name": "U.S.Avengers #1 Reis Mississippi State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8374554-usavengers-1-reis-mississippi-state-variant.jpg?1480131111", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "1701102", + "name": "Superman #14 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1701102-superman-14-variant-edition.jpg?1483491252", + "publisher": "DC Comics", + "description": "“MULTIPLICITY” part one! The New Super-Man of China has been taken! The Red Son Superman of Earth-30 has been beaten! And who knows what’s happened to Sunshine Superman! Someone is collecting Supermen across...", "releaseDate": "2017-01-04", - "price": "" + "price": "$2.99" }, { - "id": "6451138", - "name": "U.S.Avengers #1 Reis Montana State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6451138-usavengers-1-reis-montana-state-variant.jpg?1480132602", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "9798463", + "name": "Superman Vol. 1: Son Of Superman TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9798463-superman-vol-1-son-of-superman-tp.jpg?1483855271", + "publisher": "DC Comics", + "description": "After the stunning events of DC REBIRTH, the world is left without Superman! Luckily, there is another Man of Steel to fill his shoes: the pre-Flashpoint Kal-El! However, can this new Superman protect the world while raising...", "releaseDate": "2017-01-04", - "price": "" + "price": "$16.99" }, { - "id": "1844047", - "name": "U.S.Avengers #1 Reis Nebraska State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1844047-usavengers-1-reis-nebraska-state-variant.jpg?1480132445", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "8759009", + "name": "The Autumnlands: Tooth & Claw #14", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8759009-the-autumnlands-tooth-claw-14.jpg?1483491252", + "publisher": "Image Comics", + "description": "END OF STORY ARC.\n\n\tEverything goes BOOM. Our travelers have to pick up the pieces in the final chapter of THE AUTUMNLANDS: WOODLAND CREATURES.", "releaseDate": "2017-01-04", - "price": "" + "price": "$2.99" }, { - "id": "5314998", - "name": "U.S.Avengers #1 Reis Nevada State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5314998-usavengers-1-reis-nevada-state-variant.jpg?1480132373", + "id": "9172708", + "name": "The Avengers #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9172708-the-avengers-3.jpg?1488120739", "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "description": "Kang War Three ends in a most unexpected manner! The Firewall of Time has been shattered — and now the Avengers are faced with the dangers it held back!", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "1518666", - "name": "U.S.Avengers #1 Reis New Hampshire State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1518666-usavengers-1-reis-new-hampshire-state-variant.jpg?1480130233", + "id": "3029112", + "name": "The Avengers #3 Tedesco Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3029112-the-avengers-3-tedesco-variant.jpg?1488120739", "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "description": "Kang War Three ends in a most unexpected manner! The Firewall of Time has been shattered — and now the Avengers are faced with the dangers it held back!", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "3255654", - "name": "U.S.Avengers #1 Reis North Dakota State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3255654-usavengers-1-reis-north-dakota-state-variant.jpg?1480132540", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "9692907", + "name": "The Demon Prince of Momochi House Vol. 7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9692907-the-demon-prince-of-momochi-house-vol-7.jpg?1483491252", + "publisher": "VIZ Media", + "description": "Himari Momochi inherits Momochi House, an estate which exists on the barrier between the human and spiritual realms. Aoi's powers have weakend, and he begins to recall fragments of his childhood. Someone from the past...", "releaseDate": "2017-01-04", - "price": "" + "price": "$9.99" }, { - "id": "7135792", - "name": "U.S.Avengers #1 Reis Oregon State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7135792-usavengers-1-reis-oregon-state-variant.jpg?1480132198", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "8652905", + "name": "The Fall and Rise of Captain Atom #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8652905-the-fall-and-rise-of-captain-atom-1.jpg?1483497735", + "publisher": "DC Comics", + "description": "“Blowback” part one! Captain Atom hasn’t been seen or heard from in years—and even if you think you know what happened to him…you’re wrong! But you’re not alone. To this day, no...", "releaseDate": "2017-01-04", - "price": "" + "price": "$2.99" }, { - "id": "6800107", - "name": "U.S.Avengers #1 Reis Rhode Island State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6800107-usavengers-1-reis-rhode-island-state-variant.jpg?1480129658", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "9959464", + "name": "The Fall and Rise of Captain Atom #1 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9959464-the-fall-and-rise-of-captain-atom-1-variant-edition.jpg?1483497794", + "publisher": "DC Comics", + "description": "“Blowback” part one! Captain Atom hasn’t been seen or heard from in years—and even if you think you know what happened to him…you’re wrong! But you’re not alone. To this day, no...", "releaseDate": "2017-01-04", - "price": "" + "price": "$2.99" }, { - "id": "8041493", - "name": "U.S.Avengers #1 Reis South Dakota State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8041493-usavengers-1-reis-south-dakota-state-variant.jpg?1480129458", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "2335868", + "name": "The Flintstones #7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2335868-the-flintstones-7.jpg?1483491252", + "publisher": "DC Comics", + "description": "The Great Gazoo is working on his report card for the human race, and so far humanity has earned a big fat \"F.\" When the Church of Gerard starts selling Indulgences, Bedrock descends into violence and debauchery....", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "2227099", - "name": "U.S.Avengers #1 Reis Tennessee State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2227099-usavengers-1-reis-tennessee-state-variant.jpg?1480129358", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "2891097", + "name": "The Flintstones #7 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2891097-the-flintstones-7-variant-edition.jpg?1483491252", + "publisher": "DC Comics", + "description": "The Great Gazoo is working on his report card for the human race, and so far humanity has earned a big fat \"F.\" When the Church of Gerard starts selling Indulgences, Bedrock descends into violence and debauchery....", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "6080733", - "name": "U.S.Avengers #1 Reis Utah State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6080733-usavengers-1-reis-utah-state-variant.jpg?1480129173", + "id": "4858558", + "name": "The Incredible Hulk Epic Collection: Future Imperfect TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4858558-the-incredible-hulk-epic-collection-future-imperfect-tp.jpg?1483491252", "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "description": "Witness the Incredible Hulk's terrifying future! Could our hero truly be destined to rule a ravaged world with a gamma fist as the despotic Maestro?! Or can a time-torn Bruce Banner change his own nightmarish fate? One...", "releaseDate": "2017-01-04", - "price": "" + "price": "$39.99" }, { - "id": "1158320", - "name": "U.S.Avengers #1 Reis Vermont State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1158320-usavengers-1-reis-vermont-state-variant.jpg?1480129037", + "id": "9344788", + "name": "The Incredible Hulk: Epic Collection - Future Imperfect TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9344788-the-incredible-hulk-epic-collection-future-imperfect-tp.jpg?1475778832", "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "description": "Witness the Incredible Hulk's terrifying future! Could our hero truly be destined to rule a ravaged world with a gamma fist as the despotic Maestro?! Or can a time-torn Bruce Banner change his own nightmarish fate? One...", "releaseDate": "2017-01-04", - "price": "" + "price": "$39.99" }, { - "id": "2996064", - "name": "U.S.Avengers #1 Reis Washington DC Variant", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "id": "2997236", + "name": "The Shadow Glass TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2997236-the-shadow-glass-tp.jpg?1484021829", + "publisher": "Dark Horse Comics", + "description": "A young student to England's greatest occultist learns her real father is in league with the devil. When Rose finds out that the man who raised her isn't her father, she ignores his warnings about the terrible secrets...", "releaseDate": "2017-01-04", - "price": "" + "price": "$19.99" }, { - "id": "9210149", - "name": "U.S.Avengers #1 Reis Washington State Variant", + "id": "6034447", + "name": "The Smurfs Anthology Vol. 4 HC", "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "publisher": "Papercutz", + "description": "Another iconic Smurf, The Smurf Apprentice, gets the Anthology treatment! A smurf wants to emulate Papa Smurf, and decides the best way to do so would be to practice magic. So, the smurf sneaks into Gargamel's lab and steals...", "releaseDate": "2017-01-04", - "price": "" + "price": "$19.99" }, { - "id": "4767280", - "name": "U.S.Avengers #1 Stegman Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4767280-usavengers-1-stegman-variant.jpg?1483121609", + "id": "7228953", + "name": "The Unstoppable Wasp #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7228953-the-unstoppable-wasp-1.jpg?1486191873", "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "8967972", - "name": "U.S.Avengers #1 XCI Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8967972-usavengers-1-xci-variant.jpg?1483121648", + "id": "9946352", + "name": "The Unstoppable Wasp #1 Blank Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9946352-the-unstoppable-wasp-1-blank-variant.jpg?1483111315", "publisher": "Marvel Comics", - "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "9266415", - "name": "2000 AD #2012", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9266415-2000-ad-2012.jpg?1485269508", - "publisher": "Rebellion", - "description": "Judge Dredd: Deep in the Heart (Pt1)\n\n\tKingmaker (Pt2)\n\n\tThe Order: Wyrm War (Pt2)\n\n\tHope ...for the Future (Pt2)\n\n\tKingdom: As it is in Heaven (Pt2)", - "releaseDate": "2017-01-04", - "price": "$2.99" - }, - { - "id": "9408111", - "name": "A&A #11 Cover B - Marc Laming", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9408111-aa-11-cover-b-marc-laming.jpg?1483540126", - "publisher": "Valiant", - "description": "Freaky fracas! Obadiah Archer: Skilled marksmen, trained fi ghter, and...deranged circus freak?! Through the unfathomable forces of nature, Archer and Gub Gub - the pint-sized and deranged clone of Armstrong - have swapped...", + "id": "7796681", + "name": "The Unstoppable Wasp #1 Christopher Action Figure Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7796681-the-unstoppable-wasp-1-christopher-action-figure-variant.jpg?1483111938", + "publisher": "Marvel Comics", + "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "3137328", - "name": "Adventure Time #60 Subscription Le Cover", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3137328-adventure-time-60-subscription-le-cover.jpg?1483491252", - "publisher": "BOOM! Studios", - "description": "Finn gets into the dungeon-making scene and meets fellow dungeon masters, some of whom are villains from Finn's past!", + "id": "9635584", + "name": "The Unstoppable Wasp #1 Hip-Hop Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9635584-the-unstoppable-wasp-1-hip-hop-variant.jpg?1483112014", + "publisher": "Marvel Comics", + "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "7997604", - "name": "Archie 75th Anniversary Digest #5", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7997604-archie-75th-anniversary-digest-5.jpg?1483505453", - "publisher": "Archie Comics", - "description": "Celebrate Archie's 75th anniversary in a special way with this commemorative digest! This issue is jam-packed some of the best stories featuring Archie, Betty, and Veronica and even more of the gals of Riverdale, bonus...", + "id": "8748748", + "name": "The Unstoppable Wasp #1 Park Movie Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8748748-the-unstoppable-wasp-1-park-movie-variant.jpg?1483110637", + "publisher": "Marvel Comics", + "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", "releaseDate": "2017-01-04", - "price": "$6.99" + "price": "$3.99" }, { - "id": "5715291", - "name": "Attack On Titan Vol. 20 TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5715291-attack-on-titan-vol-20-tp.jpg?1482882160", - "publisher": "Kodansha Comics", - "description": "FACING ANNIHILATION The Survey Corps's quest for the truth of the world inside the Walls has brought them back to Titan-infested Shiganshina District, a mere stone's throw from Eren's childhood home. They have...", + "id": "1734378", + "name": "The Unstoppable Wasp #1 Torque Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1734378-the-unstoppable-wasp-1-torque-variant.jpg?1483111376", + "publisher": "Marvel Comics", + "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", "releaseDate": "2017-01-04", - "price": "$10.99" + "price": "$3.99" }, { - "id": "1607215", - "name": "Betty Boop #1 Nycc Exc Ed", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "Dynamite", - "description": "The most famous female cartoon star of all is back - and Dynamite has her! All-new adventures of Betty Boop (with her pals Koko the Clown and Bimbo, natch!) by award-winning writer Roger Langridge and Gis", + "id": "4876873", + "name": "The Unstoppable Wasp #1 Young Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4876873-the-unstoppable-wasp-1-young-variant.jpg?1483111355", + "publisher": "Marvel Comics", + "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", "releaseDate": "2017-01-04", - "price": "" + "price": "$3.99" }, { - "id": "5054211", - "name": "Bizenghast 3in1 Vol. 1: Special Collector Ed", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5054211-bizenghast-3in1-vol-1-special-collector-ed.jpg?1482882163", - "publisher": "Tokyopop", - "description": "When a young girl moves to the forgotten town of Bizenghast, she uncovers a terrifying collection of lost souls that leads her to the brink of insanity. One thing that becomes painfully clear: The residences of Bizenghast...", + "id": "9959237", + "name": "The Unworthy Thor #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9959237-the-unworthy-thor-3.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "The Odinson and Beta Ray Bill continue their quest to take the hammer of the Ultimate Thor from the clutches of the Collector. Elsewhere, a mysterious and powerful cosmic entity has learned of the weapon’s location...", "releaseDate": "2017-01-04", - "price": "$19.99" + "price": "$3.99" }, { - "id": "4377170", - "name": "Deadpool: Too Soon? #4 Robson Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4377170-deadpool-too-soon-4-robson-variant.jpg?1483109509", + "id": "8901444", + "name": "The Unworthy Thor #3 Lupacchino Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8901444-the-unworthy-thor-3-lupacchino-variant.jpg?1483110956", "publisher": "Marvel Comics", - "description": "Someone has been murdering all of Deadpool’s friends – from Forbush Man to Rocket and Groot! Now Wade Wilson is down to his final suspects and you’ll never guess who it is! This Marvel Universe murder mystery...", + "description": "The Odinson and Beta Ray Bill continue their quest to take the hammer of the Ultimate Thor from the clutches of the Collector. Elsewhere, a mysterious and powerful cosmic entity has learned of the weapon’s location...", "releaseDate": "2017-01-04", - "price": "$4.99" + "price": "$3.99" }, { - "id": "8926436", - "name": "Doctor Who: The Eleventh Doctor - Year Three #1 Cover B Photo", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8926436-doctor-who-the-eleventh-doctor-year-three-1-cover-b-photo.jpg?1484021813", - "publisher": "Titan Books", - "description": "Same great creators, whole new flavor! The eleventh Doctor begins his blockbuster third year with writer Rob Williams (Suicide Squad) and series artists Simon Fraser and Leandro Casco in the hot seat! Year Three unfolds...", + "id": "6185482", + "name": "The Unworthy Thor #3 Sook Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6185482-the-unworthy-thor-3-sook-variant.jpg?1483110969", + "publisher": "Marvel Comics", + "description": "The Odinson and Beta Ray Bill continue their quest to take the hammer of the Ultimate Thor from the clutches of the Collector. Elsewhere, a mysterious and powerful cosmic entity has learned of the weapon’s location...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "4144896", - "name": "Doctor Who: The Eleventh Doctor - Year Three #1 Cover C Question 6", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4144896-doctor-who-the-eleventh-doctor-year-three-1-cover-c-question-6.jpg?1484056035", - "publisher": "Titan Books", - "description": "Same great creators, whole new flavor! The eleventh Doctor begins his blockbuster third year with writer Rob Williams (Suicide Squad) and series artists Simon Fraser and Leandro Casco in the hot seat! Year Three unfolds...", + "id": "3614432", + "name": "The Walking Dead #162", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3614432-the-walking-dead-162.jpg?1476788672", + "publisher": "Image Comics", + "description": "END OF STORY ARC\n\t“THE WHISPERER WAR,” Conclusion", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$2.99" }, { - "id": "4842197", - "name": "Doctor Who: The Twelfth Doctor - Year Two #13 Cover B Photo", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4842197-doctor-who-the-twelfth-doctor-year-two-13-cover-b-photo.jpg?1484021815", - "publisher": "Titan Books", - "description": "A French swordswoman, dark matter monsters, alternate universes, swashbuckling adventure and symbiotic intrigue - all just another Wednesday for the Doctor! But when you throw in secret police, an alien takeover of the aristocracy,...", + "id": "5373679", + "name": "The Walking Dead #162 Cover B Connecting Variant Adams & Fairbairn", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5373679-the-walking-dead-162-cover-b-connecting-variant-adams-fairbairn.jpg?1486006026", + "publisher": "Image Comics", + "description": "END OF STORY ARC\n\t“THE WHISPERER WAR,” Conclusion", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$2.99" }, { - "id": "8825311", - "name": "Donald & Mickey Magic Kingdom Collection TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8825311-donald-mickey-magic-kingdom-collection-tp.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "Sixty years of Disney Parks-who knew? Now IDW is celebrating with decades of Disney's classic Park-themed adventure comics! Carl Barks' Scrooge McDuck and Donald travel from the Mark Twain Riverboat to the top of...", + "id": "8222681", + "name": "The Wicked + The Divine #25", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8222681-the-wicked-the-divine-25.jpg?1484803815", + "publisher": "Image Comics", + "description": "“IMPERIAL PHASE (I),” Part Three\n\tThe comic that says, “What could possibly go wrong?” and then looks at the camera and stares until we all start crying releases another issue.", "releaseDate": "2017-01-04", - "price": "$12.99" + "price": "$3.50" }, { - "id": "7849540", - "name": "Erb Land That Time Forgot #1 Antique Signed Cover", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "American Mythology", - "description": "One hundred years ago, Bowen Tyler, a handful of British allies, and the crew of a German U-33 submarine were lost at sea. What they discovered was something that defied time, and all of known science: the island of Caspak!...", + "id": "1158869", + "name": "The Wicked + The Divine #25 Cover B Lenox", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1158869-the-wicked-the-divine-25-cover-b-lenox.jpg?1483491252", + "publisher": "Image Comics", + "description": "“IMPERIAL PHASE (I),” Part Three\n\tThe comic that says, “What could possibly go wrong?” and then looks at the camera and stares until we all start crying releases another issue.", "releaseDate": "2017-01-04", - "price": "$19.99" + "price": "$3.50" }, { - "id": "9033694", - "name": "Faith #7 Cover C - Philip Tan", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9033694-faith-7-cover-c-philip-tan.jpg?1483539891", - "publisher": "Valiant", - "description": "Haunted heroics! Faith Herbert has lost many allies throughout her life… Her mother. Her father. Even a fellow Renegade. Despite this, Los Angeles’ high-flying hero has always defined herself by more than tragedy....", + "id": "8807756", + "name": "Tower of Comic Book Freaks", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8807756-tower-of-comic-book-freaks.jpg?1483491252", + "publisher": "Caliber Comics", + "description": "July 4, 1971. Five naive young men hit New York for love, sex, art, and comic books. What they encounter is the pivotal time when comics change from a business to an art form and the group meet artist Allan Caldwell, blacklisted...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$18.99" }, { - "id": "6723039", - "name": "Green Ghost Declassified", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6723039-green-ghost-declassified.jpg?1482882177", - "publisher": "Moonstone", - "description": "The Green Ghost - magician sleuth George Chance - returns! Once a debunker of the supernatural, the Green Ghost terrorized criminals with his horrific skull-face and wraithlike abilities. But criminologist Chance came back...", + "id": "2689950", + "name": "Twin Star Exorcists Vol. 7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2689950-twin-star-exorcists-vol-7.jpg?1483491252", + "publisher": "VIZ Media", + "description": "Rokuro and Benio are extraordinary exorcists fated to marry and birth the ultimate spiritual warrior—but can they get along for even one minute? Rokuro dreams of becoming anything but an exorcist! Then mysterious Benio...", "releaseDate": "2017-01-04", - "price": "$14.99" + "price": "$9.99" }, { - "id": "7467432", - "name": "Hawkeye #2 Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7467432-hawkeye-2-variant.jpg?1483490897", + "id": "9876900", + "name": "U.S.Avengers #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9876900-usavengers-1.jpg?1484922741", "publisher": "Marvel Comics", - "description": "Solve first case as a P.I. – check. Make new friends – working on it. Realize that first case isn’t quite solved and that there’s a much larger conspiracy at work – aw, dang! Kate Bishop’s...", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "6414040", - "name": "Kolchak Forgotten Lore of Edgar Allen Poe", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6414040-kolchak-forgotten-lore-of-edgar-allen-poe.jpg?1482882183", - "publisher": "Moonstone", - "description": "From tell-tale hearts and premature burials to black cats and the Red Death, reporter Carl Kolchak grapples with deepening horror and madness as events from Edgar Allan Poe's tales of mystery and imagination come to...", + "id": "3133996", + "name": "U.S.Avengers #1 Blank Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$11.99" + "price": "" }, { - "id": "2119416", - "name": "Life & Adventures of Santa Claus: Illus Eric Shanower HC", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2119416-life-adventures-of-santa-claus-illus-eric-shanower-hc.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "Both of L. Frank Baum's classic Santa Claus tales are collected here: The Life and Adventures of Santa Claus and A Kidnapped Santa Claus, with with beautiful spot illustrations and cover art by Eisner Award-winning comics...", + "id": "2959951", + "name": "U.S.Avengers #1 Casanova Hip Hop Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2959951-usavengers-1-casanova-hip-hop-variant.jpg?1483121625", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$16.99" + "price": "$3.99" }, { - "id": "3548052", - "name": "Marry Me #1", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3548052-marry-me-1.jpg?1483637522", - "publisher": "Other", - "description": "Stasia is a world-famous pop star who is so frustrated with her love life that she accepts the proposal of a random fan holding a MARRY ME sign at one of her concerts. After she says yes, what happens next? Find out in this...", + "id": "8281348", + "name": "U.S.Avengers #1 Christopher Action Figure Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8281348-usavengers-1-christopher-action-figure-variant.jpg?1483121558", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "3977289", - "name": "Masked #2 Cover D", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3977289-masked-2-cover-d.jpg?1484021845", - "publisher": "Titan Books", - "description": "Frank Braffort has caught the attention of the Government officials working most closely with the mysterious anomalies populating the city. With little to go on, but mounting pressure as the anomalies take on more extreme...", + "id": "4220769", + "name": "U.S.Avengers #1 REIS UNITED KINGDOM VARIANT", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4220769-usavengers-1-reis-united-kingdom-variant.jpg?1483806526", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "4076398", - "name": "Mickey Mouse #16 Subscription Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4076398-mickey-mouse-16-subscription-variant.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "'Darkenblot,' Part 1 of 3! The futuristic city of Avantgarde has an awesome robot police force-but it's just become the Phantom Blot's private army! Can Mickey brave high-tech horrors to stop his old foe?...", + "id": "2056578", + "name": "U.S.Avengers #1 Reis Alabama State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2056578-usavengers-1-reis-alabama-state-variant.jpg?1480128762", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "8007309", - "name": "Naruto Vol. 17 TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8007309-naruto-vol-17-tp.jpg?1483491252", - "publisher": "VIZ Media", - "description": "As the five leaders of the strongest villages in the ninja world meet to discuss the fate of their universe, plans are made that will affect Naruto deeply. The new Hokage, leader of Naruto's village, is not afraid to...", + "id": "2359275", + "name": "U.S.Avengers #1 Reis Alaska State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2359275-usavengers-1-reis-alaska-state-variant.jpg?1480133120", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$14.99" + "price": "" }, { - "id": "6865898", - "name": "Pokemon Adv Black 2 White 2 Vol. 1", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6865898-pokemon-adv-black-2-white-2-vol-1.jpg?1483491252", - "publisher": "VIZ Media", - "description": "Two years have passed since Team Plasma was defeated and Trainer Black was sucked into the Light Stone along with Legendary Pokémon Reshiram… Now Team Plasma is back to its wicked ways, controlling other people’s...", + "id": "5443593", + "name": "U.S.Avengers #1 Reis Arizona State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5443593-usavengers-1-reis-arizona-state-variant.jpg?1480133057", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$9.99" + "price": "" }, { - "id": "6324102", - "name": "Pokemon Xy Vol. 9", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6324102-pokemon-xy-vol-9.jpg?1483491252", - "publisher": "VIZ Media", - "description": "X was a Pokémon Trainer child prodigy. But now he's depressed and hides in his room avoiding everyone—including his best friend Y. An attack on their hometown by Legendary Pokémon Xerneas and Yveltal,...", + "id": "8952055", + "name": "U.S.Avengers #1 Reis Arkansas State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8952055-usavengers-1-reis-arkansas-state-variant.jpg?1483586268", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$4.99" + "price": "$3.99" }, { - "id": "7734698", - "name": "Powerpuff Girls Vol. 1: Homecoming TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7734698-powerpuff-girls-vol-1-homecoming-tp.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "Following the debut of their NEW hit Cartoon Network show, THE POWERPUFF GIRLS make a triumphant return to the world of comics! These stories, written by show-writers Jake Goldman and Haley Mancini, reintroduce us to the...", + "id": "4514148", + "name": "U.S.Avengers #1 Reis California State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4514148-usavengers-1-reis-california-state-variant.jpg?1478844489", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "6827446", + "name": "U.S.Avengers #1 Reis Canada Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6827446-usavengers-1-reis-canada-variant.jpg?1479943860", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$12.99" + "price": "" }, { - "id": "4502371", - "name": "Project Superpowers the Owl TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4502371-project-superpowers-the-owl-tp.jpg?1483491252", - "publisher": "Dynamite", - "description": "Fear the shadows, the Owl has returned! Lost for fifty years in an ethereal limbo, the heroic adventurer of the 1940s has returned, cloaked in a winged costume and fueled by a fierce dedication to justice. In a violent and...", + "id": "3261459", + "name": "U.S.Avengers #1 Reis Colorado State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3261459-usavengers-1-reis-colorado-state-variant.jpg?1480132490", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$15.99" + "price": "" }, { - "id": "7318109", - "name": "Souls Eternal Vol. 2: The Children's War, Part 1 TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7318109-souls-eternal-vol-2-the-childrens-war-part-1-tp.jpg?1484100047", - "publisher": "Hashtag Comics", - "description": "Emma summons Halahar The Swordsman to battle, but at what cost? David is confronted by the Dark Knight, and we learn that there is more to the Izanami Children than we ever imagined!", + "id": "9734683", + "name": "U.S.Avengers #1 Reis Connecticut State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9734683-usavengers-1-reis-connecticut-state-variant.jpg?1478844742", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$9.99" + "price": "$3.99" }, { - "id": "1248911", - "name": "Star Trek: Boldly Go #4 Subscription Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1248911-star-trek-boldly-go-4-subscription-variant.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "Spock is gone, taken by an enemy unlike any Captain Kirk and his crew have faced before. War with the Romulan Empire is imminent. In the face of the ultimate no-win scenario, will the Federation survive? Don't miss the...", + "id": "8620189", + "name": "U.S.Avengers #1 Reis Delaware State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8620189-usavengers-1-reis-delaware-state-variant.jpg?1478844851", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "2891097", - "name": "The Flintstones #7 Variant Edition", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2891097-the-flintstones-7-variant-edition.jpg?1483491252", - "publisher": "DC Comics", - "description": "The Great Gazoo is working on his report card for the human race, and so far humanity has earned a big fat \"F.\" When the Church of Gerard starts selling Indulgences, Bedrock descends into violence and debauchery....", + "id": "2815795", + "name": "U.S.Avengers #1 Reis Florida State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2815795-usavengers-1-reis-florida-state-variant.jpg?1479435022", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "6034447", - "name": "The Smurfs Anthology Vol. 4 HC", + "id": "7915526", + "name": "U.S.Avengers #1 Reis Florida State Variant", "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "Papercutz", - "description": "Another iconic Smurf, The Smurf Apprentice, gets the Anthology treatment! A smurf wants to emulate Papa Smurf, and decides the best way to do so would be to practice magic. So, the smurf sneaks into Gargamel's lab and steals...", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$19.99" + "price": "" }, { - "id": "7796681", - "name": "The Unstoppable Wasp #1 Christopher Action Figure Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7796681-the-unstoppable-wasp-1-christopher-action-figure-variant.jpg?1483111938", + "id": "3946273", + "name": "U.S.Avengers #1 Reis Georgia State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3946273-usavengers-1-reis-georgia-state-variant.jpg?1480130054", "publisher": "Marvel Comics", - "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "6185482", - "name": "The Unworthy Thor #3 Sook Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6185482-the-unworthy-thor-3-sook-variant.jpg?1483110969", + "id": "5158330", + "name": "U.S.Avengers #1 Reis Hawaii State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5158330-usavengers-1-reis-hawaii-state-variant.jpg?1480133154", "publisher": "Marvel Comics", - "description": "The Odinson and Beta Ray Bill continue their quest to take the hammer of the Ultimate Thor from the clutches of the Collector. Elsewhere, a mysterious and powerful cosmic entity has learned of the weapon’s location...", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "9734683", - "name": "U.S.Avengers #1 Reis Connecticut State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9734683-usavengers-1-reis-connecticut-state-variant.jpg?1478844742", + "id": "4765792", + "name": "U.S.Avengers #1 Reis Idaho State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4765792-usavengers-1-reis-idaho-state-variant.jpg?1480132697", "publisher": "Marvel Comics", "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "8620189", - "name": "U.S.Avengers #1 Reis Delaware State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8620189-usavengers-1-reis-delaware-state-variant.jpg?1478844851", + "id": "1711688", + "name": "U.S.Avengers #1 Reis Illinois State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", "publisher": "Marvel Comics", "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { "id": "6462077", @@ -2061,53 +2025,53 @@ "price": "$3.99" }, { - "id": "1185893", - "name": "U.S.Avengers #1 Reis Maine State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1185893-usavengers-1-reis-maine-state-variant.jpg?1479435143", + "id": "1405366", + "name": "U.S.Avengers #1 Reis Indiana State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", "publisher": "Marvel Comics", "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "3909529", - "name": "U.S.Avengers #1 Reis Maryland State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3909529-usavengers-1-reis-maryland-state-variant.jpg?1478845248", + "id": "4200959", + "name": "U.S.Avengers #1 Reis Indiana State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4200959-usavengers-1-reis-indiana-state-variant.jpg?1478845789", "publisher": "Marvel Comics", "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "7990329", - "name": "U.S.Avengers #1 Reis New Hampshire State Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7990329-usavengers-1-reis-new-hampshire-state-variant.jpg?1478959155", + "id": "4377998", + "name": "U.S.Avengers #1 Reis Iowa State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4377998-usavengers-1-reis-iowa-state-variant.jpg?1480131907", "publisher": "Marvel Comics", "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "4220769", - "name": "U.S.Avengers #1 REIS UNITED KINGDOM VARIANT", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4220769-usavengers-1-reis-united-kingdom-variant.jpg?1483806526", + "id": "6708353", + "name": "U.S.Avengers #1 Reis Kansas State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", "publisher": "Marvel Comics", "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "2104622", - "name": "U.S.Avengers #1 Reis Wisconsin State Variant", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "id": "2776313", + "name": "U.S.Avengers #1 Reis Kentucky State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2776313-usavengers-1-reis-kentucky-state-variant.jpg?1480130768", "publisher": "Marvel Comics", "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "" }, { - "id": "8720558", - "name": "U.S.Avengers #1 Reis Wyoming State Variant", + "id": "6264890", + "name": "U.S.Avengers #1 Reis Louisiana State Variant", "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", "publisher": "Marvel Comics", "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", @@ -2115,489 +2079,525 @@ "price": "" }, { - "id": "4141448", - "name": "U.S.Avengers #1 Retailer Bonus one per store variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4141448-usavengers-1-retailer-bonus-one-per-store-variant.jpg?1484263296", + "id": "7929259", + "name": "U.S.Avengers #1 Reis Louisiana State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7929259-usavengers-1-reis-louisiana-state-variant.jpg?1478845684", "publisher": "Marvel Comics", "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "2551794", - "name": "U.S.Avengers #1 Ries West Virginia Valkyrie Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2551794-usavengers-1-ries-west-virginia-valkyrie-variant.jpg?1483638986", + "id": "1777863", + "name": "U.S.Avengers #1 Reis Maine State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", "publisher": "Marvel Comics", "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "2687184", - "name": "U.S.Avengers #1 Ries Wyoming Red Wolf Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2687184-usavengers-1-ries-wyoming-red-wolf-variant.jpg?1483638970", + "id": "1185893", + "name": "U.S.Avengers #1 Reis Maine State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1185893-usavengers-1-reis-maine-state-variant.jpg?1479435143", "publisher": "Marvel Comics", "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "8089154", - "name": "Uncle Scrooge #22 Subscription Variant", + "id": "3070352", + "name": "U.S.Avengers #1 Reis Maryland State Variant", "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "IDW Publishing", - "description": "'The Golden Birds!' When rare, deadly giant hawks with 24-karat feathers are discovered at the South Pole, brassy business-gal Brigitta MacBridge wants to help Scrooge save them for science-so why is he fleeing in...", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "" }, { - "id": "9707390", - "name": "Vikings Uprising #4 Cover B Photo", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9707390-vikings-uprising-4-cover-b-photo.jpg?1484021831", - "publisher": "Titan Books", - "description": "Lagertha and her forces are in a desperate situation, as she finds the rebel slaves have learned a lot from their former masters. It will take all of her bravery and resourcefulness to survive! Meanwhile, in Kattegat, Ragnar...", + "id": "3909529", + "name": "U.S.Avengers #1 Reis Maryland State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3909529-usavengers-1-reis-maryland-state-variant.jpg?1478845248", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "3710084", + "name": "U.S.Avengers #1 Reis Massachusetts State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3710084-usavengers-1-reis-massachusetts-state-variant.jpg?1480130136", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "" }, { - "id": "1365788", - "name": "World Trigger Vol. 14", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1365788-world-trigger-vol-14.jpg?1483491252", - "publisher": "VIZ Media", - "description": "After being crushed in their last Rank Wars match and Jin refusing Osamu's request to join their squad, Tamakoma-2 is at a loss. Osamu is determined to learn how to fight with his team using his limited Trion and gets...", + "id": "3264086", + "name": "U.S.Avengers #1 Reis Michigan State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3264086-usavengers-1-reis-michigan-state-variant.jpg?1480131746", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$9.99" + "price": "" }, { - "id": "9309660", - "name": "Wynonna Earp Legends: Doc Holliday #2 Subscription Variant A", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9309660-wynonna-earp-legends-doc-holliday-2-subscription-variant-a.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "Wynonna Earp and Doc Holliday have picked up an unusual ally: a former Pinkerton by the name of Charles Siringo. But they're gonna need Charlie's help if Wynonna and Doc are gonna stand a chance against an enemy...", + "id": "3880319", + "name": "U.S.Avengers #1 Reis Minnesota State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3880319-usavengers-1-reis-minnesota-state-variant.jpg?1480132111", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "1190312", - "name": "Wynonna Earp Legends: Doc Holliday #2 Subscription Variant B", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1190312-wynonna-earp-legends-doc-holliday-2-subscription-variant-b.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "Wynonna Earp and Doc Holliday have picked up an unusual ally: a former Pinkerton by the name of Charles Siringo. But they're gonna need Charlie's help if Wynonna and Doc are gonna stand a chance against an enemy...", + "id": "8374554", + "name": "U.S.Avengers #1 Reis Mississippi State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8374554-usavengers-1-reis-mississippi-state-variant.jpg?1480131111", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "5508662", - "name": "A&A #11 Cover C - Dean Haspiel Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5508662-aa-11-cover-c-dean-haspiel-variant.jpg?1483540173", - "publisher": "Valiant", - "description": "Freaky fracas! Obadiah Archer: Skilled marksmen, trained fi ghter, and...deranged circus freak?! Through the unfathomable forces of nature, Archer and Gub Gub - the pint-sized and deranged clone of Armstrong - have swapped...", + "id": "5703394", + "name": "U.S.Avengers #1 Reis Missouri State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5703394-usavengers-1-reis-missouri-state-variant.jpg?1480131627", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "6451138", + "name": "U.S.Avengers #1 Reis Montana State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6451138-usavengers-1-reis-montana-state-variant.jpg?1480132602", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "1844047", + "name": "U.S.Avengers #1 Reis Nebraska State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1844047-usavengers-1-reis-nebraska-state-variant.jpg?1480132445", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "5314998", + "name": "U.S.Avengers #1 Reis Nevada State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5314998-usavengers-1-reis-nevada-state-variant.jpg?1480132373", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "2010124", - "name": "Art of Magic: The Gathering Vol. 3: Kaladesh HC", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2010124-art-of-magic-the-gathering-vol-3-kaladesh-hc.jpg?1483491252", - "publisher": "VIZ Media", - "description": "Optimism, innovation, and the spirit of creativity fill these pages, lavishly illustrated with the award-winning art of Magic: The Gathering! Welcome to Kaladesh - a vibrant, beautiful plane where anything is possible. Join...", + "id": "1518666", + "name": "U.S.Avengers #1 Reis New Hampshire State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1518666-usavengers-1-reis-new-hampshire-state-variant.jpg?1480130233", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$39.99" + "price": "" }, { - "id": "8928676", - "name": "Astro Boy Omnibus Vol. 6 TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8928676-astro-boy-omnibus-vol-6-tp.jpg?1483491252", - "publisher": "Dark Horse Comics", - "description": "Sixty years old and still rockin', Astro Boy proudly wears the championship belt of all-ages robot action! In this volume, a powerful robot bent on creating a robot nation threatens to ignite all-out war between man...", + "id": "7990329", + "name": "U.S.Avengers #1 Reis New Hampshire State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7990329-usavengers-1-reis-new-hampshire-state-variant.jpg?1478959155", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$19.99" + "price": "$3.99" }, { - "id": "1690460", - "name": "Behind the Scenes Vol. 3", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1690460-behind-the-scenes-vol-3.jpg?1483491252", - "publisher": "VIZ Media", - "description": "Ranmaru Kurisu comes from a family of hardy, rough-and-tumble fisherfolk and he sticks out at home like a delicate, artistic sore thumb. It's given him a raging inferiority complex and a permanently pessimistic outlook....", + "id": "3692050", + "name": "U.S.Avengers #1 Reis New Jersey State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3692050-usavengers-1-reis-new-jersey-state-variant.jpg?1480129872", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$9.99" + "price": "" }, { - "id": "3367848", - "name": "Bob's Burgers #15 Nycc Exc Ed", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "Dynamite", - "description": "Gene serves up a magnificent medieval tale in Issue 15 of the Bob's Burgers Comic Book! A rogue dodgeball sends Gene back in time - to a land of kings, and knights, and a wizard who's just 'meh.' Gene discovers...", + "id": "9838971", + "name": "U.S.Avengers #1 Reis New Mexico State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9838971-usavengers-1-reis-new-mexico-state-variant.jpg?1480132995", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "" }, { - "id": "3930907", - "name": "Boo Worlds Cutest Dog Walk In the Park Vol. 1 HC", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3930907-boo-worlds-cutest-dog-walk-in-the-park-vol-1-hc.jpg?1483491252", - "publisher": "Dynamite", - "description": "The World's Cutest Dog comes to comics! He's Boo, the Pomeranian pup that's become an internet sensation, and he's ready for four-color adventures in his first-ever graphic novel! Join Boo and his canine...", + "id": "7000267", + "name": "U.S.Avengers #1 Reis New York State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7000267-usavengers-1-reis-new-york-state-variant.jpg?1478845128", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$12.99" + "price": "$3.99" }, { - "id": "9311856", - "name": "Deadpool the Duck #1 Incentive Chip Zdarsky Variant Cover", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9311856-deadpool-the-duck-1-incentive-chip-zdarsky-variant-cover.jpg?1483572156", + "id": "4302198", + "name": "U.S.Avengers #1 Reis North Carolina State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4302198-usavengers-1-reis-north-carolina-state-variant.jpg?1480130341", "publisher": "Marvel Comics", - "description": "What do you get when you take one cynical anthropomorphic duck (named Howard) and cross it with the smelliest (and most annoying) mercenary in the Marvel Universe? DEADPOOL THE DUCK! When Deadpool is sent on a mission from...", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "7438320", - "name": "Deadpool the Duck #1 Incentive Rafael Albuquerque Variant Cover", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7438320-deadpool-the-duck-1-incentive-rafael-albuquerque-variant-cover.jpg?1483572108", + "id": "3255654", + "name": "U.S.Avengers #1 Reis North Dakota State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3255654-usavengers-1-reis-north-dakota-state-variant.jpg?1480132540", "publisher": "Marvel Comics", - "description": "What do you get when you take one cynical anthropomorphic duck (named Howard) and cross it with the smelliest (and most annoying) mercenary in the Marvel Universe? DEADPOOL THE DUCK! When Deadpool is sent on a mission from...", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "9100210", - "name": "Deadpool the Duck #1 Ron Lim Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9100210-deadpool-the-duck-1-ron-lim-variant.jpg?1483572132", + "id": "4196214", + "name": "U.S.Avengers #1 Reis Ohio State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4196214-usavengers-1-reis-ohio-state-variant.jpg?1480130964", "publisher": "Marvel Comics", - "description": "What do you get when you take one cynical anthropomorphic duck (named Howard) and cross it with the smelliest (and most annoying) mercenary in the Marvel Universe? DEADPOOL THE DUCK! When Deadpool is sent on a mission from...", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "8132400", - "name": "Doctor Who: The Eleventh Doctor - Year Three #1 Blank Sketch Variant", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "Titan Books", - "description": "Same great creators, whole new flavor! The eleventh Doctor begins his blockbuster third year with writer Rob Williams (Suicide Squad) and series artists Simon Fraser and Leandro Casco in the hot seat! Year Three unfolds...", + "id": "2792678", + "name": "U.S.Avengers #1 Reis Oklahoma State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2792678-usavengers-1-reis-oklahoma-state-variant.jpg?1480132887", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "" }, { - "id": "8011269", - "name": "Doctor Who: The Eleventh Doctor - Year Three #1 Cover D Fraser", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8011269-doctor-who-the-eleventh-doctor-year-three-1-cover-d-fraser.jpg?1484056036", - "publisher": "Titan Books", - "description": "Same great creators, whole new flavor! The eleventh Doctor begins his blockbuster third year with writer Rob Williams (Suicide Squad) and series artists Simon Fraser and Leandro Casco in the hot seat! Year Three unfolds...", + "id": "7135792", + "name": "U.S.Avengers #1 Reis Oregon State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7135792-usavengers-1-reis-oregon-state-variant.jpg?1480132198", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "2847788", - "name": "Doctor Who: The Eleventh Doctor - Year Three #1 Cover E Di Meo", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2847788-doctor-who-the-eleventh-doctor-year-three-1-cover-e-di-meo.jpg?1484056037", - "publisher": "Titan Books", - "description": "Same great creators, whole new flavor! The eleventh Doctor begins his blockbuster third year with writer Rob Williams (Suicide Squad) and series artists Simon Fraser and Leandro Casco in the hot seat! Year Three unfolds...", + "id": "5963565", + "name": "U.S.Avengers #1 Reis Pennsylvania State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5963565-usavengers-1-reis-pennsylvania-state-variant.jpg?1480129770", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "7776477", - "name": "Doctor Who: The Twelfth Doctor - Year Two #13 Cover C Question 6", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "Titan Books", - "description": "A French swordswoman, dark matter monsters, alternate universes, swashbuckling adventure and symbiotic intrigue - all just another Wednesday for the Doctor! But when you throw in secret police, an alien takeover of the aristocracy,...", + "id": "9989772", + "name": "U.S.Avengers #1 Reis Puerto Rico Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9989772-usavengers-1-reis-puerto-rico-variant.jpg?1480132820", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "" }, { - "id": "7308800", - "name": "Doctor Who: The Twelfth Doctor - Year Two #13 Cover D Glass", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "Titan Books", - "description": "A French swordswoman, dark matter monsters, alternate universes, swashbuckling adventure and symbiotic intrigue - all just another Wednesday for the Doctor! But when you throw in secret police, an alien takeover of the aristocracy,...", + "id": "6800107", + "name": "U.S.Avengers #1 Reis Rhode Island State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6800107-usavengers-1-reis-rhode-island-state-variant.jpg?1480129658", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "" }, { - "id": "5958392", - "name": "Dragonlance the Legend of Huma TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5958392-dragonlance-the-legend-of-huma-tp.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "The world of Krynn is under siege by the dark goddess Takhisis. Led by the renegade wizard Galan Dracos, Takhisis' forces of evil threaten to conquer all. The only resistance to the Dark Queen are the Knights of Solamnia...", + "id": "3874274", + "name": "U.S.Avengers #1 Reis South Carolina State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3874274-usavengers-1-reis-south-carolina-state-variant.jpg?1480129595", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$19.99" + "price": "" }, { - "id": "6883547", - "name": "Equilibrium #1 Bcc Exc Mega Signed Cover", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "American Mythology", - "description": "In the first years of the 21st century, a third World War broke out. Those of us who survived knew mankind could never survive a fourth... that our own volatile natures could simply no longer be risked. Now, the government...", + "id": "8041493", + "name": "U.S.Avengers #1 Reis South Dakota State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8041493-usavengers-1-reis-south-dakota-state-variant.jpg?1480129458", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "" }, { - "id": "2311042", - "name": "Faith #7 Cover D - Jen Bartel Incentive Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2311042-faith-7-cover-d-jen-bartel-incentive-variant.jpg?1483539944", - "publisher": "Valiant", - "description": "Haunted heroics! Faith Herbert has lost many allies throughout her life… Her mother. Her father. Even a fellow Renegade. Despite this, Los Angeles’ high-flying hero has always defined herself by more than tragedy....", + "id": "2227099", + "name": "U.S.Avengers #1 Reis Tennessee State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2227099-usavengers-1-reis-tennessee-state-variant.jpg?1480129358", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "2765173", - "name": "Faith #7 Cover E - Geoff Shaw Incentive Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2765173-faith-7-cover-e-geoff-shaw-incentive-variant.jpg?1483539994", - "publisher": "Valiant", - "description": "Haunted heroics! Faith Herbert has lost many allies throughout her life… Her mother. Her father. Even a fellow Renegade. Despite this, Los Angeles’ high-flying hero has always defined herself by more than tragedy....", + "id": "2071059", + "name": "U.S.Avengers #1 Reis Texas State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2071059-usavengers-1-reis-texas-state-variant.jpg?1480129238", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "5872805", - "name": "Grumpy Cat Grumpus Vol. 3 HC", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5872805-grumpy-cat-grumpus-vol-3-hc.jpg?1483491252", - "publisher": "Dynamite", - "description": "The World's Grumpiest Cat - and the world's most adorable internet sensation - continues to delight fans of all ages with her comic book misadventures (although she's actually quite disappointed to delight anyone,...", + "id": "6080733", + "name": "U.S.Avengers #1 Reis Utah State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6080733-usavengers-1-reis-utah-state-variant.jpg?1480129173", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$12.99" + "price": "" }, { - "id": "4219681", - "name": "King Cat 76", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4219681-king-cat-76.jpg?1483505249", - "publisher": "Alternative Comics", - "description": "The newest issue of this long-running, award-winning comic-zine features Nature Notes, Dreaming, Old People in Restaurants, Sports Radio, Fall Signs, Winter Signs, Radishes, Birds, and 9 pages of fascinating Letters to the...", + "id": "1158320", + "name": "U.S.Avengers #1 Reis Vermont State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1158320-usavengers-1-reis-vermont-state-variant.jpg?1480129037", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "4159676", - "name": "Marry Me #1 Cover B", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4159676-marry-me-1-cover-b.jpg?1483648321", - "publisher": "Other", - "description": "Stasia is a world-famous pop star who is so frustrated with her love life that she accepts the proposal of a random fan holding a MARRY ME sign at one of her concerts. After she says yes, what happens next? Find out in this...", + "id": "4837090", + "name": "U.S.Avengers #1 Reis Virginia State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4837090-usavengers-1-reis-virginia-state-variant.jpg?1480128980", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "3267286", - "name": "Marry Me #1 Cover C", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3267286-marry-me-1-cover-c.jpg?1483648330", - "publisher": "Other", - "description": "Stasia is a world-famous pop star who is so frustrated with her love life that she accepts the proposal of a random fan holding a MARRY ME sign at one of her concerts. After she says yes, what happens next? Find out in this...", + "id": "2996064", + "name": "U.S.Avengers #1 Reis Washington DC Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "7661500", - "name": "Masked #2 Cover B Kurth", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7661500-masked-2-cover-b-kurth.jpg?1483491252", - "publisher": "Titan Books", - "description": "Frank Braffort has caught the attention of the Government officials working most closely with the mysterious anomalies populating the city. With little to go on, but mounting pressure as the anomalies take on more extreme...", + "id": "9210149", + "name": "U.S.Avengers #1 Reis Washington State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, - { - "id": "4443739", - "name": "My Little Pony: Friendship Is Magic Vol. 11 TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4443739-my-little-pony-friendship-is-magic-vol-11-tp.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "Rainbow Dash travels to a remote and dangerous location and finds her fellow Wonderbolt, Soarin, is about to undertake a dangerous mission. Will Dash be able to get over her ego help her fellow Pegasus?", + { + "id": "1170618", + "name": "U.S.Avengers #1 Reis West Virginia State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$19.99" + "price": "" }, { - "id": "4606166", - "name": "Nge Shinji Ikari Raising Project Omnibus Vol. 2 TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4606166-nge-shinji-ikari-raising-project-omnibus-vol-2-tp.jpg?1483491252", - "publisher": "Dark Horse Comics", - "description": "Book Two introduces Mana Kirishima, the mysterious transfer student who might be more capable than even Rei and Asuka . . . and who's definitely more capable when it comes to making moves on Shinji! The four of them...", + "id": "2104622", + "name": "U.S.Avengers #1 Reis Wisconsin State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$19.99" + "price": "" }, { - "id": "9923729", - "name": "Nisekoi: False Love Vol. 19", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9923729-nisekoi-false-love-vol-19.jpg?1483491252", - "publisher": "VIZ Media", - "description": "A laugh-out-loud story that features a fake love relationship between two heirs of rival gangs...plus, a mission to find out which girl actually holds the key to Raku's pendant—and his heart! Love triangle! Comedic...", + "id": "8720558", + "name": "U.S.Avengers #1 Reis Wyoming State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$9.99" + "price": "" }, { - "id": "9130403", - "name": "Optimus Prime #2 RI Cover", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9130403-optimus-prime-2-ri-cover.jpg?1483300631", - "publisher": "IDW Publishing", - "description": "NEW CYBERTRON! A massive corkscrew-shaped space ship has drilled into Earth, bringing with it a surprising disruption to OPTIMUS PRIME's plans. Meanwhile-ARCEE fields a dangerous offer that may be too good to resist!...", + "id": "4141448", + "name": "U.S.Avengers #1 Retailer Bonus one per store variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4141448-usavengers-1-retailer-bonus-one-per-store-variant.jpg?1484263296", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "7615356", - "name": "Optimus Prime #2 SUB-A Cover", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7615356-optimus-prime-2-sub-a-cover.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "NEW CYBERTRON! A massive corkscrew-shaped space ship has drilled into Earth, bringing with it a surprising disruption to OPTIMUS PRIME's plans. Meanwhile-ARCEE fields a dangerous offer that may be too good to resist!...", + "id": "2551794", + "name": "U.S.Avengers #1 Ries West Virginia Valkyrie Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2551794-usavengers-1-ries-west-virginia-valkyrie-variant.jpg?1483638986", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "2994581", - "name": "Optimus Prime #2 SUB-B Cover", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2994581-optimus-prime-2-sub-b-cover.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "NEW CYBERTRON! A massive corkscrew-shaped space ship has drilled into Earth, bringing with it a surprising disruption to OPTIMUS PRIME's plans. Meanwhile-ARCEE fields a dangerous offer that may be too good to resist!...", + "id": "2687184", + "name": "U.S.Avengers #1 Ries Wyoming Red Wolf Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2687184-usavengers-1-ries-wyoming-red-wolf-variant.jpg?1483638970", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "7485790", - "name": "Princess Ai Vol. 2: Lumination", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7485790-princess-ai-vol-2-lumination.jpg?1483491252", - "publisher": "Tokyopop", - "description": "We open on Ai, unconscious and sprawled sexily on a Tokyo street or alley, her clothes thrashed and torn. She gets up and wanders into the Tokyo night, confused and in shock and wondering, \"Where am I?\" Ai is holding...", + "id": "4767280", + "name": "U.S.Avengers #1 Stegman Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4767280-usavengers-1-stegman-variant.jpg?1483121609", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$9.99" + "price": "$3.99" }, { - "id": "1382034", - "name": "Princess Ai Vol. 3: Evolution", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1382034-princess-ai-vol-3-evolution.jpg?1483491252", - "publisher": "Tokyopop", - "description": "", + "id": "8967972", + "name": "U.S.Avengers #1 XCI Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8967972-usavengers-1-xci-variant.jpg?1483121648", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$9.99" + "price": "$3.99" }, { - "id": "9688670", - "name": "Renfield Tale of Madness TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9688670-renfield-tale-of-madness-tp.jpg?1483491252", - "publisher": "Caliber Comics", - "description": "Renfield tells a tale of gothic horror in this haunting and sophisticated story of the bug-eating prophet from Bram Stoker's Dracula. Confined to an insane asylum, Renfield is slowly consumed by madness from the 'Master...", + "id": "3538056", + "name": "U.S.Avengers #1 Young Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", "releaseDate": "2017-01-04", - "price": "$16.99" + "price": "" }, { - "id": "8092345", - "name": "Rurouni Kenshin 3in1 Vol. 1 TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8092345-rurouni-kenshin-3in1-vol-1-tp.jpg?1483491252", - "publisher": "VIZ Media", - "description": "One hundred and forty years ago in Kyoto, with the coming of the American 'Black Ships,' there arose a warrior who, felling men with his bloodstained blade, gained the name Hitokiri, or Manslayer! His killer blade...", + "id": "6498448", + "name": "Uncle Scrooge #22", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6498448-uncle-scrooge-22.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "'The Golden Birds!' When rare, deadly giant hawks with 24-karat feathers are discovered at the South Pole, brassy business-gal Brigitta MacBridge wants to help Scrooge save them for science-so why is he fleeing in...", "releaseDate": "2017-01-04", - "price": "$14.99" + "price": "$3.99" }, { - "id": "1026753", - "name": "Seraph of the End Vol. 11", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1026753-seraph-of-the-end-vol-11.jpg?1483491252", - "publisher": "VIZ Media", - "description": "Mika and Yuichiro are finally reunited! With Mika on the brink of death, Yui offers his blood to save his friend's life - which turns Mika into a full-fledged vampire! Meanwhile, the captured Guren is attempting to lead...", + "id": "8089154", + "name": "Uncle Scrooge #22 Subscription Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "IDW Publishing", + "description": "'The Golden Birds!' When rare, deadly giant hawks with 24-karat feathers are discovered at the South Pole, brassy business-gal Brigitta MacBridge wants to help Scrooge save them for science-so why is he fleeing in...", "releaseDate": "2017-01-04", - "price": "$9.99" + "price": "" }, { - "id": "7156707", - "name": "Sixsmiths", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7156707-sixsmiths.jpg?1483491252", - "publisher": "Caliber Comics", - "description": "The Sixsmiths are a family of Satanists who've suffered from the global recession. Now their lives are in turmoil: Dad needs a job; the twins need to survive the public school system; Mum needs to keep them all sane....", + "id": "6799143", + "name": "Unfollow #15", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6799143-unfollow-15.jpg?1483491252", + "publisher": "Vertigo Comics", + "description": "A year has passed since the tragic events at Akira’s commune. The 140 are dying at an alarming rate, and the world is now split between Akira’s vision and Rubinstein’s. Things have changed. So has Dave....", "releaseDate": "2017-01-04", - "price": "$16.99" + "price": "$3.99" }, { - "id": "5796858", - "name": "Skip Beat 3-in-1 Ed Vol. 12 TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5796858-skip-beat-3-in-1-ed-vol-12-tp.jpg?1483491252", - "publisher": "VIZ Media", - "description": "Kyoko has realized that she has feelings for Ren, and it's horrible! She's convinced he'll be disgusted with her for not keeping her heart in check. And she's worried that the president of LME will catch...", + "id": "6372928", + "name": "Vikings Uprising #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6372928-vikings-uprising-4.jpg?1484021719", + "publisher": "Titan Books", + "description": "Lagertha and her forces are in a desperate situation, as she finds the rebel slaves have learned a lot from their former masters. It will take all of her bravery and resourcefulness to survive! Meanwhile, in Kattegat, Ragnar...", "releaseDate": "2017-01-04", - "price": "$14.99" + "price": "$3.99" }, { - "id": "5481831", - "name": "Slapstick #2 Brown Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5481831-slapstick-2-brown-variant.jpg?1483112368", - "publisher": "Marvel Comics", - "description": "Slapstick vs. Bro-Man! Who or what is Bro-Man? Well, look at the cover! He’s another cartoon-like character! Also, is it weird that Slapstick is hiding a mad scientist in his parents’ basement? Probably!", + "id": "9707390", + "name": "Vikings Uprising #4 Cover B Photo", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9707390-vikings-uprising-4-cover-b-photo.jpg?1484021831", + "publisher": "Titan Books", + "description": "Lagertha and her forces are in a desperate situation, as she finds the rebel slaves have learned a lot from their former masters. It will take all of her bravery and resourcefulness to survive! Meanwhile, in Kattegat, Ragnar...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "" }, { - "id": "5503697", - "name": "Strawberry Shortcake #8 Subscription Variant A", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5503697-strawberry-shortcake-8-subscription-variant-a.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "The rivalry between Strawberry Shortcake and the Purple Pie Man has escalated into a hold-nothing-back race to the finish! Strawberry will need her friends, her food savvy and a little luck to stay ahead of her ruthless...", + "id": "6840994", + "name": "Vikings Uprising #4 Cover C Caranfa", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6840994-vikings-uprising-4-cover-c-caranfa.jpg?1484021832", + "publisher": "Titan Books", + "description": "Lagertha and her forces are in a desperate situation, as she finds the rebel slaves have learned a lot from their former masters. It will take all of her bravery and resourcefulness to survive! Meanwhile, in Kattegat, Ragnar...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "8063300", - "name": "Strawberry Shortcake #8 Subscription Variant B", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8063300-strawberry-shortcake-8-subscription-variant-b.jpg?1483491252", - "publisher": "IDW Publishing", - "description": "The rivalry between Strawberry Shortcake and the Purple Pie Man has escalated into a hold-nothing-back race to the finish! Strawberry will need her friends, her food savvy and a little luck to stay ahead of her ruthless...", + "id": "5599311", + "name": "Witch & Wizard Manga Vol. 2: New Ptg New Ptg", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Yen Press", + "description": "When Whit and Wisty were imprisoned by the wicked forces of the totalitarian regime known as the New Order, they were barely able to escape with their lives. Now part of a hidden community of teens like themselves, they...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$13.00" }, { - "id": "9692907", - "name": "The Demon Prince of Momochi House Vol. 7", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9692907-the-demon-prince-of-momochi-house-vol-7.jpg?1483491252", + "id": "1365788", + "name": "World Trigger Vol. 14", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1365788-world-trigger-vol-14.jpg?1483491252", "publisher": "VIZ Media", - "description": "Himari Momochi inherits Momochi House, an estate which exists on the barrier between the human and spiritual realms. Aoi's powers have weakend, and he begins to recall fragments of his childhood. Someone from the past...", + "description": "After being crushed in their last Rank Wars match and Jin refusing Osamu's request to join their squad, Tamakoma-2 is at a loss. Osamu is determined to learn how to fight with his team using his limited Trion and gets...", "releaseDate": "2017-01-04", "price": "$9.99" }, { - "id": "4858558", - "name": "The Incredible Hulk Epic Collection: Future Imperfect TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4858558-the-incredible-hulk-epic-collection-future-imperfect-tp.jpg?1483491252", - "publisher": "Marvel Comics", - "description": "Witness the Incredible Hulk's terrifying future! Could our hero truly be destined to rule a ravaged world with a gamma fist as the despotic Maestro?! Or can a time-torn Bruce Banner change his own nightmarish fate? One...", + "id": "3050429", + "name": "World of Tanks #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3050429-world-of-tanks-4.jpg?1483491252", + "publisher": "Dark Horse Comics", + "description": "In this exciting penultimate issue, Linnet's crew faces their toughest battle yet! Meanwhile, Kraft's confidence breaks down as he questions the goals of his fellow officers. Garth Ennis (Preacher, Hellblazer) and...", "releaseDate": "2017-01-04", - "price": "$39.99" + "price": "$3.99" }, { - "id": "9946352", - "name": "The Unstoppable Wasp #1 Blank Variant", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9946352-the-unstoppable-wasp-1-blank-variant.jpg?1483111315", - "publisher": "Marvel Comics", - "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", + "id": "2168967", + "name": "Wynonna Earp Legends: Doc Holliday #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2168967-wynonna-earp-legends-doc-holliday-2.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Wynonna Earp and Doc Holliday have picked up an unusual ally: a former Pinkerton by the name of Charles Siringo. But they're gonna need Charlie's help if Wynonna and Doc are gonna stand a chance against an enemy...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "8807756", - "name": "Tower of Comic Book Freaks", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8807756-tower-of-comic-book-freaks.jpg?1483491252", - "publisher": "Caliber Comics", - "description": "July 4, 1971. Five naive young men hit New York for love, sex, art, and comic books. What they encounter is the pivotal time when comics change from a business to an art form and the group meet artist Allan Caldwell, blacklisted...", + "id": "9309660", + "name": "Wynonna Earp Legends: Doc Holliday #2 Subscription Variant A", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9309660-wynonna-earp-legends-doc-holliday-2-subscription-variant-a.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Wynonna Earp and Doc Holliday have picked up an unusual ally: a former Pinkerton by the name of Charles Siringo. But they're gonna need Charlie's help if Wynonna and Doc are gonna stand a chance against an enemy...", "releaseDate": "2017-01-04", - "price": "$18.99" + "price": "$3.99" }, { - "id": "2689950", - "name": "Twin Star Exorcists Vol. 7", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2689950-twin-star-exorcists-vol-7.jpg?1483491252", - "publisher": "VIZ Media", - "description": "Rokuro and Benio are extraordinary exorcists fated to marry and birth the ultimate spiritual warrior—but can they get along for even one minute? Rokuro dreams of becoming anything but an exorcist! Then mysterious Benio...", + "id": "1190312", + "name": "Wynonna Earp Legends: Doc Holliday #2 Subscription Variant B", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1190312-wynonna-earp-legends-doc-holliday-2-subscription-variant-b.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Wynonna Earp and Doc Holliday have picked up an unusual ally: a former Pinkerton by the name of Charles Siringo. But they're gonna need Charlie's help if Wynonna and Doc are gonna stand a chance against an enemy...", "releaseDate": "2017-01-04", - "price": "$9.99" + "price": "$3.99" }, { - "id": "6840994", - "name": "Vikings Uprising #4 Cover C Caranfa", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6840994-vikings-uprising-4-cover-c-caranfa.jpg?1484021832", - "publisher": "Titan Books", - "description": "Lagertha and her forces are in a desperate situation, as she finds the rebel slaves have learned a lot from their former masters. It will take all of her bravery and resourcefulness to survive! Meanwhile, in Kattegat, Ragnar...", + "id": "5689449", + "name": "Yakuza Demon Killers #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5689449-yakuza-demon-killers-3.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Will Ochita's induction lead to corruption? A contentious decision within the Yakuza hierarchy leads to Ochita being inducted as their first female member. As the Yakuza quarrel, the opportunistic demon leader Gaikotsu...", "releaseDate": "2017-01-04", "price": "$3.99" }, { - "id": "5599311", - "name": "Witch & Wizard Manga Vol. 2: New Ptg New Ptg", - "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", - "publisher": "Yen Press", - "description": "When Whit and Wisty were imprisoned by the wicked forces of the totalitarian regime known as the New Order, they were barely able to escape with their lives. Now part of a hidden community of teens like themselves, they...", + "id": "8337934", + "name": "Yakuza Demon Killers #3 Subscription Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8337934-yakuza-demon-killers-3-subscription-variant.jpg?1478297878", + "publisher": "IDW Publishing", + "description": "Will Ochita's induction lead to corruption? A contentious decision within the Yakuza hierarchy leads to Ochita being inducted as their first female member. As the Yakuza quarrel, the opportunistic demon leader Gaikotsu...", "releaseDate": "2017-01-04", - "price": "$13.00" + "price": "$3.99" } ] diff --git a/test/shared/new-comics/test-data/all-series-2017-01-04.json b/test/shared/new-comics/test-data/all-series-2017-01-04.json index 1336263..4638388 100644 --- a/test/shared/new-comics/test-data/all-series-2017-01-04.json +++ b/test/shared/new-comics/test-data/all-series-2017-01-04.json @@ -87,22 +87,6 @@ "count": 1, "series": "2012" }, - { - "id": "114686", - "name": "The Autumnlands: Tooth & Claw", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8759009-the-autumnlands-tooth-claw.jpg", - "publisher": "Image Comics", - "count": 1, - "series": "2014" - }, - { - "id": "127055", - "name": "The Avengers", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9172708-the-avengers.jpg", - "publisher": "Marvel Comics", - "count": 2, - "series": "2016" - }, { "id": "123183", "name": "Back to the Future: Citizen Brown", @@ -295,14 +279,6 @@ "count": 1, "series": "" }, - { - "id": "121317", - "name": "The Demon Prince of Momochi House", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9692907-the-demon-prince-of-momochi-house.jpg", - "publisher": "VIZ Media", - "count": 1, - "series": "" - }, { "id": "123681", "name": "Disney Princess", @@ -391,22 +367,6 @@ "count": 5, "series": "2016" }, - { - "id": "128452", - "name": "The Fall and Rise of Captain Atom", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8652905-the-fall-and-rise-of-captain-atom.jpg", - "publisher": "DC Comics", - "count": 2, - "series": "2017" - }, - { - "id": "124366", - "name": "The Flintstones", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2335868-the-flintstones.jpg", - "publisher": "DC Comics", - "count": 2, - "series": "2016" - }, { "id": "122917", "name": "Franken Fran", @@ -503,22 +463,6 @@ "count": 2, "series": "2016" }, - { - "id": "127797", - "name": "The Incredible Hulk Epic Collection: Future Imperfect", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4858558-the-incredible-hulk-epic-collection-future-imperfect.jpg", - "publisher": "Marvel Comics", - "count": 1, - "series": "" - }, - { - "id": "118443", - "name": "The Incredible Hulk: Epic Collection", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9344788-the-incredible-hulk-epic-collection.jpg", - "publisher": "Marvel Comics", - "count": 1, - "series": "" - }, { "id": "128049", "name": "Injustice: Gods Among Us - Ground Zero", @@ -543,14 +487,6 @@ "count": 2, "series": "2016" }, - { - "id": "128139", - "name": "Justice League of America: The Atom Rebirth", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8632080-justice-league-of-america-the-atom-rebirth.jpg", - "publisher": "DC Comics", - "count": 2, - "series": "2017" - }, { "id": "127795", "name": "Justice League United", @@ -559,6 +495,14 @@ "count": 1, "series": "" }, + { + "id": "128139", + "name": "Justice League of America: The Atom Rebirth", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8632080-justice-league-of-america-the-atom-rebirth.jpg", + "publisher": "DC Comics", + "count": 2, + "series": "2017" + }, { "id": "127627", "name": "Justice League vs. Suicide Squad", @@ -727,14 +671,6 @@ "count": 1, "series": "" }, - { - "id": "119224", - "name": "The New Avengers", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7001112-the-new-avengers.jpg", - "publisher": "Marvel Comics", - "count": 1, - "series": "2015" - }, { "id": "124030", "name": "Nightwing", @@ -887,14 +823,6 @@ "count": 2, "series": "2016" }, - { - "id": "122692", - "name": "The Shadow Glass", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2997236-the-shadow-glass.jpg", - "publisher": "Dark Horse Comics", - "count": 1, - "series": "2016" - }, { "id": "129844", "name": "Sixsmiths", @@ -919,14 +847,6 @@ "count": 2, "series": "2016" }, - { - "id": "116505", - "name": "The Smurfs Anthology", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6034447-the-smurfs-anthology.jpg", - "publisher": "Papercutz", - "count": 1, - "series": "" - }, { "id": "129421", "name": "Souls Eternal", @@ -992,45 +912,85 @@ "series": "2016" }, { - "id": "129846", - "name": "Tower of Comic Book Freaks", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8807756-tower-of-comic-book-freaks.jpg", - "publisher": "Caliber Comics", + "id": "114686", + "name": "The Autumnlands: Tooth & Claw", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8759009-the-autumnlands-tooth-claw.jpg", + "publisher": "Image Comics", "count": 1, - "series": "" + "series": "2014" }, { - "id": "120653", - "name": "Twin Star Exorcists", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2689950-twin-star-exorcists.jpg", + "id": "127055", + "name": "The Avengers", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9172708-the-avengers.jpg", + "publisher": "Marvel Comics", + "count": 2, + "series": "2016" + }, + { + "id": "121317", + "name": "The Demon Prince of Momochi House", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9692907-the-demon-prince-of-momochi-house.jpg", "publisher": "VIZ Media", "count": 1, "series": "" }, { - "id": "126095", - "name": "U.S.Avengers", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9876900-usavengers.jpg", - "publisher": "Marvel Comics", - "count": 71, - "series": "2016" + "id": "128452", + "name": "The Fall and Rise of Captain Atom", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8652905-the-fall-and-rise-of-captain-atom.jpg", + "publisher": "DC Comics", + "count": 2, + "series": "2017" }, { - "id": "116692", - "name": "Uncle Scrooge", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6498448-uncle-scrooge.jpg", - "publisher": "IDW Publishing", + "id": "124366", + "name": "The Flintstones", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2335868-the-flintstones.jpg", + "publisher": "DC Comics", "count": 2, - "series": "2015" + "series": "2016" }, { - "id": "119287", - "name": "Unfollow", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6799143-unfollow.jpg", - "publisher": "Vertigo Comics", + "id": "127797", + "name": "The Incredible Hulk Epic Collection: Future Imperfect", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4858558-the-incredible-hulk-epic-collection-future-imperfect.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "" + }, + { + "id": "118443", + "name": "The Incredible Hulk: Epic Collection", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9344788-the-incredible-hulk-epic-collection.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "" + }, + { + "id": "119224", + "name": "The New Avengers", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7001112-the-new-avengers.jpg", + "publisher": "Marvel Comics", "count": 1, "series": "2015" }, + { + "id": "122692", + "name": "The Shadow Glass", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2997236-the-shadow-glass.jpg", + "publisher": "Dark Horse Comics", + "count": 1, + "series": "2016" + }, + { + "id": "116505", + "name": "The Smurfs Anthology", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6034447-the-smurfs-anthology.jpg", + "publisher": "Papercutz", + "count": 1, + "series": "" + }, { "id": "127003", "name": "The Unstoppable Wasp", @@ -1047,14 +1007,6 @@ "count": 3, "series": "2016" }, - { - "id": "126217", - "name": "Vikings Uprising", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6372928-vikings-uprising.jpg", - "publisher": "Titan Books", - "count": 3, - "series": "" - }, { "id": "100004", "name": "The Walking Dead", @@ -1072,21 +1024,61 @@ "series": "2014" }, { - "id": "127784", - "name": "Witch & Wizard Manga", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5599311-witch-wizard-manga.jpg", - "publisher": "Yen Press", + "id": "129846", + "name": "Tower of Comic Book Freaks", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8807756-tower-of-comic-book-freaks.jpg", + "publisher": "Caliber Comics", "count": 1, "series": "" }, { - "id": "125005", - "name": "World of Tanks", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3050429-world-of-tanks.jpg", - "publisher": "Dark Horse Comics", + "id": "120653", + "name": "Twin Star Exorcists", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2689950-twin-star-exorcists.jpg", + "publisher": "VIZ Media", "count": 1, + "series": "" + }, + { + "id": "126095", + "name": "U.S.Avengers", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9876900-usavengers.jpg", + "publisher": "Marvel Comics", + "count": 71, "series": "2016" }, + { + "id": "116692", + "name": "Uncle Scrooge", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6498448-uncle-scrooge.jpg", + "publisher": "IDW Publishing", + "count": 2, + "series": "2015" + }, + { + "id": "119287", + "name": "Unfollow", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6799143-unfollow.jpg", + "publisher": "Vertigo Comics", + "count": 1, + "series": "2015" + }, + { + "id": "126217", + "name": "Vikings Uprising", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6372928-vikings-uprising.jpg", + "publisher": "Titan Books", + "count": 3, + "series": "" + }, + { + "id": "127784", + "name": "Witch & Wizard Manga", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5599311-witch-wizard-manga.jpg", + "publisher": "Yen Press", + "count": 1, + "series": "" + }, { "id": "120654", "name": "World Trigger", @@ -1095,6 +1087,14 @@ "count": 1, "series": "" }, + { + "id": "125005", + "name": "World of Tanks", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3050429-world-of-tanks.jpg", + "publisher": "Dark Horse Comics", + "count": 1, + "series": "2016" + }, { "id": "127736", "name": "Wynonna Earp Legends", diff --git a/test/shared/new-comics/test-data/filtered-issues-2017-01-04.json b/test/shared/new-comics/test-data/filtered-issues-2017-01-04.json index 34bfc70..1df5567 100644 --- a/test/shared/new-comics/test-data/filtered-issues-2017-01-04.json +++ b/test/shared/new-comics/test-data/filtered-issues-2017-01-04.json @@ -1,39 +1,30 @@ [ { - "id": "2793270", - "name": "Saga #41", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2793270-saga-41.jpg?1490190820", - "publisher": "Image Comics", - "description": "“THE WAR FOR PHANG,” Part Five. \n\n\tAlana and Marko get their war on.", - "releaseDate": "2017-01-04", - "price": "$2.99" - }, - { - "id": "3614432", - "name": "The Walking Dead #162", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3614432-the-walking-dead-162.jpg?1476788672", + "id": "9694083", + "name": "Black Science #27", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9694083-black-science-27.jpg?1476782851", "publisher": "Image Comics", - "description": "END OF STORY ARC\n\t“THE WHISPERER WAR,” Conclusion", + "description": "A terrifying yet familiar shadow falls over the Dimensionauts, and with Grant locked in an asylum, it’s up to his daughter to save what’s left to save!", "releaseDate": "2017-01-04", - "price": "$2.99" + "price": "$3.99" }, { - "id": "8222681", - "name": "The Wicked + The Divine #25", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8222681-the-wicked-the-divine-25.jpg?1484803815", + "id": "3393034", + "name": "Cannibal #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3393034-cannibal-4.jpg?1476782934", "publisher": "Image Comics", - "description": "“IMPERIAL PHASE (I),” Part Three\n\tThe comic that says, “What could possibly go wrong?” and then looks at the camera and stares until we all start crying releases another issue.", + "description": "END OF STORY ARC\n\tPart Four. The first arc concludes. Danny’s past comes back to haunt him, while Cash’s desperate search for Jolene continues!", "releaseDate": "2017-01-04", - "price": "$3.50" + "price": "$3.99" }, { - "id": "9694083", - "name": "Black Science #27", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9694083-black-science-27.jpg?1476782851", + "id": "4435488", + "name": "Morning Glories Vol. 10: Expulsion TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4435488-morning-glories-vol-10-expulsion-tp.jpg?1483491252", "publisher": "Image Comics", - "description": "A terrifying yet familiar shadow falls over the Dimensionauts, and with Grant locked in an asylum, it’s up to his daughter to save what’s left to save!", + "description": "Features the 'Expulsion' arc and the blockbuster Season 2 finale! Casey takes a stand in the Student Council election, Guillaume challenges the headmaster in the Towerball finals, and Vanessa and Ian face off in...", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$14.99" }, { "id": "2870681", @@ -44,6 +35,15 @@ "releaseDate": "2017-01-04", "price": "$2.99" }, + { + "id": "2793270", + "name": "Saga #41", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2793270-saga-41.jpg?1490190820", + "publisher": "Image Comics", + "description": "“THE WAR FOR PHANG,” Part Five. \n\n\tAlana and Marko get their war on.", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, { "id": "8759009", "name": "The Autumnlands: Tooth & Claw #14", @@ -54,13 +54,13 @@ "price": "$2.99" }, { - "id": "3393034", - "name": "Cannibal #4", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3393034-cannibal-4.jpg?1476782934", + "id": "3614432", + "name": "The Walking Dead #162", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3614432-the-walking-dead-162.jpg?1476788672", "publisher": "Image Comics", - "description": "END OF STORY ARC\n\tPart Four. The first arc concludes. Danny’s past comes back to haunt him, while Cash’s desperate search for Jolene continues!", + "description": "END OF STORY ARC\n\t“THE WHISPERER WAR,” Conclusion", "releaseDate": "2017-01-04", - "price": "$3.99" + "price": "$2.99" }, { "id": "5373679", @@ -72,13 +72,13 @@ "price": "$2.99" }, { - "id": "4435488", - "name": "Morning Glories Vol. 10: Expulsion TP", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4435488-morning-glories-vol-10-expulsion-tp.jpg?1483491252", + "id": "8222681", + "name": "The Wicked + The Divine #25", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8222681-the-wicked-the-divine-25.jpg?1484803815", "publisher": "Image Comics", - "description": "Features the 'Expulsion' arc and the blockbuster Season 2 finale! Casey takes a stand in the Student Council election, Guillaume challenges the headmaster in the Towerball finals, and Vanessa and Ian face off in...", + "description": "“IMPERIAL PHASE (I),” Part Three\n\tThe comic that says, “What could possibly go wrong?” and then looks at the camera and stares until we all start crying releases another issue.", "releaseDate": "2017-01-04", - "price": "$14.99" + "price": "$3.50" }, { "id": "1158869", diff --git a/test/shared/new-comics/test-data/filtered-series-2017-01-04.json b/test/shared/new-comics/test-data/filtered-series-2017-01-04.json index 12d8595..cefe62b 100644 --- a/test/shared/new-comics/test-data/filtered-series-2017-01-04.json +++ b/test/shared/new-comics/test-data/filtered-series-2017-01-04.json @@ -1,12 +1,4 @@ [ - { - "id": "114686", - "name": "The Autumnlands: Tooth & Claw", - "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8759009-the-autumnlands-tooth-claw.jpg", - "publisher": "Image Comics", - "count": 1, - "series": "2014" - }, { "id": "111511", "name": "Black Science", @@ -47,6 +39,14 @@ "count": 1, "series": "2012" }, + { + "id": "114686", + "name": "The Autumnlands: Tooth & Claw", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8759009-the-autumnlands-tooth-claw.jpg", + "publisher": "Image Comics", + "count": 1, + "series": "2014" + }, { "id": "100004", "name": "The Walking Dead", diff --git a/test/shared/new-comics/test-data/sorted-issues-2017-01-04.json b/test/shared/new-comics/test-data/sorted-issues-2017-01-04.json new file mode 100644 index 0000000..cd9d3ea --- /dev/null +++ b/test/shared/new-comics/test-data/sorted-issues-2017-01-04.json @@ -0,0 +1,2603 @@ +[ + { + "id": "8337934", + "name": "Yakuza Demon Killers #3 Subscription Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8337934-yakuza-demon-killers-3-subscription-variant.jpg?1478297878", + "publisher": "IDW Publishing", + "description": "Will Ochita's induction lead to corruption? A contentious decision within the Yakuza hierarchy leads to Ochita being inducted as their first female member. As the Yakuza quarrel, the opportunistic demon leader Gaikotsu...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "5689449", + "name": "Yakuza Demon Killers #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5689449-yakuza-demon-killers-3.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Will Ochita's induction lead to corruption? A contentious decision within the Yakuza hierarchy leads to Ochita being inducted as their first female member. As the Yakuza quarrel, the opportunistic demon leader Gaikotsu...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "1190312", + "name": "Wynonna Earp Legends: Doc Holliday #2 Subscription Variant B", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1190312-wynonna-earp-legends-doc-holliday-2-subscription-variant-b.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Wynonna Earp and Doc Holliday have picked up an unusual ally: a former Pinkerton by the name of Charles Siringo. But they're gonna need Charlie's help if Wynonna and Doc are gonna stand a chance against an enemy...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "9309660", + "name": "Wynonna Earp Legends: Doc Holliday #2 Subscription Variant A", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9309660-wynonna-earp-legends-doc-holliday-2-subscription-variant-a.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Wynonna Earp and Doc Holliday have picked up an unusual ally: a former Pinkerton by the name of Charles Siringo. But they're gonna need Charlie's help if Wynonna and Doc are gonna stand a chance against an enemy...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2168967", + "name": "Wynonna Earp Legends: Doc Holliday #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2168967-wynonna-earp-legends-doc-holliday-2.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Wynonna Earp and Doc Holliday have picked up an unusual ally: a former Pinkerton by the name of Charles Siringo. But they're gonna need Charlie's help if Wynonna and Doc are gonna stand a chance against an enemy...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "3050429", + "name": "World of Tanks #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3050429-world-of-tanks-4.jpg?1483491252", + "publisher": "Dark Horse Comics", + "description": "In this exciting penultimate issue, Linnet's crew faces their toughest battle yet! Meanwhile, Kraft's confidence breaks down as he questions the goals of his fellow officers. Garth Ennis (Preacher, Hellblazer) and...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "1365788", + "name": "World Trigger Vol. 14", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1365788-world-trigger-vol-14.jpg?1483491252", + "publisher": "VIZ Media", + "description": "After being crushed in their last Rank Wars match and Jin refusing Osamu's request to join their squad, Tamakoma-2 is at a loss. Osamu is determined to learn how to fight with his team using his limited Trion and gets...", + "releaseDate": "2017-01-04", + "price": "$9.99" + }, + { + "id": "5599311", + "name": "Witch & Wizard Manga Vol. 2: New Ptg New Ptg", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Yen Press", + "description": "When Whit and Wisty were imprisoned by the wicked forces of the totalitarian regime known as the New Order, they were barely able to escape with their lives. Now part of a hidden community of teens like themselves, they...", + "releaseDate": "2017-01-04", + "price": "$13.00" + }, + { + "id": "6840994", + "name": "Vikings Uprising #4 Cover C Caranfa", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6840994-vikings-uprising-4-cover-c-caranfa.jpg?1484021832", + "publisher": "Titan Books", + "description": "Lagertha and her forces are in a desperate situation, as she finds the rebel slaves have learned a lot from their former masters. It will take all of her bravery and resourcefulness to survive! Meanwhile, in Kattegat, Ragnar...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "9707390", + "name": "Vikings Uprising #4 Cover B Photo", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9707390-vikings-uprising-4-cover-b-photo.jpg?1484021831", + "publisher": "Titan Books", + "description": "Lagertha and her forces are in a desperate situation, as she finds the rebel slaves have learned a lot from their former masters. It will take all of her bravery and resourcefulness to survive! Meanwhile, in Kattegat, Ragnar...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "6372928", + "name": "Vikings Uprising #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6372928-vikings-uprising-4.jpg?1484021719", + "publisher": "Titan Books", + "description": "Lagertha and her forces are in a desperate situation, as she finds the rebel slaves have learned a lot from their former masters. It will take all of her bravery and resourcefulness to survive! Meanwhile, in Kattegat, Ragnar...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "6799143", + "name": "Unfollow #15", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6799143-unfollow-15.jpg?1483491252", + "publisher": "Vertigo Comics", + "description": "A year has passed since the tragic events at Akira’s commune. The 140 are dying at an alarming rate, and the world is now split between Akira’s vision and Rubinstein’s. Things have changed. So has Dave....", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8089154", + "name": "Uncle Scrooge #22 Subscription Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "IDW Publishing", + "description": "'The Golden Birds!' When rare, deadly giant hawks with 24-karat feathers are discovered at the South Pole, brassy business-gal Brigitta MacBridge wants to help Scrooge save them for science-so why is he fleeing in...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "6498448", + "name": "Uncle Scrooge #22", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6498448-uncle-scrooge-22.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "'The Golden Birds!' When rare, deadly giant hawks with 24-karat feathers are discovered at the South Pole, brassy business-gal Brigitta MacBridge wants to help Scrooge save them for science-so why is he fleeing in...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "3538056", + "name": "U.S.Avengers #1 Young Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "8967972", + "name": "U.S.Avengers #1 XCI Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8967972-usavengers-1-xci-variant.jpg?1483121648", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "4767280", + "name": "U.S.Avengers #1 Stegman Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4767280-usavengers-1-stegman-variant.jpg?1483121609", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2687184", + "name": "U.S.Avengers #1 Ries Wyoming Red Wolf Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2687184-usavengers-1-ries-wyoming-red-wolf-variant.jpg?1483638970", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2551794", + "name": "U.S.Avengers #1 Ries West Virginia Valkyrie Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2551794-usavengers-1-ries-west-virginia-valkyrie-variant.jpg?1483638986", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "4141448", + "name": "U.S.Avengers #1 Retailer Bonus one per store variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4141448-usavengers-1-retailer-bonus-one-per-store-variant.jpg?1484263296", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8720558", + "name": "U.S.Avengers #1 Reis Wyoming State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "2104622", + "name": "U.S.Avengers #1 Reis Wisconsin State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "1170618", + "name": "U.S.Avengers #1 Reis West Virginia State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "9210149", + "name": "U.S.Avengers #1 Reis Washington State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "2996064", + "name": "U.S.Avengers #1 Reis Washington DC Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "4837090", + "name": "U.S.Avengers #1 Reis Virginia State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4837090-usavengers-1-reis-virginia-state-variant.jpg?1480128980", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "1158320", + "name": "U.S.Avengers #1 Reis Vermont State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1158320-usavengers-1-reis-vermont-state-variant.jpg?1480129037", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "6080733", + "name": "U.S.Avengers #1 Reis Utah State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6080733-usavengers-1-reis-utah-state-variant.jpg?1480129173", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "2071059", + "name": "U.S.Avengers #1 Reis Texas State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2071059-usavengers-1-reis-texas-state-variant.jpg?1480129238", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "2227099", + "name": "U.S.Avengers #1 Reis Tennessee State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2227099-usavengers-1-reis-tennessee-state-variant.jpg?1480129358", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "8041493", + "name": "U.S.Avengers #1 Reis South Dakota State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8041493-usavengers-1-reis-south-dakota-state-variant.jpg?1480129458", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "3874274", + "name": "U.S.Avengers #1 Reis South Carolina State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3874274-usavengers-1-reis-south-carolina-state-variant.jpg?1480129595", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "6800107", + "name": "U.S.Avengers #1 Reis Rhode Island State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6800107-usavengers-1-reis-rhode-island-state-variant.jpg?1480129658", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "9989772", + "name": "U.S.Avengers #1 Reis Puerto Rico Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9989772-usavengers-1-reis-puerto-rico-variant.jpg?1480132820", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "5963565", + "name": "U.S.Avengers #1 Reis Pennsylvania State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5963565-usavengers-1-reis-pennsylvania-state-variant.jpg?1480129770", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "7135792", + "name": "U.S.Avengers #1 Reis Oregon State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7135792-usavengers-1-reis-oregon-state-variant.jpg?1480132198", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "2792678", + "name": "U.S.Avengers #1 Reis Oklahoma State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2792678-usavengers-1-reis-oklahoma-state-variant.jpg?1480132887", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "4196214", + "name": "U.S.Avengers #1 Reis Ohio State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4196214-usavengers-1-reis-ohio-state-variant.jpg?1480130964", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "3255654", + "name": "U.S.Avengers #1 Reis North Dakota State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3255654-usavengers-1-reis-north-dakota-state-variant.jpg?1480132540", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "4302198", + "name": "U.S.Avengers #1 Reis North Carolina State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4302198-usavengers-1-reis-north-carolina-state-variant.jpg?1480130341", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "7000267", + "name": "U.S.Avengers #1 Reis New York State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7000267-usavengers-1-reis-new-york-state-variant.jpg?1478845128", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "9838971", + "name": "U.S.Avengers #1 Reis New Mexico State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9838971-usavengers-1-reis-new-mexico-state-variant.jpg?1480132995", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "3692050", + "name": "U.S.Avengers #1 Reis New Jersey State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3692050-usavengers-1-reis-new-jersey-state-variant.jpg?1480129872", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "1518666", + "name": "U.S.Avengers #1 Reis New Hampshire State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1518666-usavengers-1-reis-new-hampshire-state-variant.jpg?1480130233", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "7990329", + "name": "U.S.Avengers #1 Reis New Hampshire State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7990329-usavengers-1-reis-new-hampshire-state-variant.jpg?1478959155", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "5314998", + "name": "U.S.Avengers #1 Reis Nevada State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5314998-usavengers-1-reis-nevada-state-variant.jpg?1480132373", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "1844047", + "name": "U.S.Avengers #1 Reis Nebraska State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1844047-usavengers-1-reis-nebraska-state-variant.jpg?1480132445", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "6451138", + "name": "U.S.Avengers #1 Reis Montana State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6451138-usavengers-1-reis-montana-state-variant.jpg?1480132602", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "5703394", + "name": "U.S.Avengers #1 Reis Missouri State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5703394-usavengers-1-reis-missouri-state-variant.jpg?1480131627", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "8374554", + "name": "U.S.Avengers #1 Reis Mississippi State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8374554-usavengers-1-reis-mississippi-state-variant.jpg?1480131111", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "3880319", + "name": "U.S.Avengers #1 Reis Minnesota State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3880319-usavengers-1-reis-minnesota-state-variant.jpg?1480132111", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "3264086", + "name": "U.S.Avengers #1 Reis Michigan State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3264086-usavengers-1-reis-michigan-state-variant.jpg?1480131746", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "3710084", + "name": "U.S.Avengers #1 Reis Massachusetts State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3710084-usavengers-1-reis-massachusetts-state-variant.jpg?1480130136", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "3070352", + "name": "U.S.Avengers #1 Reis Maryland State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "3909529", + "name": "U.S.Avengers #1 Reis Maryland State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3909529-usavengers-1-reis-maryland-state-variant.jpg?1478845248", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "1777863", + "name": "U.S.Avengers #1 Reis Maine State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "1185893", + "name": "U.S.Avengers #1 Reis Maine State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1185893-usavengers-1-reis-maine-state-variant.jpg?1479435143", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "6264890", + "name": "U.S.Avengers #1 Reis Louisiana State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "7929259", + "name": "U.S.Avengers #1 Reis Louisiana State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7929259-usavengers-1-reis-louisiana-state-variant.jpg?1478845684", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2776313", + "name": "U.S.Avengers #1 Reis Kentucky State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2776313-usavengers-1-reis-kentucky-state-variant.jpg?1480130768", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "6708353", + "name": "U.S.Avengers #1 Reis Kansas State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "4377998", + "name": "U.S.Avengers #1 Reis Iowa State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4377998-usavengers-1-reis-iowa-state-variant.jpg?1480131907", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "1405366", + "name": "U.S.Avengers #1 Reis Indiana State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "4200959", + "name": "U.S.Avengers #1 Reis Indiana State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4200959-usavengers-1-reis-indiana-state-variant.jpg?1478845789", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "1711688", + "name": "U.S.Avengers #1 Reis Illinois State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "6462077", + "name": "U.S.Avengers #1 Reis Illinois State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6462077-usavengers-1-reis-illinois-state-variant.jpg?1478844963", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "4765792", + "name": "U.S.Avengers #1 Reis Idaho State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4765792-usavengers-1-reis-idaho-state-variant.jpg?1480132697", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "5158330", + "name": "U.S.Avengers #1 Reis Hawaii State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5158330-usavengers-1-reis-hawaii-state-variant.jpg?1480133154", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "3946273", + "name": "U.S.Avengers #1 Reis Georgia State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3946273-usavengers-1-reis-georgia-state-variant.jpg?1480130054", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "2815795", + "name": "U.S.Avengers #1 Reis Florida State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2815795-usavengers-1-reis-florida-state-variant.jpg?1479435022", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "7915526", + "name": "U.S.Avengers #1 Reis Florida State Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "8620189", + "name": "U.S.Avengers #1 Reis Delaware State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8620189-usavengers-1-reis-delaware-state-variant.jpg?1478844851", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "9734683", + "name": "U.S.Avengers #1 Reis Connecticut State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9734683-usavengers-1-reis-connecticut-state-variant.jpg?1478844742", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "3261459", + "name": "U.S.Avengers #1 Reis Colorado State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3261459-usavengers-1-reis-colorado-state-variant.jpg?1480132490", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "6827446", + "name": "U.S.Avengers #1 Reis Canada Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6827446-usavengers-1-reis-canada-variant.jpg?1479943860", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "4514148", + "name": "U.S.Avengers #1 Reis California State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4514148-usavengers-1-reis-california-state-variant.jpg?1478844489", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8952055", + "name": "U.S.Avengers #1 Reis Arkansas State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8952055-usavengers-1-reis-arkansas-state-variant.jpg?1483586268", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "5443593", + "name": "U.S.Avengers #1 Reis Arizona State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5443593-usavengers-1-reis-arizona-state-variant.jpg?1480133057", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "2359275", + "name": "U.S.Avengers #1 Reis Alaska State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2359275-usavengers-1-reis-alaska-state-variant.jpg?1480133120", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "2056578", + "name": "U.S.Avengers #1 Reis Alabama State Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2056578-usavengers-1-reis-alabama-state-variant.jpg?1480128762", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "4220769", + "name": "U.S.Avengers #1 REIS UNITED KINGDOM VARIANT", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4220769-usavengers-1-reis-united-kingdom-variant.jpg?1483806526", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8281348", + "name": "U.S.Avengers #1 Christopher Action Figure Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8281348-usavengers-1-christopher-action-figure-variant.jpg?1483121558", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2959951", + "name": "U.S.Avengers #1 Casanova Hip Hop Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2959951-usavengers-1-casanova-hip-hop-variant.jpg?1483121625", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "3133996", + "name": "U.S.Avengers #1 Blank Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "9876900", + "name": "U.S.Avengers #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9876900-usavengers-1.jpg?1484922741", + "publisher": "Marvel Comics", + "description": "In a world beset by danger, the United States of America needs a team of heroes they can rely on. Welcome to... American Intelligence Mechanics! A.I.M. will dare any danger – no matter how awesome that danger might...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2689950", + "name": "Twin Star Exorcists Vol. 7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2689950-twin-star-exorcists-vol-7.jpg?1483491252", + "publisher": "VIZ Media", + "description": "Rokuro and Benio are extraordinary exorcists fated to marry and birth the ultimate spiritual warrior—but can they get along for even one minute? Rokuro dreams of becoming anything but an exorcist! Then mysterious Benio...", + "releaseDate": "2017-01-04", + "price": "$9.99" + }, + { + "id": "8807756", + "name": "Tower of Comic Book Freaks", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8807756-tower-of-comic-book-freaks.jpg?1483491252", + "publisher": "Caliber Comics", + "description": "July 4, 1971. Five naive young men hit New York for love, sex, art, and comic books. What they encounter is the pivotal time when comics change from a business to an art form and the group meet artist Allan Caldwell, blacklisted...", + "releaseDate": "2017-01-04", + "price": "$18.99" + }, + { + "id": "1158869", + "name": "The Wicked + The Divine #25 Cover B Lenox", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1158869-the-wicked-the-divine-25-cover-b-lenox.jpg?1483491252", + "publisher": "Image Comics", + "description": "“IMPERIAL PHASE (I),” Part Three\n\tThe comic that says, “What could possibly go wrong?” and then looks at the camera and stares until we all start crying releases another issue.", + "releaseDate": "2017-01-04", + "price": "$3.50" + }, + { + "id": "8222681", + "name": "The Wicked + The Divine #25", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8222681-the-wicked-the-divine-25.jpg?1484803815", + "publisher": "Image Comics", + "description": "“IMPERIAL PHASE (I),” Part Three\n\tThe comic that says, “What could possibly go wrong?” and then looks at the camera and stares until we all start crying releases another issue.", + "releaseDate": "2017-01-04", + "price": "$3.50" + }, + { + "id": "5373679", + "name": "The Walking Dead #162 Cover B Connecting Variant Adams & Fairbairn", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5373679-the-walking-dead-162-cover-b-connecting-variant-adams-fairbairn.jpg?1486006026", + "publisher": "Image Comics", + "description": "END OF STORY ARC\n\t“THE WHISPERER WAR,” Conclusion", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "3614432", + "name": "The Walking Dead #162", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3614432-the-walking-dead-162.jpg?1476788672", + "publisher": "Image Comics", + "description": "END OF STORY ARC\n\t“THE WHISPERER WAR,” Conclusion", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "6185482", + "name": "The Unworthy Thor #3 Sook Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6185482-the-unworthy-thor-3-sook-variant.jpg?1483110969", + "publisher": "Marvel Comics", + "description": "The Odinson and Beta Ray Bill continue their quest to take the hammer of the Ultimate Thor from the clutches of the Collector. Elsewhere, a mysterious and powerful cosmic entity has learned of the weapon’s location...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8901444", + "name": "The Unworthy Thor #3 Lupacchino Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8901444-the-unworthy-thor-3-lupacchino-variant.jpg?1483110956", + "publisher": "Marvel Comics", + "description": "The Odinson and Beta Ray Bill continue their quest to take the hammer of the Ultimate Thor from the clutches of the Collector. Elsewhere, a mysterious and powerful cosmic entity has learned of the weapon’s location...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "9959237", + "name": "The Unworthy Thor #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9959237-the-unworthy-thor-3.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "The Odinson and Beta Ray Bill continue their quest to take the hammer of the Ultimate Thor from the clutches of the Collector. Elsewhere, a mysterious and powerful cosmic entity has learned of the weapon’s location...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "4876873", + "name": "The Unstoppable Wasp #1 Young Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4876873-the-unstoppable-wasp-1-young-variant.jpg?1483111355", + "publisher": "Marvel Comics", + "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "1734378", + "name": "The Unstoppable Wasp #1 Torque Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1734378-the-unstoppable-wasp-1-torque-variant.jpg?1483111376", + "publisher": "Marvel Comics", + "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8748748", + "name": "The Unstoppable Wasp #1 Park Movie Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8748748-the-unstoppable-wasp-1-park-movie-variant.jpg?1483110637", + "publisher": "Marvel Comics", + "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "9635584", + "name": "The Unstoppable Wasp #1 Hip-Hop Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9635584-the-unstoppable-wasp-1-hip-hop-variant.jpg?1483112014", + "publisher": "Marvel Comics", + "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "7796681", + "name": "The Unstoppable Wasp #1 Christopher Action Figure Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7796681-the-unstoppable-wasp-1-christopher-action-figure-variant.jpg?1483111938", + "publisher": "Marvel Comics", + "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "9946352", + "name": "The Unstoppable Wasp #1 Blank Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9946352-the-unstoppable-wasp-1-blank-variant.jpg?1483111315", + "publisher": "Marvel Comics", + "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "7228953", + "name": "The Unstoppable Wasp #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7228953-the-unstoppable-wasp-1.jpg?1486191873", + "publisher": "Marvel Comics", + "description": "Girl. Genius. Hero. Unstoppable. Nadia spent the entire first half of her life a captive of The Red Room, but now this teenage super-scientist is on her own for the first time, and she’s ready to spread her wings! ...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "6034447", + "name": "The Smurfs Anthology Vol. 4 HC", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Papercutz", + "description": "Another iconic Smurf, The Smurf Apprentice, gets the Anthology treatment! A smurf wants to emulate Papa Smurf, and decides the best way to do so would be to practice magic. So, the smurf sneaks into Gargamel's lab and steals...", + "releaseDate": "2017-01-04", + "price": "$19.99" + }, + { + "id": "2997236", + "name": "The Shadow Glass TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2997236-the-shadow-glass-tp.jpg?1484021829", + "publisher": "Dark Horse Comics", + "description": "A young student to England's greatest occultist learns her real father is in league with the devil. When Rose finds out that the man who raised her isn't her father, she ignores his warnings about the terrible secrets...", + "releaseDate": "2017-01-04", + "price": "$19.99" + }, + { + "id": "9344788", + "name": "The Incredible Hulk: Epic Collection - Future Imperfect TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9344788-the-incredible-hulk-epic-collection-future-imperfect-tp.jpg?1475778832", + "publisher": "Marvel Comics", + "description": "Witness the Incredible Hulk's terrifying future! Could our hero truly be destined to rule a ravaged world with a gamma fist as the despotic Maestro?! Or can a time-torn Bruce Banner change his own nightmarish fate? One...", + "releaseDate": "2017-01-04", + "price": "$39.99" + }, + { + "id": "4858558", + "name": "The Incredible Hulk Epic Collection: Future Imperfect TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4858558-the-incredible-hulk-epic-collection-future-imperfect-tp.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "Witness the Incredible Hulk's terrifying future! Could our hero truly be destined to rule a ravaged world with a gamma fist as the despotic Maestro?! Or can a time-torn Bruce Banner change his own nightmarish fate? One...", + "releaseDate": "2017-01-04", + "price": "$39.99" + }, + { + "id": "2891097", + "name": "The Flintstones #7 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2891097-the-flintstones-7-variant-edition.jpg?1483491252", + "publisher": "DC Comics", + "description": "The Great Gazoo is working on his report card for the human race, and so far humanity has earned a big fat \"F.\" When the Church of Gerard starts selling Indulgences, Bedrock descends into violence and debauchery....", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2335868", + "name": "The Flintstones #7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2335868-the-flintstones-7.jpg?1483491252", + "publisher": "DC Comics", + "description": "The Great Gazoo is working on his report card for the human race, and so far humanity has earned a big fat \"F.\" When the Church of Gerard starts selling Indulgences, Bedrock descends into violence and debauchery....", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "9959464", + "name": "The Fall and Rise of Captain Atom #1 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9959464-the-fall-and-rise-of-captain-atom-1-variant-edition.jpg?1483497794", + "publisher": "DC Comics", + "description": "“Blowback” part one! Captain Atom hasn’t been seen or heard from in years—and even if you think you know what happened to him…you’re wrong! But you’re not alone. To this day, no...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "8652905", + "name": "The Fall and Rise of Captain Atom #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8652905-the-fall-and-rise-of-captain-atom-1.jpg?1483497735", + "publisher": "DC Comics", + "description": "“Blowback” part one! Captain Atom hasn’t been seen or heard from in years—and even if you think you know what happened to him…you’re wrong! But you’re not alone. To this day, no...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "9692907", + "name": "The Demon Prince of Momochi House Vol. 7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9692907-the-demon-prince-of-momochi-house-vol-7.jpg?1483491252", + "publisher": "VIZ Media", + "description": "Himari Momochi inherits Momochi House, an estate which exists on the barrier between the human and spiritual realms. Aoi's powers have weakend, and he begins to recall fragments of his childhood. Someone from the past...", + "releaseDate": "2017-01-04", + "price": "$9.99" + }, + { + "id": "3029112", + "name": "The Avengers #3 Tedesco Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3029112-the-avengers-3-tedesco-variant.jpg?1488120739", + "publisher": "Marvel Comics", + "description": "Kang War Three ends in a most unexpected manner! The Firewall of Time has been shattered — and now the Avengers are faced with the dangers it held back!", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "9172708", + "name": "The Avengers #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9172708-the-avengers-3.jpg?1488120739", + "publisher": "Marvel Comics", + "description": "Kang War Three ends in a most unexpected manner! The Firewall of Time has been shattered — and now the Avengers are faced with the dangers it held back!", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8759009", + "name": "The Autumnlands: Tooth & Claw #14", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8759009-the-autumnlands-tooth-claw-14.jpg?1483491252", + "publisher": "Image Comics", + "description": "END OF STORY ARC.\n\n\tEverything goes BOOM. Our travelers have to pick up the pieces in the final chapter of THE AUTUMNLANDS: WOODLAND CREATURES.", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "9798463", + "name": "Superman Vol. 1: Son Of Superman TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9798463-superman-vol-1-son-of-superman-tp.jpg?1483855271", + "publisher": "DC Comics", + "description": "After the stunning events of DC REBIRTH, the world is left without Superman! Luckily, there is another Man of Steel to fill his shoes: the pre-Flashpoint Kal-El! However, can this new Superman protect the world while raising...", + "releaseDate": "2017-01-04", + "price": "$16.99" + }, + { + "id": "1701102", + "name": "Superman #14 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1701102-superman-14-variant-edition.jpg?1483491252", + "publisher": "DC Comics", + "description": "“MULTIPLICITY” part one! The New Super-Man of China has been taken! The Red Son Superman of Earth-30 has been beaten! And who knows what’s happened to Sunshine Superman! Someone is collecting Supermen across...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "9586230", + "name": "Superman #14", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9586230-superman-14.jpg?1484922748", + "publisher": "DC Comics", + "description": "“MULTIPLICITY” part one! The New Super-Man of China has been taken! The Red Son Superman of Earth-30 has been beaten! And who knows what’s happened to Sunshine Superman! Someone is collecting Supermen across...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "8063300", + "name": "Strawberry Shortcake #8 Subscription Variant B", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8063300-strawberry-shortcake-8-subscription-variant-b.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "The rivalry between Strawberry Shortcake and the Purple Pie Man has escalated into a hold-nothing-back race to the finish! Strawberry will need her friends, her food savvy and a little luck to stay ahead of her ruthless...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "5503697", + "name": "Strawberry Shortcake #8 Subscription Variant A", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5503697-strawberry-shortcake-8-subscription-variant-a.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "The rivalry between Strawberry Shortcake and the Purple Pie Man has escalated into a hold-nothing-back race to the finish! Strawberry will need her friends, her food savvy and a little luck to stay ahead of her ruthless...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "5037853", + "name": "Strawberry Shortcake #8", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5037853-strawberry-shortcake-8.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "The rivalry between Strawberry Shortcake and the Purple Pie Man has escalated into a hold-nothing-back race to the finish! Strawberry will need her friends, her food savvy and a little luck to stay ahead of her ruthless...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8322314", + "name": "Steam Wars Bounty Hunters Hell For Hire #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8322314-steam-wars-bounty-hunters-hell-for-hire-1.jpg?1483491252", + "publisher": "Antarctic Press", + "description": "Pursued by the Hegemonic Crux's mounted cavalry, a desperate rebel noble heads for cover in the Dead Forest. The troopers believe they have the target at their mercy, but the predators will soon become prey themselves...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "6916943", + "name": "Star Wars: Han Solo TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6916943-star-wars-han-solo-tp.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "Everyone's favorite scoundrel goes Solo! Han is given a top-secret undercover mission for the Rebellion: rescuing several informants and spies! His cover for the assignment? Only the biggest and most infamous starship...", + "releaseDate": "2017-01-04", + "price": "$16.99" + }, + { + "id": "1248911", + "name": "Star Trek: Boldly Go #4 Subscription Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1248911-star-trek-boldly-go-4-subscription-variant.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Spock is gone, taken by an enemy unlike any Captain Kirk and his crew have faced before. War with the Romulan Empire is imminent. In the face of the ultimate no-win scenario, will the Federation survive? Don't miss the...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "6196070", + "name": "Star Trek: Boldly Go #4 Photo Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6196070-star-trek-boldly-go-4-photo-variant.jpg?1483449434", + "publisher": "IDW Publishing", + "description": "Spock is gone, taken by an enemy unlike any Captain Kirk and his crew have faced before. War with the Romulan Empire is imminent. In the face of the ultimate no-win scenario, will the Federation survive? Don't miss the...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "1714786", + "name": "Star Trek: Boldly Go #4 Marc Laming Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1714786-star-trek-boldly-go-4-marc-laming-variant.jpg?1483449408", + "publisher": "IDW Publishing", + "description": "Spock is gone, taken by an enemy unlike any Captain Kirk and his crew have faced before. War with the Romulan Empire is imminent. In the face of the ultimate no-win scenario, will the Federation survive? Don't miss the...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "6104235", + "name": "Star Trek: Boldly Go #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6104235-star-trek-boldly-go-4.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Spock is gone, taken by an enemy unlike any Captain Kirk and his crew have faced before. War with the Romulan Empire is imminent. In the face of the ultimate no-win scenario, will the Federation survive? Don't miss the...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8146900", + "name": "Squarriors: Summer #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8146900-squarriors-summer-2.jpg?1483505154", + "publisher": "Devil's Due Publishing", + "description": "The Maw and Amoni begin their march to the Tin Kin compound, Tree Jump and Crash retrace Pasha's Southern journey, and the Tin Kin must decide whether to shelter or refuse a group of unusual refugees.", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "4825708", + "name": "Spider-Man 2099 #19", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4825708-spider-man-2099-19.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "Spidey’s mission to take down the terrorists who left his girlfriend in a coma isn’t going very well... THE FIST, an extremist offshoot of THE HAND, has teamed up with an ancient, evil goddess and literally started...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "7318109", + "name": "Souls Eternal Vol. 2: The Children's War, Part 1 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7318109-souls-eternal-vol-2-the-childrens-war-part-1-tp.jpg?1484100047", + "publisher": "Hashtag Comics", + "description": "Emma summons Halahar The Swordsman to battle, but at what cost? David is confronted by the Dark Knight, and we learn that there is more to the Izanami Children than we ever imagined!", + "releaseDate": "2017-01-04", + "price": "$9.99" + }, + { + "id": "5481831", + "name": "Slapstick #2 Brown Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5481831-slapstick-2-brown-variant.jpg?1483112368", + "publisher": "Marvel Comics", + "description": "Slapstick vs. Bro-Man! Who or what is Bro-Man? Well, look at the cover! He’s another cartoon-like character! Also, is it weird that Slapstick is hiding a mad scientist in his parents’ basement? Probably!", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "1539524", + "name": "Slapstick #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1539524-slapstick-2.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "Slapstick vs. Bro-Man! Who or what is Bro-Man? Well, look at the cover! He’s another cartoon-like character! Also, is it weird that Slapstick is hiding a mad scientist in his parents’ basement? Probably!", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "5796858", + "name": "Skip Beat 3-in-1 Ed Vol. 12 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5796858-skip-beat-3-in-1-ed-vol-12-tp.jpg?1483491252", + "publisher": "VIZ Media", + "description": "Kyoko has realized that she has feelings for Ren, and it's horrible! She's convinced he'll be disgusted with her for not keeping her heart in check. And she's worried that the president of LME will catch...", + "releaseDate": "2017-01-04", + "price": "$14.99" + }, + { + "id": "7156707", + "name": "Sixsmiths", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7156707-sixsmiths.jpg?1483491252", + "publisher": "Caliber Comics", + "description": "The Sixsmiths are a family of Satanists who've suffered from the global recession. Now their lives are in turmoil: Dad needs a job; the twins need to survive the public school system; Mum needs to keep them all sane....", + "releaseDate": "2017-01-04", + "price": "$16.99" + }, + { + "id": "2464703", + "name": "Shade, The Changing Girl #4 Joëlle Jones Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2464703-shade-the-changing-girl-4-jolle-jones-variant.jpg?1483504487", + "publisher": "Young Animal", + "description": "As Megan, the soul that Shade displaced, gets farther and farther away from Earth, Shade is starting to find things about her new planet and her new body that she really likes. For instance, there’s music. And also...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2518867", + "name": "Shade, The Changing Girl #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2518867-shade-the-changing-girl-4.jpg?1483584817", + "publisher": "Young Animal", + "description": "As Megan, the soul that Shade displaced, gets farther and farther away from Earth, Shade is starting to find things about her new planet and her new body that she really likes. For instance, there’s music. And also...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "1026753", + "name": "Seraph of the End Vol. 11", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1026753-seraph-of-the-end-vol-11.jpg?1483491252", + "publisher": "VIZ Media", + "description": "Mika and Yuichiro are finally reunited! With Mika on the brink of death, Yui offers his blood to save his friend's life - which turns Mika into a full-fledged vampire! Meanwhile, the captured Guren is attempting to lead...", + "releaseDate": "2017-01-04", + "price": "$9.99" + }, + { + "id": "7966030", + "name": "Scooby-Doo, Where Are You? #77", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7966030-scooby-doo-where-are-you-77.jpg?1483497514", + "publisher": "DC Comics", + "description": "Scooby, Shaggy and the gang are checking out the excitement at a big surfing contest, but one thing they weren’t expecting to find was pirates! Fred and Daphne suit up to help uncover the culprit, but will they solve...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "7945653", + "name": "Scarlet Witch #14", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7945653-scarlet-witch-14.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "A RACE AGAINST TIME TO SAVE WITCHES EVERYWHERE! WANDA’s latest journey for answers has her traveling through alternate dimensions! Amid perils new and old, Wanda, AGATHA and NATALYA will have to fight AIMLESS...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2793270", + "name": "Saga #41", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2793270-saga-41.jpg?1490190820", + "publisher": "Image Comics", + "description": "“THE WAR FOR PHANG,” Part Five. \n\n\tAlana and Marko get their war on.", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "8092345", + "name": "Rurouni Kenshin 3in1 Vol. 1 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8092345-rurouni-kenshin-3in1-vol-1-tp.jpg?1483491252", + "publisher": "VIZ Media", + "description": "One hundred and forty years ago in Kyoto, with the coming of the American 'Black Ships,' there arose a warrior who, felling men with his bloodstained blade, gained the name Hitokiri, or Manslayer! His killer blade...", + "releaseDate": "2017-01-04", + "price": "$14.99" + }, + { + "id": "6889739", + "name": "Rise of the Black Flame #5", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6889739-rise-of-the-black-flame-5.jpg?1483505423", + "publisher": "Dark Horse Comics", + "description": "The heroes’ search finally ends at the temple of the Black Flame cult, but they don’t arrive in time to stop what they find there.", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "9688670", + "name": "Renfield Tale of Madness TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9688670-renfield-tale-of-madness-tp.jpg?1483491252", + "publisher": "Caliber Comics", + "description": "Renfield tells a tale of gothic horror in this haunting and sophisticated story of the bug-eating prophet from Bram Stoker's Dracula. Confined to an insane asylum, Renfield is slowly consumed by madness from the 'Master...", + "releaseDate": "2017-01-04", + "price": "$16.99" + }, + { + "id": "8374099", + "name": "Ragnarok #11 Subscription Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8374099-ragnarok-11-subscription-variant.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Thor Odinson and the Black Elf assassin, Regn, face off against the Lord of the Dead and his draugar in the Dark Tower, the citadel of his power that stands on the edge of Hel.", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "5262471", + "name": "Ragnarok #11", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5262471-ragnarok-11.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Thor Odinson and the Black Elf assassin, Regn, face off against the Lord of the Dead and his draugar in the Dark Tower, the citadel of his power that stands on the edge of Hel.", + "releaseDate": "2017-01-04", + "price": "$4.99" + }, + { + "id": "4502371", + "name": "Project Superpowers the Owl TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4502371-project-superpowers-the-owl-tp.jpg?1483491252", + "publisher": "Dynamite", + "description": "Fear the shadows, the Owl has returned! Lost for fifty years in an ethereal limbo, the heroic adventurer of the 1940s has returned, cloaked in a winged costume and fueled by a fierce dedication to justice. In a violent and...", + "releaseDate": "2017-01-04", + "price": "$15.99" + }, + { + "id": "1382034", + "name": "Princess Ai Vol. 3: Evolution", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1382034-princess-ai-vol-3-evolution.jpg?1483491252", + "publisher": "Tokyopop", + "description": "", + "releaseDate": "2017-01-04", + "price": "$9.99" + }, + { + "id": "7485790", + "name": "Princess Ai Vol. 2: Lumination", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7485790-princess-ai-vol-2-lumination.jpg?1483491252", + "publisher": "Tokyopop", + "description": "We open on Ai, unconscious and sprawled sexily on a Tokyo street or alley, her clothes thrashed and torn. She gets up and wanders into the Tokyo night, confused and in shock and wondering, \"Where am I?\" Ai is holding...", + "releaseDate": "2017-01-04", + "price": "$9.99" + }, + { + "id": "7734698", + "name": "Powerpuff Girls Vol. 1: Homecoming TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7734698-powerpuff-girls-vol-1-homecoming-tp.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Following the debut of their NEW hit Cartoon Network show, THE POWERPUFF GIRLS make a triumphant return to the world of comics! These stories, written by show-writers Jake Goldman and Haley Mancini, reintroduce us to the...", + "releaseDate": "2017-01-04", + "price": "$12.99" + }, + { + "id": "6324102", + "name": "Pokemon Xy Vol. 9", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6324102-pokemon-xy-vol-9.jpg?1483491252", + "publisher": "VIZ Media", + "description": "X was a Pokémon Trainer child prodigy. But now he's depressed and hides in his room avoiding everyone—including his best friend Y. An attack on their hometown by Legendary Pokémon Xerneas and Yveltal,...", + "releaseDate": "2017-01-04", + "price": "$4.99" + }, + { + "id": "6865898", + "name": "Pokemon Adv Black 2 White 2 Vol. 1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6865898-pokemon-adv-black-2-white-2-vol-1.jpg?1483491252", + "publisher": "VIZ Media", + "description": "Two years have passed since Team Plasma was defeated and Trainer Black was sucked into the Light Stone along with Legendary Pokémon Reshiram… Now Team Plasma is back to its wicked ways, controlling other people’s...", + "releaseDate": "2017-01-04", + "price": "$9.99" + }, + { + "id": "2994581", + "name": "Optimus Prime #2 SUB-B Cover", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2994581-optimus-prime-2-sub-b-cover.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "NEW CYBERTRON! A massive corkscrew-shaped space ship has drilled into Earth, bringing with it a surprising disruption to OPTIMUS PRIME's plans. Meanwhile-ARCEE fields a dangerous offer that may be too good to resist!...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "7615356", + "name": "Optimus Prime #2 SUB-A Cover", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7615356-optimus-prime-2-sub-a-cover.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "NEW CYBERTRON! A massive corkscrew-shaped space ship has drilled into Earth, bringing with it a surprising disruption to OPTIMUS PRIME's plans. Meanwhile-ARCEE fields a dangerous offer that may be too good to resist!...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "9130403", + "name": "Optimus Prime #2 RI Cover", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9130403-optimus-prime-2-ri-cover.jpg?1483300631", + "publisher": "IDW Publishing", + "description": "NEW CYBERTRON! A massive corkscrew-shaped space ship has drilled into Earth, bringing with it a surprising disruption to OPTIMUS PRIME's plans. Meanwhile-ARCEE fields a dangerous offer that may be too good to resist!...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "1992660", + "name": "Optimus Prime #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1992660-optimus-prime-2.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "NEW CYBERTRON! A massive corkscrew-shaped space ship has drilled into Earth, bringing with it a surprising disruption to OPTIMUS PRIME's plans. Meanwhile-ARCEE fields a dangerous offer that may be too good to resist!...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "6024995", + "name": "Old Man Logan #16", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6024995-old-man-logan-16.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "IN SPACE, NO ONE CAN HEAR YOU SNIKT! After a disastrous rescue mission, LOGAN is trapped in the cold void of space, hunted by the BROOD! But…wait…Logan is also BACK IN THE WASTELANDS? How can this be? Has the...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "7141772", + "name": "Nova #2 Chiang Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7141772-nova-2-chiang-variant.jpg?1481765237", + "publisher": "Marvel Comics", + "description": "THE RUMORS ARE TRUE! Richard Rider is back from the dead! Even better — he’s back in his Nova helmet! But Earth already HAS a Nova as its guardian, and Sam Alexander isn’t one to be replaced so easily…...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "3777858", + "name": "Nova #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3777858-nova-2.jpg?1483780045", + "publisher": "Marvel Comics", + "description": "THE RUMORS ARE TRUE! Richard Rider is back from the dead! Even better — he’s back in his Nova helmet! But Earth already HAS a Nova as its guardian, and Sam Alexander isn’t one to be replaced so easily…...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "9923729", + "name": "Nisekoi: False Love Vol. 19", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9923729-nisekoi-false-love-vol-19.jpg?1483491252", + "publisher": "VIZ Media", + "description": "A laugh-out-loud story that features a fake love relationship between two heirs of rival gangs...plus, a mission to find out which girl actually holds the key to Raku's pendant—and his heart! Love triangle! Comedic...", + "releaseDate": "2017-01-04", + "price": "$9.99" + }, + { + "id": "2338531", + "name": "Nightwing #12 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2338531-nightwing-12-variant-edition.jpg?1483586262", + "publisher": "DC Comics", + "description": "“BLUDHAVEN” part three! The body count in Blüdhaven continues to rise! Nightwing will have to team up with the Run-Offs to discover who the murderer is and clear the name of the Defacer. But before they...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "8250153", + "name": "Nightwing #12", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8250153-nightwing-12.jpg?1484922799", + "publisher": "DC Comics", + "description": "“BLUDHAVEN” part three! The body count in Blüdhaven continues to rise! Nightwing will have to team up with the Run-Offs to discover who the murderer is and clear the name of the Defacer. But before they...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "4606166", + "name": "Nge Shinji Ikari Raising Project Omnibus Vol. 2 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4606166-nge-shinji-ikari-raising-project-omnibus-vol-2-tp.jpg?1483491252", + "publisher": "Dark Horse Comics", + "description": "Book Two introduces Mana Kirishima, the mysterious transfer student who might be more capable than even Rei and Asuka . . . and who's definitely more capable when it comes to making moves on Shinji! The four of them...", + "releaseDate": "2017-01-04", + "price": "$19.99" + }, + { + "id": "7001112", + "name": "New Avengers By Bendis Complete Collection Vol. 1 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7001112-new-avengers-by-bendis-complete-collection-vol-1-tp.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "Award-winning writer Brian Michael Bendis transforms Earth's Mightiest Heroes! But before he can build his New Avengers, he must disassemble the old ones! In the team's darkest day, one of their own tears them apart...", + "releaseDate": "2017-01-04", + "price": "$39.99" + }, + { + "id": "8007309", + "name": "Naruto Vol. 17 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8007309-naruto-vol-17-tp.jpg?1483491252", + "publisher": "VIZ Media", + "description": "As the five leaders of the strongest villages in the ninja world meet to discuss the fate of their universe, plans are made that will affect Naruto deeply. The new Hokage, leader of Naruto's village, is not afraid to...", + "releaseDate": "2017-01-04", + "price": "$14.99" + }, + { + "id": "2870681", + "name": "Nailbiter #28", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2870681-nailbiter-28.jpg?1476786785", + "publisher": "Image Comics", + "description": "The new Murder Store is having a grand reopening in Buckaroo! But a returning serial killer has other plans…", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "4443739", + "name": "My Little Pony: Friendship Is Magic Vol. 11 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4443739-my-little-pony-friendship-is-magic-vol-11-tp.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Rainbow Dash travels to a remote and dangerous location and finds her fellow Wonderbolt, Soarin, is about to undertake a dangerous mission. Will Dash be able to get over her ego help her fellow Pegasus?", + "releaseDate": "2017-01-04", + "price": "$19.99" + }, + { + "id": "4435488", + "name": "Morning Glories Vol. 10: Expulsion TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4435488-morning-glories-vol-10-expulsion-tp.jpg?1483491252", + "publisher": "Image Comics", + "description": "Features the 'Expulsion' arc and the blockbuster Season 2 finale! Casey takes a stand in the Student Council election, Guillaume challenges the headmaster in the Towerball finals, and Vanessa and Ian face off in...", + "releaseDate": "2017-01-04", + "price": "$14.99" + }, + { + "id": "1239489", + "name": "Moon Knight #10 Story Thus Far Now", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1239489-moon-knight-10-story-thus-far-now.jpg?1483108188", + "publisher": "Marvel Comics", + "description": "“DEATH AND BIRTH” STARTS HERE! Marc Spector was born in Chicago, but where was Steven Grant born? This story goes deep into Spector’s past, picks up where LEMIRE and SMALLWOOD left off in New Egypt…...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "9179780", + "name": "Moon Knight #10 Portacio Classic Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9179780-moon-knight-10-portacio-classic-variant.jpg?1483108169", + "publisher": "Marvel Comics", + "description": "“DEATH AND BIRTH” STARTS HERE! Marc Spector was born in Chicago, but where was Steven Grant born? This story goes deep into Spector’s past, picks up where LEMIRE and SMALLWOOD left off in New Egypt…...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8433616", + "name": "Moon Knight #10 Crook Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8433616-moon-knight-10-crook-variant.jpg?1483108058", + "publisher": "Marvel Comics", + "description": "“DEATH AND BIRTH” STARTS HERE! Marc Spector was born in Chicago, but where was Steven Grant born? This story goes deep into Spector’s past, picks up where LEMIRE and SMALLWOOD left off in New Egypt…...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "5129075", + "name": "Moon Knight #10", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5129075-moon-knight-10.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "“DEATH AND BIRTH” STARTS HERE! Marc Spector was born in Chicago, but where was Steven Grant born? This story goes deep into Spector’s past, picks up where LEMIRE and SMALLWOOD left off in New Egypt…...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "5078946", + "name": "Monsters Unleashed Prelude TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5078946-monsters-unleashed-prelude-tp.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "Years before Jack Kirby introduced the world to a new age of heroic Marvels, the King of comics terrorized it with incredible creations - many of which are poised to rock the Marvel Universe once again! In this collection...", + "releaseDate": "2017-01-04", + "price": "$34.99" + }, + { + "id": "1487818", + "name": "Monster Musume: I ♥ Monster Girls Vo. 03 GN", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1487818-monster-musume-i-monster-girls-vo-03-gn.jpg?1480194484", + "publisher": "Seven Seas Entertainment", + "description": "", + "releaseDate": "2017-01-04", + "price": "$12.99" + }, + { + "id": "1837947", + "name": "Midnighter and Apollo #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1837947-midnighter-and-apollo-4.jpg?1483496745", + "publisher": "DC Comics", + "description": "Apollo’s in Hell, and the only weapon that can kill his captor has been destroyed! Does Midnighter have a plan? Why are you even asking that question?", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "5360153", + "name": "Mickey Mouse Mysterious Melody HC", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5360153-mickey-mouse-mysterious-melody-hc.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "What was life like for Mickey before 1928... before Hollywood stardom struck? In this riveting, phantasmagorical 'what-if' tale, we follow the Mouse from his humble origins-as Oswald Rabbit's screenwriter!-through...", + "releaseDate": "2017-01-04", + "price": "$14.99" + }, + { + "id": "4076398", + "name": "Mickey Mouse #16 Subscription Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4076398-mickey-mouse-16-subscription-variant.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "'Darkenblot,' Part 1 of 3! The futuristic city of Avantgarde has an awesome robot police force-but it's just become the Phantom Blot's private army! Can Mickey brave high-tech horrors to stop his old foe?...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "6418628", + "name": "Mickey Mouse #16", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6418628-mickey-mouse-16.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "'Darkenblot,' Part 1 of 3! The futuristic city of Avantgarde has an awesome robot police force-but it's just become the Phantom Blot's private army! Can Mickey brave high-tech horrors to stop his old foe?...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "3977289", + "name": "Masked #2 Cover D", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3977289-masked-2-cover-d.jpg?1484021845", + "publisher": "Titan Books", + "description": "Frank Braffort has caught the attention of the Government officials working most closely with the mysterious anomalies populating the city. With little to go on, but mounting pressure as the anomalies take on more extreme...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "7661500", + "name": "Masked #2 Cover B Kurth", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7661500-masked-2-cover-b-kurth.jpg?1483491252", + "publisher": "Titan Books", + "description": "Frank Braffort has caught the attention of the Government officials working most closely with the mysterious anomalies populating the city. With little to go on, but mounting pressure as the anomalies take on more extreme...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2854178", + "name": "Masked #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2854178-masked-2.jpg?1483491252", + "publisher": "Titan Books", + "description": "Frank Braffort has caught the attention of the Government officials working most closely with the mysterious anomalies populating the city. With little to go on, but mounting pressure as the anomalies take on more extreme...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8042847", + "name": "Marvel's Guardians of the Galaxy Vol. 2 Prelude #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8042847-marvels-guardians-of-the-galaxy-vol-2-prelude-1.jpg?1485674534", + "publisher": "Marvel Comics", + "description": "GET HOOKED ON THE GUARDIANS! When the fate of the galaxy is at stake, there's only one thing to do: call in the greatest warriors the galaxy has ever known. What do you mean, who?!  ROCKET. GROOT. DRAX. GAMORA....", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "6816589", + "name": "Marvel Universe Ult Spider-Man vs. Sinister Six Digest Vol. 1 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6816589-marvel-universe-ult-spider-man-vs-sinister-six-digest-vol-1-tp.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "Featuring screen-capture images from MARVEL'S ULTIMATE SPIDER-MAN VS. THE SINISTER SIX! Spider-Man faces fearsome foes and finds fabulous friends! With Spider-Verse and Contest of Champions behind him, things are looking...", + "releaseDate": "2017-01-04", + "price": "$9.99" + }, + { + "id": "3730443", + "name": "Marvel Universe Avengers: Ultron Revolution #7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3730443-marvel-universe-avengers-ultron-revolution-7.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "THE SHOCKING CONCLUSION TO THE THUNDERBOLTS! In an epic showdown, it's the AVENGERS versus the THUNDERBOLTS! When it's revealed that the Thunderbolts are actually a villainous team posing as a heroic one, can the...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "6492931", + "name": "Marvel Free Previews #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6492931-marvel-free-previews-1.jpg?1484504122", + "publisher": "Marvel Comics", + "description": "Monsters Unleashed #1 is an advance look, at the full MONSTERS UNLEASHED PREVIEWS of… Monsters Unleashed #1 Avengers #1.MU The Uncanny Inhumans #1.MU Champions #1.MU Spiderman/Deadpool #1.MU Doctor Strange #1.MU All...", + "releaseDate": "2017-01-04", + "price": "$Free" + }, + { + "id": "3267286", + "name": "Marry Me #1 Cover C", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3267286-marry-me-1-cover-c.jpg?1483648330", + "publisher": "Other", + "description": "Stasia is a world-famous pop star who is so frustrated with her love life that she accepts the proposal of a random fan holding a MARRY ME sign at one of her concerts. After she says yes, what happens next? Find out in this...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "4159676", + "name": "Marry Me #1 Cover B", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4159676-marry-me-1-cover-b.jpg?1483648321", + "publisher": "Other", + "description": "Stasia is a world-famous pop star who is so frustrated with her love life that she accepts the proposal of a random fan holding a MARRY ME sign at one of her concerts. After she says yes, what happens next? Find out in this...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "3548052", + "name": "Marry Me #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3548052-marry-me-1.jpg?1483637522", + "publisher": "Other", + "description": "Stasia is a world-famous pop star who is so frustrated with her love life that she accepts the proposal of a random fan holding a MARRY ME sign at one of her concerts. After she says yes, what happens next? Find out in this...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2119416", + "name": "Life & Adventures of Santa Claus: Illus Eric Shanower HC", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2119416-life-adventures-of-santa-claus-illus-eric-shanower-hc.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Both of L. Frank Baum's classic Santa Claus tales are collected here: The Life and Adventures of Santa Claus and A Kidnapped Santa Claus, with with beautiful spot illustrations and cover art by Eisner Award-winning comics...", + "releaseDate": "2017-01-04", + "price": "$16.99" + }, + { + "id": "6414040", + "name": "Kolchak Forgotten Lore of Edgar Allen Poe", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6414040-kolchak-forgotten-lore-of-edgar-allen-poe.jpg?1482882183", + "publisher": "Moonstone", + "description": "From tell-tale hearts and premature burials to black cats and the Red Death, reporter Carl Kolchak grapples with deepening horror and madness as events from Edgar Allan Poe's tales of mystery and imagination come to...", + "releaseDate": "2017-01-04", + "price": "$11.99" + }, + { + "id": "4219681", + "name": "King Cat 76", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4219681-king-cat-76.jpg?1483505249", + "publisher": "Alternative Comics", + "description": "The newest issue of this long-running, award-winning comic-zine features Nature Notes, Dreaming, Old People in Restaurants, Sports Radio, Fall Signs, Winter Signs, Radishes, Birds, and 9 pages of fascinating Letters to the...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "4153816", + "name": "Justice League vs. Suicide Squad #3 Suicide Squad Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4153816-justice-league-vs-suicide-squad-3-suicide-squad-variant.jpg?1483491252", + "publisher": "DC Comics", + "description": "Belle Reve Penitentiary. Headquarters of Task Force X, home to the worst super-criminal scum in the DC Universe and new residence of…the Justice League?! The Suicide Squad delight in showing Earth’s greatest...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "3875647", + "name": "Justice League vs. Suicide Squad #3 Justice League Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3875647-justice-league-vs-suicide-squad-3-justice-league-variant.jpg?1483491252", + "publisher": "DC Comics", + "description": "Belle Reve Penitentiary. Headquarters of Task Force X, home to the worst super-criminal scum in the DC Universe and new residence of…the Justice League?! The Suicide Squad delight in showing Earth’s greatest...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8052350", + "name": "Justice League vs. Suicide Squad #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8052350-justice-league-vs-suicide-squad-3.jpg?1483539907", + "publisher": "DC Comics", + "description": "Belle Reve Penitentiary. Headquarters of Task Force X, home to the worst super-criminal scum in the DC Universe and new residence of…the Justice League?! The Suicide Squad delight in showing Earth’s greatest...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "4110979", + "name": "Justice League of America: The Atom Rebirth #1 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4110979-justice-league-of-america-the-atom-rebirth-1-variant-edition.jpg?1483491252", + "publisher": "DC Comics", + "description": "Prodigious theoretical physics student, hyper-allergic, and crippling social anxiety sufferer. But little does young Ryan know, his first day at Ivy University will begin an epic journey that will take the all-new Atom into...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "8632080", + "name": "Justice League of America: The Atom Rebirth #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8632080-justice-league-of-america-the-atom-rebirth-1.jpg?1483491252", + "publisher": "DC Comics", + "description": "Prodigious theoretical physics student, hyper-allergic, and crippling social anxiety sufferer. But little does young Ryan know, his first day at Ivy University will begin an epic journey that will take the all-new Atom into...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "9788714", + "name": "Justice League United Vol. 3: Reunited TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9788714-justice-league-united-vol-3-reunited-tp.jpg?1482851272", + "publisher": "DC Comics", + "description": "In these stories from JUSTICE LEAGUE UNITED #11-16 and an 8-page Sneak Peek story appearing in print for the first time, the team is transported into an eternal war between the forces of good and evil-but they'll need...", + "releaseDate": "2017-01-04", + "price": "$14.99" + }, + { + "id": "8302380", + "name": "Justice League #12 Variant Edition (jl Ss)", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8302380-justice-league-12-variant-edition-jl-ss.jpg?1483496492", + "publisher": "DC Comics", + "description": "A “JUSTICE LEAGUE VS. SUICIDE SQUAD” tie-in! Behold the rebirth of one of the DC Universe’s most cunning villains as [REDACTED].", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "9901948", + "name": "Justice League #12", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9901948-justice-league-12.jpg?1483539956", + "publisher": "DC Comics", + "description": "A “JUSTICE LEAGUE VS. SUICIDE SQUAD” tie-in! Behold the rebirth of one of the DC Universe’s most cunning villains as [REDACTED].", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "8253883", + "name": "Jem and The Holograms #22 Subscription Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8253883-jem-and-the-holograms-22-subscription-variant.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "THE STINGERS part 4! Jem and The Holograms new drummer is incredible and everyone knows it-too bad she's a spy working for The Misfits! What secrets will she discover when let into the inner sanctum of JEM?! As both...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "3595214", + "name": "Jem and The Holograms #22 10 Copy incentive", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3595214-jem-and-the-holograms-22-10-copy-incentive.jpg?1481601331", + "publisher": "IDW Publishing", + "description": "THE STINGERS part 4! Jem and The Holograms new drummer is incredible and everyone knows it-too bad she's a spy working for The Misfits! What secrets will she discover when let into the inner sanctum of JEM?! As both...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2575423", + "name": "Jem and The Holograms #22", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2575423-jem-and-the-holograms-22.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "THE STINGERS part 4! Jem and The Holograms new drummer is incredible and everyone knows it-too bad she's a spy working for The Misfits! What secrets will she discover when let into the inner sanctum of JEM?! As both...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8719121", + "name": "Injustice: Gods Among Us - Ground Zero #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8719121-injustice-gods-among-us-ground-zero-3.jpg?1483497742", + "publisher": "DC Comics", + "description": "Batman has been taken prisoner! That's good news for Superman, until he figures out it's not the same Batman he's been pursuing all these years.", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "7467432", + "name": "Hawkeye #2 Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7467432-hawkeye-2-variant.jpg?1483490897", + "publisher": "Marvel Comics", + "description": "Solve first case as a P.I. – check. Make new friends – working on it. Realize that first case isn’t quite solved and that there’s a much larger conspiracy at work – aw, dang! Kate Bishop’s...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "7723942", + "name": "Hawkeye #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7723942-hawkeye-2.jpg?1484891213", + "publisher": "Marvel Comics", + "description": "Solve first case as a P.I. – check. Make new friends – working on it. Realize that first case isn’t quite solved and that there’s a much larger conspiracy at work – aw, dang! Kate Bishop’s...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "4699455", + "name": "Harley Quinn #11 Frank Cho Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4699455-harley-quinn-11-frank-cho-variant.jpg?1483497058", + "publisher": "DC Comics", + "description": "“JOKER LOVES HARLEY” part one! For months now, strange reminders of Harley’s time with the Joker have been popping up in the most unexpected places…is this coincidence? Or a message? As our tale...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "3577803", + "name": "Harley Quinn #11", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3577803-harley-quinn-11.jpg?1483497000", + "publisher": "DC Comics", + "description": "“JOKER LOVES HARLEY” part one! For months now, strange reminders of Harley’s time with the Joker have been popping up in the most unexpected places…is this coincidence? Or a message? As our tale...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "5872805", + "name": "Grumpy Cat Grumpus Vol. 3 HC", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5872805-grumpy-cat-grumpus-vol-3-hc.jpg?1483491252", + "publisher": "Dynamite", + "description": "The World's Grumpiest Cat - and the world's most adorable internet sensation - continues to delight fans of all ages with her comic book misadventures (although she's actually quite disappointed to delight anyone,...", + "releaseDate": "2017-01-04", + "price": "$12.99" + }, + { + "id": "5205654", + "name": "Grimm Fairy Tales #1 Cvr F Basaldua", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5205654-grimm-fairy-tales-1-cvr-f-basaldua.jpg?1483992374", + "publisher": "Zenescope", + "description": "New Series Launch! Grimm Fairy Tales is Back! The world of humans has forever changed and the Grimm Universe has been shaken to its core. It started with the Age of Darkness and now with the death of Sela Mathers, earth's...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "3070724", + "name": "Green Lanterns #14 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3070724-green-lanterns-14-variant-edition.jpg?1483497304", + "publisher": "DC Comics", + "description": "“THE PHANTOM LANTERN” conclusion! It’s Simon and Jessica’s final confrontation with the Phantom Lantern as the evil Volthoom’s plan for the rogue Guardian of the Universe inches closer to realization....", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "2805585", + "name": "Green Lanterns #14", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2805585-green-lanterns-14.jpg?1484842471", + "publisher": "DC Comics", + "description": "“THE PHANTOM LANTERN” conclusion! It’s Simon and Jessica’s final confrontation with the Phantom Lantern as the evil Volthoom’s plan for the rogue Guardian of the Universe inches closer to realization....", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "6723039", + "name": "Green Ghost Declassified", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6723039-green-ghost-declassified.jpg?1482882177", + "publisher": "Moonstone", + "description": "The Green Ghost - magician sleuth George Chance - returns! Once a debunker of the supernatural, the Green Ghost terrorized criminals with his horrific skull-face and wraithlike abilities. But criminologist Chance came back...", + "releaseDate": "2017-01-04", + "price": "$14.99" + }, + { + "id": "4863677", + "name": "Green Arrow Vol. 1: The Death and Life Of Oliver Queen TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4863677-green-arrow-vol-1-the-death-and-life-of-oliver-queen-tp.jpg?1482850944", + "publisher": "DC Comics", + "description": "Green Arrow's life will be forever changed as he is betrayed by those closest to him! A budding relationship with Black Canary forces Ollie to confront the fact that he can't fight \"the man\" if he is \"the...", + "releaseDate": "2017-01-04", + "price": "$16.99" + }, + { + "id": "8660460", + "name": "Green Arrow Vol. 1: Life and Death of Oliver Queen (rebirth) TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8660460-green-arrow-vol-1-life-and-death-of-oliver-queen-rebirth-tp.jpg?1483491252", + "publisher": "DC Comics", + "description": "By day he’s Oliver Queen, playboy socialite, CEO of Queen Industries and philanthropic do-gooder. But at night he patrols the streets of Seattle, where he champions the oppressed as a true social justice warrior. He...", + "releaseDate": "2017-01-04", + "price": "$16.99" + }, + { + "id": "6440976", + "name": "Green Arrow #14 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6440976-green-arrow-14-variant-edition.jpg?1483495049", + "publisher": "DC Comics", + "description": "“EMERALD OUTLAW” part three! Tension in Seattle reaches fever pitch when the media begins to question Green Arrow’s involvement in a series of murders committed by an archer with unmatched skills. If the...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "8107453", + "name": "Green Arrow #14", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8107453-green-arrow-14.jpg?1483495026", + "publisher": "DC Comics", + "description": "“EMERALD OUTLAW” part three! Tension in Seattle reaches fever pitch when the media begins to question Green Arrow’s involvement in a series of murders committed by an archer with unmatched skills. If the...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "5525728", + "name": "Grayson Vol. 5: Spyrals End TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5525728-grayson-vol-5-spyrals-end-tp.jpg?1485966467", + "publisher": "DC Comics", + "description": "REMEMBER HIS NAME The entire world is caught in a secret spiral of war and one man stands at the center…Dick Grayson. Corrupted from within, the all-powerful clandestine organization called Spyral is at war with itself,...", + "releaseDate": "2017-01-04", + "price": "$16.99" + }, + { + "id": "1885703", + "name": "Grant Morrison's 18 Days #19 Singh Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1885703-grant-morrisons-18-days-19-singh-variant.jpg?1491565360", + "publisher": "Graphic India", + "description": "Grant Morrison's epic creation continues. The conclusion to the grand hunt! Abhimanyu and his cousin Gatok must hide in the dense jungles from Emperor Duryodhana's unstoppable assassins: the insidious Ashwatthama,...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "3984727", + "name": "Grant Morrison's 18 Days #19", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3984727-grant-morrisons-18-days-19.jpg?1491565360", + "publisher": "Graphic India", + "description": "Grant Morrison's epic creation continues. The conclusion to the grand hunt! Abhimanyu and his cousin Gatok must hide in the dense jungles from Emperor Duryodhana's unstoppable assassins: the insidious Ashwatthama,...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "1846049", + "name": "Giant Days #22", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1846049-giant-days-22.jpg?1483491252", + "publisher": "BOOM! Studios", + "description": "Daisy struggles with the persistent advances of Ingrid Oesterle, Esther gets the call from the Dark Nebula to be a comic shop employee, and Susan finally saves up enough money to buy a scooter that she's too afraid to...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2946107", + "name": "G.I. Joe: A Real American Hero #235 Subscription Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2946107-gi-joe-a-real-american-hero-235-subscription-variant.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "COBRA prepares for its next strike against G.I. JOE, and this time, the Real American Heroes won't see it coming!", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8414601", + "name": "G.I. Joe: A Real American Hero #235", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8414601-gi-joe-a-real-american-hero-235.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "COBRA prepares for its next strike against G.I. JOE, and this time, the Real American Heroes won't see it coming!", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "3729379", + "name": "Franken Fran Vol. 4 Omnibus", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3729379-franken-fran-vol-4-omnibus.jpg?1483491252", + "publisher": "Seven Seas Entertainment", + "description": "Starting with the bolts that protrude from her head, Fran isn't exactly what you would call a normal girl, nor is the cast of horribly disfigured creatures who join her. Despite her Frankenstein-like ways, Fran cares...", + "releaseDate": "2017-01-04", + "price": "$19.99" + }, + { + "id": "2765173", + "name": "Faith #7 Cover E - Geoff Shaw Incentive Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2765173-faith-7-cover-e-geoff-shaw-incentive-variant.jpg?1483539994", + "publisher": "Valiant", + "description": "Haunted heroics! Faith Herbert has lost many allies throughout her life… Her mother. Her father. Even a fellow Renegade. Despite this, Los Angeles’ high-flying hero has always defined herself by more than tragedy....", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2311042", + "name": "Faith #7 Cover D - Jen Bartel Incentive Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2311042-faith-7-cover-d-jen-bartel-incentive-variant.jpg?1483539944", + "publisher": "Valiant", + "description": "Haunted heroics! Faith Herbert has lost many allies throughout her life… Her mother. Her father. Even a fellow Renegade. Despite this, Los Angeles’ high-flying hero has always defined herself by more than tragedy....", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "9033694", + "name": "Faith #7 Cover C - Philip Tan", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9033694-faith-7-cover-c-philip-tan.jpg?1483539891", + "publisher": "Valiant", + "description": "Haunted heroics! Faith Herbert has lost many allies throughout her life… Her mother. Her father. Even a fellow Renegade. Despite this, Los Angeles’ high-flying hero has always defined herself by more than tragedy....", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "1305238", + "name": "Faith #7 Cover B - David Lafuente", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1305238-faith-7-cover-b-david-lafuente.jpg?1483539845", + "publisher": "Valiant", + "description": "Haunted heroics! Faith Herbert has lost many allies throughout her life… Her mother. Her father. Even a fellow Renegade. Despite this, Los Angeles’ high-flying hero has always defined herself by more than tragedy....", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "6152672", + "name": "Faith #7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6152672-faith-7.jpg?1483539795", + "publisher": "Valiant", + "description": "Haunted heroics! Faith Herbert has lost many allies throughout her life… Her mother. Her father. Even a fellow Renegade. Despite this, Los Angeles’ high-flying hero has always defined herself by more than tragedy....", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2202585", + "name": "Everafter: From the Pages of Fables #5", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2202585-everafter-from-the-pages-of-fables-5.jpg?1483494756", + "publisher": "Vertigo Comics", + "description": "Bo’s hunt for Jordan gets bloody! Meanwhile, it’s damage control for the rest of the Shadow Players as San Francisco is under siege by a horde of enraged and undead warriors. Desperate to stop an imminent Mundy...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "7849540", + "name": "Erb Land That Time Forgot #1 Antique Signed Cover", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "American Mythology", + "description": "One hundred years ago, Bowen Tyler, a handful of British allies, and the crew of a German U-33 submarine were lost at sea. What they discovered was something that defied time, and all of known science: the island of Caspak!...", + "releaseDate": "2017-01-04", + "price": "$19.99" + }, + { + "id": "6883547", + "name": "Equilibrium #1 Bcc Exc Mega Signed Cover", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "American Mythology", + "description": "In the first years of the 21st century, a third World War broke out. Those of us who survived knew mankind could never survive a fourth... that our own volatile natures could simply no longer be risked. Now, the government...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "9048092", + "name": "Eden's Fall TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9048092-edens-fall-tp.jpg?1483491252", + "publisher": "Top Cow Productions", + "description": "Top Cow combines three of its most provocative titles (THINK TANK, THE TITHE, POSTAL) in an unflinching fable of revenge and consequence. FBI Agent James Miller (THE TITHE) follows a sociopath into the off-the-grid town...", + "releaseDate": "2017-01-04", + "price": "$14.99" + }, + { + "id": "5958392", + "name": "Dragonlance the Legend of Huma TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5958392-dragonlance-the-legend-of-huma-tp.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "The world of Krynn is under siege by the dark goddess Takhisis. Led by the renegade wizard Galan Dracos, Takhisis' forces of evil threaten to conquer all. The only resistance to the Dark Queen are the Knights of Solamnia...", + "releaseDate": "2017-01-04", + "price": "$19.99" + }, + { + "id": "8825311", + "name": "Donald & Mickey Magic Kingdom Collection TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8825311-donald-mickey-magic-kingdom-collection-tp.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Sixty years of Disney Parks-who knew? Now IDW is celebrating with decades of Disney's classic Park-themed adventure comics! Carl Barks' Scrooge McDuck and Donald travel from the Mark Twain Riverboat to the top of...", + "releaseDate": "2017-01-04", + "price": "$12.99" + }, + { + "id": "7308800", + "name": "Doctor Who: The Twelfth Doctor - Year Two #13 Cover D Glass", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Titan Books", + "description": "A French swordswoman, dark matter monsters, alternate universes, swashbuckling adventure and symbiotic intrigue - all just another Wednesday for the Doctor! But when you throw in secret police, an alien takeover of the aristocracy,...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "7776477", + "name": "Doctor Who: The Twelfth Doctor - Year Two #13 Cover C Question 6", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Titan Books", + "description": "A French swordswoman, dark matter monsters, alternate universes, swashbuckling adventure and symbiotic intrigue - all just another Wednesday for the Doctor! But when you throw in secret police, an alien takeover of the aristocracy,...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "4842197", + "name": "Doctor Who: The Twelfth Doctor - Year Two #13 Cover B Photo", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4842197-doctor-who-the-twelfth-doctor-year-two-13-cover-b-photo.jpg?1484021815", + "publisher": "Titan Books", + "description": "A French swordswoman, dark matter monsters, alternate universes, swashbuckling adventure and symbiotic intrigue - all just another Wednesday for the Doctor! But when you throw in secret police, an alien takeover of the aristocracy,...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2847788", + "name": "Doctor Who: The Eleventh Doctor - Year Three #1 Cover E Di Meo", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2847788-doctor-who-the-eleventh-doctor-year-three-1-cover-e-di-meo.jpg?1484056037", + "publisher": "Titan Books", + "description": "Same great creators, whole new flavor! The eleventh Doctor begins his blockbuster third year with writer Rob Williams (Suicide Squad) and series artists Simon Fraser and Leandro Casco in the hot seat! Year Three unfolds...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8011269", + "name": "Doctor Who: The Eleventh Doctor - Year Three #1 Cover D Fraser", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8011269-doctor-who-the-eleventh-doctor-year-three-1-cover-d-fraser.jpg?1484056036", + "publisher": "Titan Books", + "description": "Same great creators, whole new flavor! The eleventh Doctor begins his blockbuster third year with writer Rob Williams (Suicide Squad) and series artists Simon Fraser and Leandro Casco in the hot seat! Year Three unfolds...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "4144896", + "name": "Doctor Who: The Eleventh Doctor - Year Three #1 Cover C Question 6", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4144896-doctor-who-the-eleventh-doctor-year-three-1-cover-c-question-6.jpg?1484056035", + "publisher": "Titan Books", + "description": "Same great creators, whole new flavor! The eleventh Doctor begins his blockbuster third year with writer Rob Williams (Suicide Squad) and series artists Simon Fraser and Leandro Casco in the hot seat! Year Three unfolds...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8926436", + "name": "Doctor Who: The Eleventh Doctor - Year Three #1 Cover B Photo", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8926436-doctor-who-the-eleventh-doctor-year-three-1-cover-b-photo.jpg?1484021813", + "publisher": "Titan Books", + "description": "Same great creators, whole new flavor! The eleventh Doctor begins his blockbuster third year with writer Rob Williams (Suicide Squad) and series artists Simon Fraser and Leandro Casco in the hot seat! Year Three unfolds...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8132400", + "name": "Doctor Who: The Eleventh Doctor - Year Three #1 Blank Sketch Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Titan Books", + "description": "Same great creators, whole new flavor! The eleventh Doctor begins his blockbuster third year with writer Rob Williams (Suicide Squad) and series artists Simon Fraser and Leandro Casco in the hot seat! Year Three unfolds...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "9226857", + "name": "Doctor Strange / The Punisher: Magic Bullets Chapter #5", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9226857-doctor-strange-the-punisher-magic-bullets-chapter-5.jpg?1483557243", + "publisher": "Marvel Comics", + "description": "The strangest team-up has a takedown! For Strange and Punisher, it’s time to take to the skies!", + "releaseDate": "2017-01-04", + "price": "$0" + }, + { + "id": "8501592", + "name": "Disney Princess #8", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8501592-disney-princess-8.jpg?1482539584", + "publisher": "Disney Comics", + "description": "The hit series continues! Disney's beloved heroines have returned in this hilarious collection of Disney Princess comic strips! Featuring laugh-out-loud stories from the worlds of Ariel, Belle, Rapunzel, Tiana, Cinderella,...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "3736111", + "name": "Deaths Dark Angel #1 Exclusive Cover", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "American Mythology", + "description": "An American Comics Original! Returning after 30 years, this special edition cover was limited to just a tiny 325 copy print run.", + "releaseDate": "2017-01-04", + "price": "$15.00" + }, + { + "id": "6906139", + "name": "Death of Hawkman #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6906139-death-of-hawkman-4.jpg?1483497890", + "publisher": "DC Comics", + "description": "Having uncovered Despero’s plans to acquire the Zeta energy, Hawkman and Adam Strange realize that hundreds of thousands of Thanagarians could perish in the process! But is it already too late for Thanagar?", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "4377170", + "name": "Deadpool: Too Soon? #4 Robson Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4377170-deadpool-too-soon-4-robson-variant.jpg?1483109509", + "publisher": "Marvel Comics", + "description": "Someone has been murdering all of Deadpool’s friends – from Forbush Man to Rocket and Groot! Now Wade Wilson is down to his final suspects and you’ll never guess who it is! This Marvel Universe murder mystery...", + "releaseDate": "2017-01-04", + "price": "$4.99" + }, + { + "id": "5224475", + "name": "Deadpool: Too Soon? #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5224475-deadpool-too-soon-4.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "Someone has been murdering all of Deadpool’s friends – from Forbush Man to Rocket and Groot! Now Wade Wilson is down to his final suspects and you’ll never guess who it is! This Marvel Universe murder mystery...", + "releaseDate": "2017-01-04", + "price": "$4.99" + }, + { + "id": "6447744", + "name": "Deadpool the Duck #1 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6447744-deadpool-the-duck-1-variant-edition.jpg?1483574028", + "publisher": "Marvel Comics", + "description": "What do you get when you take one cynical anthropomorphic duck (named Howard) and cross it with the smelliest (and most annoying) mercenary in the Marvel Universe? DEADPOOL THE DUCK! When Deadpool is sent on a mission from...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "9100210", + "name": "Deadpool the Duck #1 Ron Lim Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9100210-deadpool-the-duck-1-ron-lim-variant.jpg?1483572132", + "publisher": "Marvel Comics", + "description": "What do you get when you take one cynical anthropomorphic duck (named Howard) and cross it with the smelliest (and most annoying) mercenary in the Marvel Universe? DEADPOOL THE DUCK! When Deadpool is sent on a mission from...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "7438320", + "name": "Deadpool the Duck #1 Incentive Rafael Albuquerque Variant Cover", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7438320-deadpool-the-duck-1-incentive-rafael-albuquerque-variant-cover.jpg?1483572108", + "publisher": "Marvel Comics", + "description": "What do you get when you take one cynical anthropomorphic duck (named Howard) and cross it with the smelliest (and most annoying) mercenary in the Marvel Universe? DEADPOOL THE DUCK! When Deadpool is sent on a mission from...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "9311856", + "name": "Deadpool the Duck #1 Incentive Chip Zdarsky Variant Cover", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9311856-deadpool-the-duck-1-incentive-chip-zdarsky-variant-cover.jpg?1483572156", + "publisher": "Marvel Comics", + "description": "What do you get when you take one cynical anthropomorphic duck (named Howard) and cross it with the smelliest (and most annoying) mercenary in the Marvel Universe? DEADPOOL THE DUCK! When Deadpool is sent on a mission from...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "3637000", + "name": "Deadpool the Duck #1 Connecting Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3637000-deadpool-the-duck-1-connecting-variant.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "What do you get when you take one cynical anthropomorphic duck (named Howard) and cross it with the smelliest (and most annoying) mercenary in the Marvel Universe? DEADPOOL THE DUCK! When Deadpool is sent on a mission from...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "5647354", + "name": "Deadpool the Duck #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5647354-deadpool-the-duck-1.jpg?1484784213", + "publisher": "Marvel Comics", + "description": "What do you get when you take one cynical anthropomorphic duck (named Howard) and cross it with the smelliest (and most annoying) mercenary in the Marvel Universe? DEADPOOL THE DUCK! When Deadpool is sent on a mission from...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "4879833", + "name": "Deadpool Worlds Greatest Vol. 1 HC", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4879833-deadpool-worlds-greatest-vol-1-hc.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "He's annoying. He's dangerous. He smells terrible. But the public loves him! That's right - 25 years after his introduction, the Merc with a Mouth is now an Avenger and the world's most popular hero. Eat...", + "releaseDate": "2017-01-04", + "price": "$34.99" + }, + { + "id": "8666781", + "name": "DC Super Hero Girls: Past Times at Super Hero High Chapter #7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8666781-dc-super-hero-girls-past-times-at-super-hero-high-chapter-7.jpg?1483557895", + "publisher": "DC Comics", + "description": "Batgirl and Harley Quinn are stranded…in the world of the Atomic Knights! Can they convince the knights and their giant dogs that they’re not working with the evil Vandal Savage?", + "releaseDate": "2017-01-04", + "price": "$0.99" + }, + { + "id": "6698577", + "name": "DC Comics Bombshells #21", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6698577-dc-comics-bombshells-21.jpg?1483496938", + "publisher": "DC Comics", + "description": "Batwoman and Renee Montoya’s pasts come back to haunt them as Cheetah appears and reminds them how she shot Jason Todd to death. As Cheetah makes a connection to the mechanical cheetah god by bonding to its broken...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8041059", + "name": "Cyborg #8 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8041059-cyborg-8-variant-edition.jpg?1483496852", + "publisher": "DC Comics", + "description": "“Kill Switch”! Cyborg has been deactivated! Now, Vic Stone must rely on help from the outside to break into S.T.A.R. Labs and switch the Justice Leaguer back on. But can Cyborg rely on a clever but luckless streetwise...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "1281939", + "name": "Cyborg #8", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1281939-cyborg-8.jpg?1483496803", + "publisher": "DC Comics", + "description": "“Kill Switch”! Cyborg has been deactivated! Now, Vic Stone must rely on help from the outside to break into S.T.A.R. Labs and switch the Justice Leaguer back on. But can Cyborg rely on a clever but luckless streetwise...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "2628089", + "name": "Chris Samnee Daredevil Artist Ed HC", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2628089-chris-samnee-daredevil-artist-ed-hc.jpg?1484408115", + "publisher": "IDW Publishing", + "description": "IDW Publishing launched the very first Artist's Edition in 2010. It was a bold concept that to date has garnered five consecutive Eisner Awards in the category of Best Archival Project. With the release of Chris Samnee's...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "7384900", + "name": "Champions #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7384900-champions-4.jpg?1483723869", + "publisher": "Marvel Comics", + "description": "Dead set on proving themselves, the Champions are faced with their first no-win scenario — and how it plays out will reveal a whole new side to certain members.", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "4549332", + "name": "Catwoman Vol. 6: Final Jeopardy TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4549332-catwoman-vol-6-final-jeopardy-tp.jpg?1483491252", + "publisher": "DC Comics", + "description": "With everything crumbling around her, Selina Kyle must carefully rebuild her secret identity to protect her new daughter and her friends. But after being thrown off the planet with all the super-villains, Catwoman must claw...", + "releaseDate": "2017-01-04", + "price": "$24.99" + }, + { + "id": "5476098", + "name": "Captain America: Sam Wilson #17", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5476098-captain-america-sam-wilson-17.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "The All-New Falcon and Rage — together! Nothing good will come of this!", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "3393034", + "name": "Cannibal #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3393034-cannibal-4.jpg?1476782934", + "publisher": "Image Comics", + "description": "END OF STORY ARC\n\tPart Four. The first arc concludes. Danny’s past comes back to haunt him, while Cash’s desperate search for Jolene continues!", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2602415", + "name": "Box Office Poison Color Comics #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2602415-box-office-poison-color-comics-1.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "The story of Sherman, Dorothy, Ed, Stephen, Jane, and Mr. Flavor as you've never seen it before: IN FULL COLOR! Alex Robinson's masterpiece of dreary jobs, comic books, love, sex, messy apartments, girlfriends (and...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "3930907", + "name": "Boo Worlds Cutest Dog Walk In the Park Vol. 1 HC", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3930907-boo-worlds-cutest-dog-walk-in-the-park-vol-1-hc.jpg?1483491252", + "publisher": "Dynamite", + "description": "The World's Cutest Dog comes to comics! He's Boo, the Pomeranian pup that's become an internet sensation, and he's ready for four-color adventures in his first-ever graphic novel! Join Boo and his canine...", + "releaseDate": "2017-01-04", + "price": "$12.99" + }, + { + "id": "3367848", + "name": "Bob's Burgers #15 Nycc Exc Ed", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Dynamite", + "description": "Gene serves up a magnificent medieval tale in Issue 15 of the Bob's Burgers Comic Book! A rogue dodgeball sends Gene back in time - to a land of kings, and knights, and a wizard who's just 'meh.' Gene discovers...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "3776946", + "name": "Bloodlines TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3776946-bloodlines-tp.jpg?1482850988", + "publisher": "DC Comics", + "description": "When a meteor crashes to Earth, bringing with it an unspeakable alien presence that terrorizes a nearby small town, the lucky ones die first. As for the rest, they find themselves locked in a hellish struggle for control...", + "releaseDate": "2017-01-04", + "price": "$14.99" + }, + { + "id": "9694083", + "name": "Black Science #27", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9694083-black-science-27.jpg?1476782851", + "publisher": "Image Comics", + "description": "A terrifying yet familiar shadow falls over the Dimensionauts, and with Grant locked in an asylum, it’s up to his daughter to save what’s left to save!", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "5054211", + "name": "Bizenghast 3in1 Vol. 1: Special Collector Ed", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5054211-bizenghast-3in1-vol-1-special-collector-ed.jpg?1482882163", + "publisher": "Tokyopop", + "description": "When a young girl moves to the forgotten town of Bizenghast, she uncovers a terrifying collection of lost souls that leads her to the brink of insanity. One thing that becomes painfully clear: The residences of Bizenghast...", + "releaseDate": "2017-01-04", + "price": "$19.99" + }, + { + "id": "2205304", + "name": "Big Trouble in Little China / Escape From New York #4 Subscription Massafera Cover", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2205304-big-trouble-in-little-china-escape-from-new-york-4-subscription-massafera-cover.jpg?1483491252", + "publisher": "BOOM! Studios", + "description": "Snake and Jack go undercover to join David Lo Pan's army.", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "2076021", + "name": "Big Trouble in Little China / Escape From New York #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2076021-big-trouble-in-little-china-escape-from-new-york-4.jpg?1483491252", + "publisher": "BOOM! Studios", + "description": "Snake and Jack go undercover to join David Lo Pan's army.", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "1607215", + "name": "Betty Boop #1 Nycc Exc Ed", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Dynamite", + "description": "The most famous female cartoon star of all is back - and Dynamite has her! All-new adventures of Betty Boop (with her pals Koko the Clown and Bimbo, natch!) by award-winning writer Roger Langridge and Gis", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "1690460", + "name": "Behind the Scenes Vol. 3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1690460-behind-the-scenes-vol-3.jpg?1483491252", + "publisher": "VIZ Media", + "description": "Ranmaru Kurisu comes from a family of hardy, rough-and-tumble fisherfolk and he sticks out at home like a delicate, artistic sore thumb. It's given him a raging inferiority complex and a permanently pessimistic outlook....", + "releaseDate": "2017-01-04", + "price": "$9.99" + }, + { + "id": "3591165", + "name": "Batman #14 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3591165-batman-14-variant-edition.jpg?1483496632", + "publisher": "DC Comics", + "description": "\"ROOFTOPS\" Part One! In this two-part story; how do you solve a problem like Selina Kyle? Is she a hero? Is she a villain? Can Batman and Catwoman ever really work things out? The award-winning team of Tom King...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "6436185", + "name": "Batman #14", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6436185-batman-14.jpg?1484810948", + "publisher": "DC Comics", + "description": "\"ROOFTOPS\" Part One! In this two-part story; how do you solve a problem like Selina Kyle? Is she a hero? Is she a villain? Can Batman and Catwoman ever really work things out? The award-winning team of Tom King...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "8886084", + "name": "Back To The Future: Citizen Brown TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8886084-back-to-the-future-citizen-brown-tp.jpg?1483491252", + "publisher": "IDW Publishing", + "description": "Time-traveling into comics directly out of Telltale's 2010 smash-hit episodic videogame BACK TO THE FUTURE: THE GAME! When an empty time-traveling DeLorean suddenly shows up in 1986, Marty McFly quickly learns that his...", + "releaseDate": "2017-01-04", + "price": "$19.99" + }, + { + "id": "5715291", + "name": "Attack On Titan Vol. 20 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5715291-attack-on-titan-vol-20-tp.jpg?1482882160", + "publisher": "Kodansha Comics", + "description": "FACING ANNIHILATION The Survey Corps's quest for the truth of the world inside the Walls has brought them back to Titan-infested Shiganshina District, a mere stone's throw from Eren's childhood home. They have...", + "releaseDate": "2017-01-04", + "price": "$10.99" + }, + { + "id": "8928676", + "name": "Astro Boy Omnibus Vol. 6 TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8928676-astro-boy-omnibus-vol-6-tp.jpg?1483491252", + "publisher": "Dark Horse Comics", + "description": "Sixty years old and still rockin', Astro Boy proudly wears the championship belt of all-ages robot action! In this volume, a powerful robot bent on creating a robot nation threatens to ignite all-out war between man...", + "releaseDate": "2017-01-04", + "price": "$19.99" + }, + { + "id": "2010124", + "name": "Art of Magic: The Gathering Vol. 3: Kaladesh HC", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2010124-art-of-magic-the-gathering-vol-3-kaladesh-hc.jpg?1483491252", + "publisher": "VIZ Media", + "description": "Optimism, innovation, and the spirit of creativity fill these pages, lavishly illustrated with the award-winning art of Magic: The Gathering! Welcome to Kaladesh - a vibrant, beautiful plane where anything is possible. Join...", + "releaseDate": "2017-01-04", + "price": "$39.99" + }, + { + "id": "8262062", + "name": "Army of Darkness / Xena: Forever... And A Day #1 Nycc Exc Ed", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Dynamite", + "description": "You're Xena the Warrior Princess and your thousand strong army has fallen to an implacable and ancient evil. What do you do? You suck it up and summon the only ally who stands any hope at all of helping you prevent the...", + "releaseDate": "2017-01-04", + "price": "" + }, + { + "id": "1481243", + "name": "Archie Comics Digest #275", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1481243-archie-comics-digest-275.jpg?1489992418", + "publisher": "Archie Comics", + "description": "Brand new story! The new game 'Cosmo Go!' is all the rage and kids are running all over Riverdale trying to seize rare Cosmo characters to get the biggest prize of all - Cosmo himself! Pop Tate sees the value in...", + "releaseDate": "2017-01-04", + "price": "$4.99" + }, + { + "id": "7997604", + "name": "Archie 75th Anniversary Digest #5", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7997604-archie-75th-anniversary-digest-5.jpg?1483505453", + "publisher": "Archie Comics", + "description": "Celebrate Archie's 75th anniversary in a special way with this commemorative digest! This issue is jam-packed some of the best stories featuring Archie, Betty, and Veronica and even more of the gals of Riverdale, bonus...", + "releaseDate": "2017-01-04", + "price": "$6.99" + }, + { + "id": "3271923", + "name": "Aquaman #14 Variant Edition", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3271923-aquaman-14-variant-edition.jpg?1483497197", + "publisher": "DC Comics", + "description": "“THE DELUGE” part three! No sooner has Aquaman found a lead on the location of N.E.M.O.’s secret headquarters than the United States sends a team of aquatically trained super-soldiers to take out the sea...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "1796701", + "name": "Aquaman #14", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1796701-aquaman-14.jpg?1483497159", + "publisher": "DC Comics", + "description": "“THE DELUGE” part three! No sooner has Aquaman found a lead on the location of N.E.M.O.’s secret headquarters than the United States sends a team of aquatically trained super-soldiers to take out the sea...", + "releaseDate": "2017-01-04", + "price": "$2.99" + }, + { + "id": "6182300", + "name": "Amazing Spider-Man Worldwide Vol. 1 HC", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6182300-amazing-spider-man-worldwide-vol-1-hc.jpg?1483491252", + "publisher": "Marvel Comics", + "description": "The world's greatest super hero goes global! Parker Industries is more successful than ever, with new offices in Shanghai, London and San Francisco. Peter Parker is racking up the frequent-flyer miles - with his 'bodyguard'...", + "releaseDate": "2017-01-04", + "price": "$34.99" + }, + { + "id": "3137328", + "name": "Adventure Time #60 Subscription Le Cover", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3137328-adventure-time-60-subscription-le-cover.jpg?1483491252", + "publisher": "BOOM! Studios", + "description": "Finn gets into the dungeon-making scene and meets fellow dungeon masters, some of whom are villains from Finn's past!", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "8903990", + "name": "Adventure Time #60", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8903990-adventure-time-60.jpg?1483491252", + "publisher": "BOOM! Studios", + "description": "Finn gets into the dungeon-making scene and meets fellow dungeon masters, some of whom are villains from Finn's past!", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "5508662", + "name": "A&A #11 Cover C - Dean Haspiel Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5508662-aa-11-cover-c-dean-haspiel-variant.jpg?1483540173", + "publisher": "Valiant", + "description": "Freaky fracas! Obadiah Archer: Skilled marksmen, trained fi ghter, and...deranged circus freak?! Through the unfathomable forces of nature, Archer and Gub Gub - the pint-sized and deranged clone of Armstrong - have swapped...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "9408111", + "name": "A&A #11 Cover B - Marc Laming", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9408111-aa-11-cover-b-marc-laming.jpg?1483540126", + "publisher": "Valiant", + "description": "Freaky fracas! Obadiah Archer: Skilled marksmen, trained fi ghter, and...deranged circus freak?! Through the unfathomable forces of nature, Archer and Gub Gub - the pint-sized and deranged clone of Armstrong - have swapped...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "6826764", + "name": "A&A #11", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6826764-aa-11.jpg?1483540093", + "publisher": "Valiant", + "description": "Freaky fracas! Obadiah Archer: Skilled marksmen, trained fi ghter, and...deranged circus freak?! Through the unfathomable forces of nature, Archer and Gub Gub - the pint-sized and deranged clone of Armstrong - have swapped...", + "releaseDate": "2017-01-04", + "price": "$3.99" + }, + { + "id": "9266415", + "name": "2000 AD #2012", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9266415-2000-ad-2012.jpg?1485269508", + "publisher": "Rebellion", + "description": "Judge Dredd: Deep in the Heart (Pt1)\n\n\tKingmaker (Pt2)\n\n\tThe Order: Wyrm War (Pt2)\n\n\tHope ...for the Future (Pt2)\n\n\tKingdom: As it is in Heaven (Pt2)", + "releaseDate": "2017-01-04", + "price": "$2.99" + } +] diff --git a/test/shared/new-comics/test-data/sorted-series-2017-01-04.json b/test/shared/new-comics/test-data/sorted-series-2017-01-04.json new file mode 100644 index 0000000..d25c764 --- /dev/null +++ b/test/shared/new-comics/test-data/sorted-series-2017-01-04.json @@ -0,0 +1,1114 @@ +[ + { + "id": "127371", + "name": "Yakuza Demon Killers", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5689449-yakuza-demon-killers.jpg", + "publisher": "IDW Publishing", + "count": 2, + "series": "2016" + }, + { + "id": "127736", + "name": "Wynonna Earp Legends", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2168967-wynonna-earp-legends.jpg", + "publisher": "IDW Publishing", + "count": 3, + "series": "2016" + }, + { + "id": "125005", + "name": "World of Tanks", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3050429-world-of-tanks.jpg", + "publisher": "Dark Horse Comics", + "count": 1, + "series": "2016" + }, + { + "id": "120654", + "name": "World Trigger", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1365788-world-trigger.jpg", + "publisher": "VIZ Media", + "count": 1, + "series": "" + }, + { + "id": "127784", + "name": "Witch & Wizard Manga", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5599311-witch-wizard-manga.jpg", + "publisher": "Yen Press", + "count": 1, + "series": "" + }, + { + "id": "126217", + "name": "Vikings Uprising", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6372928-vikings-uprising.jpg", + "publisher": "Titan Books", + "count": 3, + "series": "" + }, + { + "id": "119287", + "name": "Unfollow", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6799143-unfollow.jpg", + "publisher": "Vertigo Comics", + "count": 1, + "series": "2015" + }, + { + "id": "116692", + "name": "Uncle Scrooge", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6498448-uncle-scrooge.jpg", + "publisher": "IDW Publishing", + "count": 2, + "series": "2015" + }, + { + "id": "126095", + "name": "U.S.Avengers", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9876900-usavengers.jpg", + "publisher": "Marvel Comics", + "count": 71, + "series": "2016" + }, + { + "id": "120653", + "name": "Twin Star Exorcists", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2689950-twin-star-exorcists.jpg", + "publisher": "VIZ Media", + "count": 1, + "series": "" + }, + { + "id": "129846", + "name": "Tower of Comic Book Freaks", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8807756-tower-of-comic-book-freaks.jpg", + "publisher": "Caliber Comics", + "count": 1, + "series": "" + }, + { + "id": "113171", + "name": "The Wicked + The Divine", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8222681-the-wicked-the-divine.jpg", + "publisher": "Image Comics", + "count": 2, + "series": "2014" + }, + { + "id": "100004", + "name": "The Walking Dead", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3614432-the-walking-dead.jpg", + "publisher": "Image Comics", + "count": 2, + "series": "2003" + }, + { + "id": "126091", + "name": "The Unworthy Thor", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9959237-the-unworthy-thor.jpg", + "publisher": "Marvel Comics", + "count": 3, + "series": "2016" + }, + { + "id": "127003", + "name": "The Unstoppable Wasp", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7228953-the-unstoppable-wasp.jpg", + "publisher": "Marvel Comics", + "count": 7, + "series": "2016" + }, + { + "id": "116505", + "name": "The Smurfs Anthology", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6034447-the-smurfs-anthology.jpg", + "publisher": "Papercutz", + "count": 1, + "series": "" + }, + { + "id": "122692", + "name": "The Shadow Glass", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2997236-the-shadow-glass.jpg", + "publisher": "Dark Horse Comics", + "count": 1, + "series": "2016" + }, + { + "id": "119224", + "name": "The New Avengers", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7001112-the-new-avengers.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "2015" + }, + { + "id": "118443", + "name": "The Incredible Hulk: Epic Collection", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9344788-the-incredible-hulk-epic-collection.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "" + }, + { + "id": "127797", + "name": "The Incredible Hulk Epic Collection: Future Imperfect", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4858558-the-incredible-hulk-epic-collection-future-imperfect.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "" + }, + { + "id": "124366", + "name": "The Flintstones", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2335868-the-flintstones.jpg", + "publisher": "DC Comics", + "count": 2, + "series": "2016" + }, + { + "id": "128452", + "name": "The Fall and Rise of Captain Atom", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8652905-the-fall-and-rise-of-captain-atom.jpg", + "publisher": "DC Comics", + "count": 2, + "series": "2017" + }, + { + "id": "121317", + "name": "The Demon Prince of Momochi House", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9692907-the-demon-prince-of-momochi-house.jpg", + "publisher": "VIZ Media", + "count": 1, + "series": "" + }, + { + "id": "127055", + "name": "The Avengers", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9172708-the-avengers.jpg", + "publisher": "Marvel Comics", + "count": 2, + "series": "2016" + }, + { + "id": "114686", + "name": "The Autumnlands: Tooth & Claw", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8759009-the-autumnlands-tooth-claw.jpg", + "publisher": "Image Comics", + "count": 1, + "series": "2014" + }, + { + "id": "124049", + "name": "Superman", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9586230-superman.jpg", + "publisher": "DC Comics", + "count": 3, + "series": "2016" + }, + { + "id": "123443", + "name": "Strawberry Shortcake", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5037853-strawberry-shortcake.jpg", + "publisher": "IDW Publishing", + "count": 3, + "series": "" + }, + { + "id": "126430", + "name": "Steam Wars Bounty Hunters Hell For Hire", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8322314-steam-wars-bounty-hunters-hell-for-hire.jpg", + "publisher": "Antarctic Press", + "count": 1, + "series": "" + }, + { + "id": "123938", + "name": "Star Wars: Han Solo", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6916943-star-wars-han-solo.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "2016" + }, + { + "id": "126293", + "name": "Star Trek: Boldly Go", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6104235-star-trek-boldly-go.jpg", + "publisher": "IDW Publishing", + "count": 4, + "series": "2016" + }, + { + "id": "125390", + "name": "Squarriors: Summer", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8146900-squarriors-summer.jpg", + "publisher": "Devil's Due Publishing", + "count": 1, + "series": "2016" + }, + { + "id": "113454", + "name": "Spider-Man 2099", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4825708-spider-man-2099.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "2015" + }, + { + "id": "129421", + "name": "Souls Eternal", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7318109-souls-eternal.jpg", + "publisher": "Hashtag Comics", + "count": 1, + "series": "" + }, + { + "id": "126695", + "name": "Slapstick", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1539524-slapstick.jpg", + "publisher": "Marvel Comics", + "count": 2, + "series": "2016" + }, + { + "id": "128876", + "name": "Skip Beat 3-in-1 Ed", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5796858-skip-beat-3-in-1-ed.jpg", + "publisher": "VIZ Media", + "count": 1, + "series": "" + }, + { + "id": "129844", + "name": "Sixsmiths", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7156707-sixsmiths.jpg", + "publisher": "Caliber Comics", + "count": 1, + "series": "" + }, + { + "id": "124681", + "name": "Shade, The Changing Girl", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2518867-shade-the-changing-girl.jpg", + "publisher": "Young Animal", + "count": 2, + "series": "2016" + }, + { + "id": "120866", + "name": "Seraph of the End", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1026753-seraph-of-the-end.jpg", + "publisher": "VIZ Media", + "count": 1, + "series": "" + }, + { + "id": "106433", + "name": "Scooby-Doo, Where Are You?", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7966030-scooby-doo-where-are-you.jpg", + "publisher": "DC Comics", + "count": 1, + "series": "2010" + }, + { + "id": "120401", + "name": "Scarlet Witch", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7945653-scarlet-witch.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "2015" + }, + { + "id": "100002", + "name": "Saga", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2793270-saga.jpg", + "publisher": "Image Comics", + "count": 1, + "series": "2012" + }, + { + "id": "128875", + "name": "Rurouni Kenshin 3in1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8092345-rurouni-kenshin-3in1.jpg", + "publisher": "VIZ Media", + "count": 1, + "series": "" + }, + { + "id": "125992", + "name": "Rise of the Black Flame", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6889739-rise-of-the-black-flame.jpg", + "publisher": "Dark Horse Comics", + "count": 1, + "series": "2016" + }, + { + "id": "129843", + "name": "Renfield Tale of Madness", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9688670-renfield-tale-of-madness.jpg", + "publisher": "Caliber Comics", + "count": 1, + "series": "" + }, + { + "id": "113784", + "name": "Ragnarok", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5262471-ragnarok.jpg", + "publisher": "IDW Publishing", + "count": 2, + "series": "2014" + }, + { + "id": "128941", + "name": "Project Superpowers the Owl", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4502371-project-superpowers-the-owl.jpg", + "publisher": "Dynamite", + "count": 1, + "series": "" + }, + { + "id": "128651", + "name": "Princess Ai", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7485790-princess-ai.jpg", + "publisher": "Tokyopop", + "count": 2, + "series": "" + }, + { + "id": "124424", + "name": "Powerpuff Girls", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7734698-powerpuff-girls.jpg", + "publisher": "IDW Publishing", + "count": 1, + "series": "2016" + }, + { + "id": "120865", + "name": "Pokemon Xy", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6324102-pokemon-xy.jpg", + "publisher": "VIZ Media", + "count": 1, + "series": "" + }, + { + "id": "128874", + "name": "Pokemon Adv Black 2 White 2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6865898-pokemon-adv-black-2-white-2.jpg", + "publisher": "VIZ Media", + "count": 1, + "series": "" + }, + { + "id": "126354", + "name": "Optimus Prime", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1992660-optimus-prime.jpg", + "publisher": "IDW Publishing", + "count": 4, + "series": "2016" + }, + { + "id": "121150", + "name": "Old Man Logan", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6024995-old-man-logan.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "2016" + }, + { + "id": "126216", + "name": "Nova", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3777858-nova.jpg", + "publisher": "Marvel Comics", + "count": 2, + "series": "2016" + }, + { + "id": "120634", + "name": "Nisekoi: False Love", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9923729-nisekoi-false-love.jpg", + "publisher": "VIZ Media", + "count": 1, + "series": "" + }, + { + "id": "124030", + "name": "Nightwing", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8250153-nightwing.jpg", + "publisher": "DC Comics", + "count": 2, + "series": "2016" + }, + { + "id": "105552", + "name": "Neon Genesis Evangelion: The Shinji Ikari Raising Project", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4606166-neon-genesis-evangelion-the-shinji-ikari-raising-project.jpg", + "publisher": "Dark Horse Comics", + "count": 1, + "series": "" + }, + { + "id": "105516", + "name": "Naruto", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8007309-naruto.jpg", + "publisher": "VIZ Media", + "count": 1, + "series": "" + }, + { + "id": "112880", + "name": "Nailbiter", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2870681-nailbiter.jpg", + "publisher": "Image Comics", + "count": 1, + "series": "2014" + }, + { + "id": "105472", + "name": "My Little Pony: Friendship Is Magic", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4443739-my-little-pony-friendship-is-magic.jpg", + "publisher": "IDW Publishing", + "count": 1, + "series": "2012" + }, + { + "id": "105421", + "name": "Morning Glories", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4435488-morning-glories.jpg", + "publisher": "Image Comics", + "count": 1, + "series": "" + }, + { + "id": "120608", + "name": "Moon Knight", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5129075-moon-knight.jpg", + "publisher": "Marvel Comics", + "count": 4, + "series": "2016" + }, + { + "id": "127799", + "name": "Monsters Unleashed Prelude", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5078946-monsters-unleashed-prelude.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "" + }, + { + "id": "129173", + "name": "Monster Musume: I ♥ Monster Girls", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1487818-monster-musume-i-monster-girls.jpg", + "publisher": "Seven Seas Entertainment", + "count": 1, + "series": "2016" + }, + { + "id": "126024", + "name": "Midnighter and Apollo", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1837947-midnighter-and-apollo.jpg", + "publisher": "DC Comics", + "count": 1, + "series": "2016 - 2017" + }, + { + "id": "127241", + "name": "Mickey Mouse Mysterious Melody", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5360153-mickey-mouse-mysterious-melody.jpg", + "publisher": "IDW Publishing", + "count": 1, + "series": "" + }, + { + "id": "117522", + "name": "Mickey Mouse", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6418628-mickey-mouse.jpg", + "publisher": "IDW Publishing", + "count": 2, + "series": "2015" + }, + { + "id": "126701", + "name": "Masked", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2854178-masked.jpg", + "publisher": "Titan Books", + "count": 3, + "series": "2016" + }, + { + "id": "128512", + "name": "Marvel's Guardians of the Galaxy Vol. 2 Prelude", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8042847-marvels-guardians-of-the-galaxy-vol-2-prelude.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "2017" + }, + { + "id": "127798", + "name": "Marvel Universe Ult Spider-Man vs. Sinister Six Digest", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6816589-marvel-universe-ult-spider-man-vs-sinister-six-digest.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "" + }, + { + "id": "124922", + "name": "Marvel Universe Avengers: Ultron Revolution", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3730443-marvel-universe-avengers-ultron-revolution.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "2016" + }, + { + "id": "118639", + "name": "Marvel Free Previews", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6492931-marvel-free-previews.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "2015" + }, + { + "id": "130097", + "name": "Marry Me", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3548052-marry-me.jpg", + "publisher": "Other", + "count": 3, + "series": "2017" + }, + { + "id": "125132", + "name": "Life & Adventures of Santa Claus: Illus Eric Shanower", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2119416-life-adventures-of-santa-claus-illus-eric-shanower.jpg", + "publisher": "IDW Publishing", + "count": 1, + "series": "" + }, + { + "id": "127276", + "name": "Kolchak Forgotten Lore of Edgar Allen Poe", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6414040-kolchak-forgotten-lore-of-edgar-allen-poe.jpg", + "publisher": "Moonstone", + "count": 1, + "series": "" + }, + { + "id": "128109", + "name": "King Cat 76", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4219681-king-cat-76.jpg", + "publisher": "Alternative Comics", + "count": 1, + "series": "" + }, + { + "id": "127627", + "name": "Justice League vs. Suicide Squad", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8052350-justice-league-vs-suicide-squad.jpg", + "publisher": "DC Comics", + "count": 3, + "series": "2016 - 2017" + }, + { + "id": "128139", + "name": "Justice League of America: The Atom Rebirth", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8632080-justice-league-of-america-the-atom-rebirth.jpg", + "publisher": "DC Comics", + "count": 2, + "series": "2017" + }, + { + "id": "127795", + "name": "Justice League United", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9788714-justice-league-united.jpg", + "publisher": "DC Comics", + "count": 1, + "series": "" + }, + { + "id": "124085", + "name": "Justice League", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9901948-justice-league.jpg", + "publisher": "DC Comics", + "count": 2, + "series": "2016" + }, + { + "id": "116324", + "name": "Jem and The Holograms", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2575423-jem-and-the-holograms.jpg", + "publisher": "IDW Publishing", + "count": 3, + "series": "2015" + }, + { + "id": "128049", + "name": "Injustice: Gods Among Us - Ground Zero", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8719121-injustice-gods-among-us-ground-zero.jpg", + "publisher": "DC Comics", + "count": 1, + "series": "2016" + }, + { + "id": "127707", + "name": "Hawkeye", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7723942-hawkeye.jpg", + "publisher": "Marvel Comics", + "count": 2, + "series": "2016" + }, + { + "id": "124852", + "name": "Harley Quinn", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3577803-harley-quinn.jpg", + "publisher": "DC Comics", + "count": 2, + "series": "2016" + }, + { + "id": "128838", + "name": "Grumpy Cat Grumpus", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5872805-grumpy-cat-grumpus.jpg", + "publisher": "Dynamite", + "count": 1, + "series": "" + }, + { + "id": "129940", + "name": "Grimm Fairy Tales", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5205654-grimm-fairy-tales.jpg", + "publisher": "Zenescope", + "count": 1, + "series": "2016" + }, + { + "id": "124027", + "name": "Green Lanterns", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2805585-green-lanterns.jpg", + "publisher": "DC Comics", + "count": 2, + "series": "2016" + }, + { + "id": "126783", + "name": "Green Ghost Declassified", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6723039-green-ghost-declassified.jpg", + "publisher": "Moonstone", + "count": 1, + "series": "" + }, + { + "id": "124050", + "name": "Green Arrow", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8107453-green-arrow.jpg", + "publisher": "DC Comics", + "count": 4, + "series": "2016" + }, + { + "id": "127793", + "name": "Grayson", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5525728-grayson.jpg", + "publisher": "DC Comics", + "count": 1, + "series": "" + }, + { + "id": "118136", + "name": "Grant Morrison's 18 Days", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3984727-grant-morrisons-18-days.jpg", + "publisher": "Graphic India", + "count": 2, + "series": "2015" + }, + { + "id": "116374", + "name": "Giant Days", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1846049-giant-days.jpg", + "publisher": "BOOM! Studios", + "count": 1, + "series": "2015" + }, + { + "id": "101711", + "name": "G.I. Joe: A Real American Hero", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8414601-gi-joe-a-real-american-hero.jpg", + "publisher": "IDW Publishing", + "count": 2, + "series": "2010" + }, + { + "id": "122917", + "name": "Franken Fran", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3729379-franken-fran.jpg", + "publisher": "Seven Seas Entertainment", + "count": 1, + "series": "2016" + }, + { + "id": "124826", + "name": "Faith", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6152672-faith.jpg", + "publisher": "Valiant", + "count": 5, + "series": "2016" + }, + { + "id": "125524", + "name": "Everafter: From the Pages of Fables", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2202585-everafter-from-the-pages-of-fables.jpg", + "publisher": "Vertigo Comics", + "count": 1, + "series": "2016" + }, + { + "id": "127255", + "name": "Erb Land That Time Forgot", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7849540-erb-land-that-time-forgot.jpg", + "publisher": "American Mythology", + "count": 1, + "series": "" + }, + { + "id": "124728", + "name": "Equilibrium", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6883547-equilibrium.jpg", + "publisher": "American Mythology", + "count": 1, + "series": "2016" + }, + { + "id": "125095", + "name": "Eden's Fall", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9048092-edens-fall.jpg", + "publisher": "Top Cow Productions", + "count": 1, + "series": "2016" + }, + { + "id": "128291", + "name": "Dragonlance the Legend of Huma", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5958392-dragonlance-the-legend-of-huma.jpg", + "publisher": "IDW Publishing", + "count": 1, + "series": "" + }, + { + "id": "128467", + "name": "Donald & Mickey Magic Kingdom Collection", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8825311-donald-mickey-magic-kingdom-collection.jpg", + "publisher": "IDW Publishing", + "count": 1, + "series": "" + }, + { + "id": "120610", + "name": "Doctor Who: The Twelfth Doctor - Year Two", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4842197-doctor-who-the-twelfth-doctor-year-two.jpg", + "publisher": "Titan Books", + "count": 3, + "series": "2015" + }, + { + "id": "126277", + "name": "Doctor Who: The Eleventh Doctor - Year Three", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8926436-doctor-who-the-eleventh-doctor-year-three.jpg", + "publisher": "Titan Books", + "count": 5, + "series": "2016 - 2017" + }, + { + "id": "127812", + "name": "Doctor Strange / The Punisher: Magic Bullets", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9226857-doctor-strange-the-punisher-magic-bullets.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "2016 - 2017" + }, + { + "id": "123681", + "name": "Disney Princess", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8501592-disney-princess.jpg", + "publisher": "Disney Comics", + "count": 1, + "series": "2016" + }, + { + "id": "128114", + "name": "Deaths Dark Angel", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3736111-deaths-dark-angel.jpg", + "publisher": "American Mythology", + "count": 1, + "series": "" + }, + { + "id": "126194", + "name": "Death of Hawkman", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6906139-death-of-hawkman.jpg", + "publisher": "DC Comics", + "count": 1, + "series": "2016 - 2017" + }, + { + "id": "126093", + "name": "Deadpool: Too Soon?", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5224475-deadpool-too-soon.jpg", + "publisher": "Marvel Comics", + "count": 2, + "series": "2016" + }, + { + "id": "128183", + "name": "Deadpool the Duck", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5647354-deadpool-the-duck.jpg", + "publisher": "Marvel Comics", + "count": 6, + "series": "2017" + }, + { + "id": "118817", + "name": "Deadpool", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4879833-deadpool.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "2015" + }, + { + "id": "128199", + "name": "DC Super Hero Girls: Past Times at Super Hero High", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8666781-dc-super-hero-girls-past-times-at-super-hero-high.jpg", + "publisher": "DC Comics", + "count": 1, + "series": "2016" + }, + { + "id": "118168", + "name": "DC Comics Bombshells", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6698577-dc-comics-bombshells.jpg", + "publisher": "DC Comics", + "count": 1, + "series": "2015" + }, + { + "id": "125400", + "name": "Cyborg", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1281939-cyborg.jpg", + "publisher": "DC Comics", + "count": 2, + "series": "2016" + }, + { + "id": "126811", + "name": "Chris Samnee Daredevil", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2628089-chris-samnee-daredevil.jpg", + "publisher": "IDW Publishing", + "count": 1, + "series": "" + }, + { + "id": "126077", + "name": "Champions", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7384900-champions.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "2016" + }, + { + "id": "127792", + "name": "Catwoman", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4549332-catwoman.jpg", + "publisher": "DC Comics", + "count": 1, + "series": "" + }, + { + "id": "119116", + "name": "Captain America: Sam Wilson", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5476098-captain-america-sam-wilson.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "2015" + }, + { + "id": "126082", + "name": "Cannibal", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3393034-cannibal.jpg", + "publisher": "Image Comics", + "count": 1, + "series": "2016" + }, + { + "id": "128865", + "name": "Box Office Poison Color Comics", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2602415-box-office-poison-color-comics.jpg", + "publisher": "IDW Publishing", + "count": 1, + "series": "" + }, + { + "id": "128837", + "name": "Boo Worlds Cutest Dog Walk In the Park", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3930907-boo-worlds-cutest-dog-walk-in-the-park.jpg", + "publisher": "Dynamite", + "count": 1, + "series": "" + }, + { + "id": "114097", + "name": "Bob's Burgers", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3367848-bobs-burgers.jpg", + "publisher": "Dynamite", + "count": 1, + "series": "2015" + }, + { + "id": "122562", + "name": "Bloodlines", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3776946-bloodlines.jpg", + "publisher": "DC Comics", + "count": 1, + "series": "2016" + }, + { + "id": "111511", + "name": "Black Science", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9694083-black-science.jpg", + "publisher": "Image Comics", + "count": 1, + "series": "2013" + }, + { + "id": "127866", + "name": "Bizenghast 3in1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5054211-bizenghast-3in1.jpg", + "publisher": "Tokyopop", + "count": 1, + "series": "" + }, + { + "id": "128891", + "name": "Big Trouble in Little China / Escape From New York", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2076021-big-trouble-in-little-china-escape-from-new-york.jpg", + "publisher": "BOOM! Studios", + "count": 2, + "series": "2016" + }, + { + "id": "126627", + "name": "Betty Boop", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1607215-betty-boop.jpg", + "publisher": "Dynamite", + "count": 1, + "series": "" + }, + { + "id": "121680", + "name": "Behind the Scenes", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1690460-behind-the-scenes.jpg", + "publisher": "VIZ Media", + "count": 1, + "series": "" + }, + { + "id": "124024", + "name": "Batman", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6436185-batman.jpg", + "publisher": "DC Comics", + "count": 2, + "series": "2016" + }, + { + "id": "123183", + "name": "Back to the Future: Citizen Brown", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8886084-back-to-the-future-citizen-brown.jpg", + "publisher": "IDW Publishing", + "count": 1, + "series": "2016" + }, + { + "id": "116752", + "name": "Attack On Titan", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5715291-attack-on-titan.jpg", + "publisher": "Kodansha Comics", + "count": 1, + "series": "2012" + }, + { + "id": "118564", + "name": "Astro Boy", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8928676-astro-boy.jpg", + "publisher": "Dark Horse Comics", + "count": 1, + "series": "" + }, + { + "id": "121316", + "name": "Art of Magic: The Gathering", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2010124-art-of-magic-the-gathering.jpg", + "publisher": "VIZ Media", + "count": 1, + "series": "" + }, + { + "id": "127297", + "name": "Army of Darkness / Xena: Forever... And A Day", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8262062-army-of-darkness-xena-forever-and-a-day.jpg", + "publisher": "Dynamite", + "count": 1, + "series": "2016" + }, + { + "id": "115128", + "name": "Archie Comics Digest", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1481243-archie-comics-digest.jpg", + "publisher": "Archie Comics", + "count": 1, + "series": "2014" + }, + { + "id": "126661", + "name": "Archie 75th Anniversary Digest", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7997604-archie-75th-anniversary-digest.jpg", + "publisher": "Archie Comics", + "count": 1, + "series": "2016" + }, + { + "id": "124035", + "name": "Aquaman", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1796701-aquaman.jpg", + "publisher": "DC Comics", + "count": 2, + "series": "2016" + }, + { + "id": "127796", + "name": "Amazing Spider-Man Worldwide", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6182300-amazing-spider-man-worldwide.jpg", + "publisher": "Marvel Comics", + "count": 1, + "series": "" + }, + { + "id": "100124", + "name": "Adventure Time", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8903990-adventure-time.jpg", + "publisher": "BOOM! Studios", + "count": 2, + "series": "2012" + }, + { + "id": "122476", + "name": "A&A", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6826764-aa.jpg", + "publisher": "Valiant", + "count": 3, + "series": "2016 - 2017" + }, + { + "id": "100255", + "name": "2000 AD", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9266415-2000-ad.jpg", + "publisher": "Rebellion", + "count": 1, + "series": "" + } +] diff --git a/test/shared/pull-list/issues-list.spec.js b/test/shared/pull-list/issues-list.spec.js index c76adf1..7e68240 100644 --- a/test/shared/pull-list/issues-list.spec.js +++ b/test/shared/pull-list/issues-list.spec.js @@ -1,6 +1,7 @@ const _ = require('lodash'); const allIssuesPullList = require('./test-data/all-issues-pull-list'); const filteredIssuesPullList = require('./test-data/filtered-issues-pull-list'); +const sortedIssuesPullList = require('./test-data/sorted-issues-pull-list'); module.exports = function (lofcg, pullListDate) { describe('get issues list', function () { @@ -37,6 +38,30 @@ module.exports = function (lofcg, pullListDate) { }); }); + it('should provide a sorted list of comics from a users pull list', function (done) { + lofcg.pullList.get(readonlyUserId, pullListDate, { sort: 'desc' }, (err, pullList) => { + expect(err).toBeNull(); + expect(pullList.length).toBe(2); + expect(pullList).toEqual(sortedIssuesPullList); + _.each(pullList, (comic) => { + expect(comic).toBeAComicIssue(); + }); + done(); + }); + }); + + it('should provide a custom sorted list of comics from a users pull list', function (done) { + lofcg.pullList.get(readonlyUserId, pullListDate, { sort: 'pulls' }, (err, pullList) => { + expect(err).toBeNull(); + expect(pullList.length).toBe(2); + expect(pullList).toEqual(sortedIssuesPullList); // Custom sorting is the same order as descending + _.each(pullList, (comic) => { + expect(comic).toBeAComicIssue(); + }); + done(); + }); + }); + it('should return an error when provided with an invalid date', function (done) { lofcg.pullList.get(readonlyUserId, 'foo', (err) => { expect(err).toEqual(jasmine.any(Error)); diff --git a/test/shared/pull-list/series-list.spec.js b/test/shared/pull-list/series-list.spec.js index a40f844..b8797d8 100644 --- a/test/shared/pull-list/series-list.spec.js +++ b/test/shared/pull-list/series-list.spec.js @@ -1,10 +1,13 @@ const _ = require('lodash'); const allSeriesPullList = require('./test-data/all-series-pull-list'); const filteredSeriesPullList = require('./test-data/filtered-series-pull-list'); +const sortedSeriesPullList = require('./test-data/sorted-series-pull-list'); module.exports = function (lofcg, pullListDate) { const options = { type: lofcg.types.SERIES }; const filteredOptions = _.extend({ publishers: ['Image Comics'] }, options); + const sortedOptions = _.extend({ sort: 'desc' }, options); + const customSortedOptions = _.extend({ sort: 'pulls' }, options); describe('get series list', function () { it('should provide no comics in pull list with an invalid user id', function (done) { @@ -40,6 +43,30 @@ module.exports = function (lofcg, pullListDate) { }); }); + it('should provide a sorted list of comics from a users pull list', function (done) { + lofcg.pullList.get(readonlyUserId, pullListDate, sortedOptions, (err, pullList) => { + expect(err).toBeNull(); + expect(pullList.length).toBe(2); + expect(pullList).toEqual(sortedSeriesPullList); + _.each(pullList, (comic) => { + expect(comic).toBeAComicSeries(); + }); + done(); + }); + }); + + it('should provide a custom sorted list of comics from a users pull list', function (done) { + lofcg.pullList.get(readonlyUserId, pullListDate, customSortedOptions, (err, pullList) => { + expect(err).toBeNull(); + expect(pullList.length).toBe(2); + expect(pullList).toEqual(allSeriesPullList); // Custom sorting does not apply to series + _.each(pullList, (comic) => { + expect(comic).toBeAComicSeries(); + }); + done(); + }); + }); + it('should return an error when provided with an invalid date', function (done) { lofcg.pullList.get(readonlyUserId, 'foo', options, (err) => { expect(err).toEqual(jasmine.any(Error)); diff --git a/test/shared/pull-list/test-data/sorted-issues-pull-list.json b/test/shared/pull-list/test-data/sorted-issues-pull-list.json new file mode 100644 index 0000000..b5d1070 --- /dev/null +++ b/test/shared/pull-list/test-data/sorted-issues-pull-list.json @@ -0,0 +1,20 @@ +[ + { + "id": "8900134", + "name": "Paper Girls #14", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8900134-paper-girls-14.jpg?1491528970", + "publisher": "Image Comics", + "description": "Here comes the future!", + "releaseDate": "2017-05-03", + "price": "$2.99" + }, + { + "id": "9302457", + "name": "Adventure Time #64", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9302457-adventure-time-64.jpg?1487829188", + "publisher": "BOOM! Studios", + "description": "The Best Princess Ever is finally going to be chosen! Who will it be? And will the prankster finally reveal themselves before they ruin the whole event?", + "releaseDate": "2017-05-03", + "price": "$3.99" + } +] diff --git a/test/shared/pull-list/test-data/sorted-series-pull-list.json b/test/shared/pull-list/test-data/sorted-series-pull-list.json new file mode 100644 index 0000000..dbc9553 --- /dev/null +++ b/test/shared/pull-list/test-data/sorted-series-pull-list.json @@ -0,0 +1,18 @@ +[ + { + "id": "116147", + "name": "Paper Girls", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8900134-paper-girls.jpg", + "publisher": "Image Comics", + "count": 1, + "series": "2015" + }, + { + "id": "100124", + "name": "Adventure Time", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9302457-adventure-time.jpg", + "publisher": "BOOM! Studios", + "count": 1, + "series": "2012" + } +] diff --git a/test/shared/read-list/issues-list.spec.js b/test/shared/read-list/issues-list.spec.js index eaf0089..e0989e2 100644 --- a/test/shared/read-list/issues-list.spec.js +++ b/test/shared/read-list/issues-list.spec.js @@ -1,6 +1,7 @@ const _ = require('lodash'); const allIssuesReadList = require('./test-data/all-issues-read-list'); const filteredIssuesReadList = require('./test-data/filtered-issues-read-list'); +const sortedIssuesReadList = require('./test-data/sorted-issues-read-list'); module.exports = function (lofcg) { describe('get issues list', function () { @@ -36,5 +37,17 @@ module.exports = function (lofcg) { done(); }); }); + + it('should provide a sorted list of comics from a users read list', function (done) { + lofcg.readList.get(readonlyUserId, { sort: 'desc' }, (err, readList) => { + expect(err).toBeNull(); + expect(readList.length).toBe(34); + expect(readList).toEqual(sortedIssuesReadList); + _.each(readList, (comic) => { + expect(comic).toBeAComicIssue(); + }); + done(); + }); + }); }); }; diff --git a/test/shared/read-list/series-list.spec.js b/test/shared/read-list/series-list.spec.js index 1a9951e..629d44b 100644 --- a/test/shared/read-list/series-list.spec.js +++ b/test/shared/read-list/series-list.spec.js @@ -1,10 +1,12 @@ const _ = require('lodash'); const allSeriesReadList = require('./test-data/all-series-read-list'); const filteredSeriesReadList = require('./test-data/filtered-series-read-list'); +const sortedSeriesReadList = require('./test-data/sorted-series-read-list'); module.exports = function (lofcg) { const options = { type: lofcg.types.SERIES }; const filteredOptions = _.extend({ publishers: ['Image Comics'] }, options); + const sortedOptions = _.extend({ sort: 'desc' }, options); describe('get series list', function () { it('should provide no comics in read list with an invalid user id', function (done) { @@ -39,5 +41,17 @@ module.exports = function (lofcg) { done(); }); }); + + it('should provide a sorted list of comics from a users read list', function (done) { + lofcg.readList.get(readonlyUserId, sortedOptions, (err, readList) => { + expect(err).toBeNull(); + expect(readList.length).toBe(4); + expect(readList).toEqual(sortedSeriesReadList); + _.each(readList, (comic) => { + expect(comic).toBeAComicSeries(); + }); + done(); + }); + }); }); }; diff --git a/test/shared/read-list/test-data/sorted-issues-read-list.json b/test/shared/read-list/test-data/sorted-issues-read-list.json new file mode 100644 index 0000000..e75de13 --- /dev/null +++ b/test/shared/read-list/test-data/sorted-issues-read-list.json @@ -0,0 +1,308 @@ +[ + { + "id": "8229407", + "name": "The Unbeatable Squirrel Girl #5", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8229407-the-unbeatable-squirrel-girl-5.jpg?1430774737", + "publisher": "Marvel Comics", + "description": "The breakout character of 2015 continues her one-woman crusade against injustice and jerks in this standalone issue, a perfect jumping-on point for new readers! These TAILS of the Squirrel Girl will show you the Marvel Universe's...", + "releaseDate": "2015-05-06", + "price": "$3.99" + }, + { + "id": "4859051", + "name": "The Unbeatable Squirrel Girl #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4859051-the-unbeatable-squirrel-girl-4.jpg?1429615279", + "publisher": "Marvel Comics", + "description": "The final showdown between Galactus and Squirrel Girl is here! It's the Power Cosmic versus the Power Chestnut: WHO WILL WIN? Also, Squirrel Girl is late for class. So there's TWO disasters coming!!", + "releaseDate": "2015-04-22", + "price": "$3.99" + }, + { + "id": "2790619", + "name": "The Unbeatable Squirrel Girl #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2790619-the-unbeatable-squirrel-girl-3.jpg?1426546075", + "publisher": "Marvel Comics", + "description": "Time is running out, and the only way for Squirrel Girl to stop Galactus is to get to the moon... you know, somehow?? See the unveiling of Squirrel Girl's new Flying Squirrel Suit... that she maaaaybe borrowed from Iron...", + "releaseDate": "2015-03-18", + "price": "$3.99" + }, + { + "id": "6677681", + "name": "The Unbeatable Squirrel Girl #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6677681-the-unbeatable-squirrel-girl-2.jpg?1422921950", + "publisher": "Marvel Comics", + "description": "Starting college is hard enough, but now Squirrel Girl has to deal with Galactus too? The fate of the entire planet hangs in the balance, and only Squirrel Girl can save it! Also, her squirrel friend Tippy Toe. She can help...", + "releaseDate": "2015-02-04", + "price": "$3.99" + }, + { + "id": "8374448", + "name": "The Unbeatable Squirrel Girl #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8374448-the-unbeatable-squirrel-girl-1.jpg?1420501293", + "publisher": "Marvel Comics", + "description": "Wolverine, Deadpool, Doctor Doom, Thanos: There's one hero that's beaten them all-and now she's got her own ongoing series! (Not that she's bragging.) That's right, you asked for it, you got it, it's...", + "releaseDate": "2015-01-07", + "price": "$3.99" + }, + { + "id": "7971730", + "name": "Rick and Morty: Lil' Poopy Superstar #5", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7971730-rick-and-morty-lil-poopy-superstar-5.jpg?1479253939", + "publisher": "Oni Press", + "description": "It's finally the most anticipated event of the year, Prom! Mr. Poopybutthole and Summer are all dressed up and ready to unwind after a stressful adventure, but when some uninvited guests crash the party they make it...", + "releaseDate": "2016-11-16", + "price": "$3.99" + }, + { + "id": "9872623", + "name": "Rick and Morty: Lil' Poopy Superstar #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9872623-rick-and-morty-lil-poopy-superstar-4.jpg?1476835120", + "publisher": "Oni Press", + "description": "Mr. Poopybutthole is up to his top hat in trouble! Kidnapped and tied to a chair, Mr. Poopybutthole must negotiate with his crooked agent! Otherwise he'll get forced into a contract of being a glamorous tv/movie star...", + "releaseDate": "2016-10-19", + "price": "$3.99" + }, + { + "id": "7291412", + "name": "Rick and Morty: Lil' Poopy Superstar #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7291412-rick-and-morty-lil-poopy-superstar-3.jpg?1474371706", + "publisher": "Oni Press", + "description": "Things take a turn for the worse when Summer and Mr. Poopybutthole get split up and Summer ends up in space jail! What's even up with space jail? What would Mr. Poopybutthole do? All we know is that Summer must break...", + "releaseDate": "2016-09-21", + "price": "$3.99" + }, + { + "id": "5988322", + "name": "Rick and Morty: Lil' Poopy Superstar #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5988322-rick-and-morty-lil-poopy-superstar-2.jpg?1472512212", + "publisher": "Oni Press", + "description": "Mr. Poopybutthole lets Summer Smith in on an industry secret: that being a huge TV and movie star isn't what it's cracked up to be! He should know after all, seeing as he was this dimension's biggest Lil'...", + "releaseDate": "2016-08-31", + "price": "$3.99" + }, + { + "id": "9691807", + "name": "Rick and Morty: Lil' Poopy Superstar #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9691807-rick-and-morty-lil-poopy-superstar-1.jpg?1468327148", + "publisher": "Oni Press", + "description": "A new comic miniseries based on Dan Harmon and Justin Roiland’s hilarious [adult swim] animated show Rick and Morty? Oooo-wee, that sounds great! Mr. Poopybutthole is in trouble, and he turns to the one person he can...", + "releaseDate": "2016-07-13", + "price": "$3.99" + }, + { + "id": "4148513", + "name": "Paper Girls #9", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4148513-paper-girls-9.jpg?1473205081", + "publisher": "Image Comics", + "description": "The future collides with the past in our present- day 2016, and the Paper Girls must make a difficult decision about who to trust.", + "releaseDate": "2016-09-07", + "price": "$2.99" + }, + { + "id": "9240446", + "name": "Paper Girls #8", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9240446-paper-girls-8.jpg?1470505352", + "publisher": "Image Comics", + "description": "Three young heroes from 1988 have been catapulted to the twenty-first century, and to make matters worse, something horrible has followed them there.", + "releaseDate": "2016-08-03", + "price": "$2.99" + }, + { + "id": "3429543", + "name": "Paper Girls #7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3429543-paper-girls-7.jpg?1467847159", + "publisher": "Image Comics", + "description": "Trapped in a dark future, Erin and her fellow deliverers from 1988 uncover shocking truths about their own fates.", + "releaseDate": "2016-07-06", + "price": "$2.99" + }, + { + "id": "2519140", + "name": "Paper Girls #6", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2519140-paper-girls-6.jpg?1464738761", + "publisher": "Image Comics", + "description": "The smash-hit ongoing series returns with a bold new direction, as Erin, Mac, and Tiffany find themselves launched from 1988 to a distant and terrifying future.", + "releaseDate": "2016-06-01", + "price": "$2.99" + }, + { + "id": "1462701", + "name": "Paper Girls #5", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1462701-paper-girls-5.jpg?1454459165", + "publisher": "Image Comics", + "description": "The first arc of the smash-hit ongoing series concludes with major revelations and another game-changing cliffhanger.", + "releaseDate": "2016-02-03", + "price": "$2.99" + }, + { + "id": "3173369", + "name": "Paper Girls #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3173369-paper-girls-4.jpg?1452042176", + "publisher": "Image Comics", + "description": "What lurks beneath the streets of Stony Stream?", + "releaseDate": "2016-01-06", + "price": "$2.99" + }, + { + "id": "8137536", + "name": "Paper Girls #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8137536-paper-girls-3.jpg?1448973082", + "publisher": "Image Comics", + "description": "The ongoing mystery series from BRIAN K. VAUGHAN & CLIFF CHIANG charges ahead, as the girls have a close encounter with an unexpected visitor.", + "releaseDate": "2015-12-02", + "price": "$2.99" + }, + { + "id": "5947148", + "name": "Paper Girls #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5947148-paper-girls-2.jpg?1446597882", + "publisher": "Image Comics", + "description": "The hottest new ongoing series of the year continues, as the Paper Girls witness the impossible.", + "releaseDate": "2015-11-04", + "price": "$2.99" + }, + { + "id": "8471271", + "name": "Paper Girls #13", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8471271-paper-girls-13.jpg?1491356957", + "publisher": "Image Comics", + "description": "Trapped in the distant past, KJ discovers something shocking about the future.", + "releaseDate": "2017-04-05", + "price": "$2.99" + }, + { + "id": "8972309", + "name": "Paper Girls #12", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8972309-paper-girls-12.jpg?1488242590", + "publisher": "Image Comics", + "description": "Growing up can be deadly.", + "releaseDate": "2017-03-01", + "price": "$2.99" + }, + { + "id": "5996813", + "name": "Paper Girls #11", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5996813-paper-girls-11.jpg?1485819569", + "publisher": "Image Comics", + "description": "A BOLD NEW STORYLINE STARTS HERE! The Eisner and Harvey Award-winning “Best New Series\" from BRIAN K. VAUGHAN andCLIFF CHIANG returns, as Erin, Mac, and Tiffany finally reunite with their long-lost friend KJ…only...", + "releaseDate": "2017-02-01", + "price": "$2.99" + }, + { + "id": "5900157", + "name": "Paper Girls #10", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5900157-paper-girls-10.jpg?1475631000", + "publisher": "Image Comics", + "description": "The second arc of the smash-hit ongoing series concludes with the Paper Girls risking everything to escape the 21st Century… but if any survive, where will they end up next?", + "releaseDate": "2016-10-05", + "price": "$2.99" + }, + { + "id": "1094288", + "name": "Paper Girls #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1094288-paper-girls-1.jpg?1444251251", + "publisher": "Image Comics", + "description": "SAGA writer BRIAN K. VAUGHAN launches a brand-new ONGOING SERIES with superstar Wonder Woman artist CLIFF CHIANG! In the early hours after Halloween of 1988, four 12-year-old newspaper delivery girls uncover the most important...", + "releaseDate": "2015-10-07", + "price": "$2.99" + }, + { + "id": "2494536", + "name": "Adventure Time #9", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2494536-adventure-time-9.jpg?1351399683", + "publisher": "BOOM! Studios", + "description": "BRAND-NEW STORY ARC! PERFECT JUMPING-ON POINT FOR NEW READERS! Join Jake the Dog and Finn the Human as they try to right the wrongs of a Jake-caused TIME PARADOX! If you haven't checked out the comic book adaptation of the...", + "releaseDate": "2012-10-24", + "price": "$3.99" + }, + { + "id": "6538129", + "name": "Adventure Time #8", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6538129-adventure-time-8.jpg?1481309427", + "publisher": "BOOM! Studios", + "description": "THE MOST POPULAR AND TOTALLY RHOMBUS ALL-AGES COMIC ON THE STANDS TODAY! Join Jake the Dog and Finn the Human in another awesome issue of this all-ages classic! With Ooo in the grips of a Jake-caused time paradox, there's...", + "releaseDate": "2012-09-26", + "price": "$3.99" + }, + { + "id": "1205249", + "name": "Adventure Time #7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1205249-adventure-time-7.jpg?1460121549", + "publisher": "BOOM! Studios", + "description": "JOIN JAKE THE DOG AND FINN THE HUMAN AS THE HOTTEST ALL-AGES COMIC BOOK ON THE STANDS CONTINUES! The totally mathematical adventure continues in this latest time-bending issue of ADVENTURE TIME! Order early -- issue #1 went...", + "releaseDate": "2012-08-22", + "price": "$3.99" + }, + { + "id": "2705608", + "name": "Adventure Time #6", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2705608-adventure-time-6.jpg?1351042750", + "publisher": "BOOM! Studios", + "description": "THE FUN WILL NEVER END IN THIS HOT ALL-AGES SERIES! The awesome adventures of Finn, Jake, Marceline, Princess Bubblegum and the Ice King continue in the latest issue of this critically-acclaimed, on-going series! Demand...", + "releaseDate": "2012-07-18", + "price": "$3.99" + }, + { + "id": "7381906", + "name": "Adventure Time #5", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7381906-adventure-time-5.jpg?1351042756", + "publisher": "BOOM! Studios", + "description": "Don't miss the beginning of the new arc of this totally rhombus series! The totally sick gang of Finn, Jake, Marceline, Princess Bubblegum, and the Ice King are back in this new arc of the incredibly popular all-ages...", + "releaseDate": "2012-06-20", + "price": "$3.99" + }, + { + "id": "5195551", + "name": "Adventure Time #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5195551-adventure-time-4.jpg?1460121462", + "publisher": "BOOM! Studios", + "description": "Oh My Glob! The Latest Super-Cool Issue of the Hit Series! Finn, Jake, Marceline, Princess Bubblegum and even Lumpy Space Princess have banded together to stop that jerk the Lich from throwing all of Ooo into the sun! It's...", + "releaseDate": "2012-05-16", + "price": "$3.99" + }, + { + "id": "3714650", + "name": "Adventure Time #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3714650-adventure-time-3.jpg?1351042767", + "publisher": "BOOM! Studios", + "description": "Algebraic! Don't miss Finn, Jake, and all of their friends on their biggest adventure yet! Trapped by the dreaded Lich, the guys gotta stop all of Ooo from being sucked away forever - and rescue a bunch of wayward Princesses....", + "releaseDate": "2012-04-11", + "price": "$3.99" + }, + { + "id": "5232458", + "name": "Adventure Time #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5232458-adventure-time-2.jpg?1351042771", + "publisher": "BOOM! Studios", + "description": "It's Totally Mathematical! Join Finn, Jake, and all of their friends in this second issue of the ongoing comic book series showcasing all-new adventures through the magical Land of Ooo. The boys have embarked on another...", + "releaseDate": "2012-03-14", + "price": "$3.99" + }, + { + "id": "6782447", + "name": "Adventure Time #11", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6782447-adventure-time-11.jpg?1355893962", + "publisher": "BOOM! Studios", + "description": "THE FINAL TOTALLY AWESOME ISSUE OF THIS ADVENTURE TIME MINI-SERIES! Can the Scream Queens rock their crazy-huge biggest gig ever...and will Princess Bubblegum finally discover the true meaning of ROCK? Final issue of this...", + "releaseDate": "2012-12-19", + "price": "$3.99" + }, + { + "id": "9426413", + "name": "Adventure Time #10", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9426413-adventure-time-10.jpg?1407162985", + "publisher": "BOOM! Studios", + "description": "THERE'S NO BETTER TIME TO JUMP INTO THE ALL-AGES SENSATION! Join Jake the Dog and Finn the Human as they have sensational adventures in the magical land of Ooo! If you haven't checked out the comic book adaptation...", + "releaseDate": "2012-11-28", + "price": "$3.99" + }, + { + "id": "4281652", + "name": "Adventure Time #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4281652-adventure-time-1.jpg?1351042776", + "publisher": "BOOM! Studios", + "description": "It's Adventure Time! Join Finn the Human, Jake the Dog, and Princess Bubblegum for all-new adventures through The Land of Ooo. The top-rated Cartoon Network show now has its own comic book! With the show exploding in the...", + "releaseDate": "2012-02-08", + "price": "$3.99" + } +] diff --git a/test/shared/read-list/test-data/sorted-series-read-list.json b/test/shared/read-list/test-data/sorted-series-read-list.json new file mode 100644 index 0000000..fca0576 --- /dev/null +++ b/test/shared/read-list/test-data/sorted-series-read-list.json @@ -0,0 +1,34 @@ +[ + { + "id": "115200", + "name": "The Unbeatable Squirrel Girl", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2790619-the-unbeatable-squirrel-girl.jpg", + "publisher": "Marvel Comics", + "count": 5, + "series": "2015" + }, + { + "id": "124432", + "name": "Rick and Morty: Lil' Poopy Superstar", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5988322-rick-and-morty-lil-poopy-superstar.jpg", + "publisher": "Oni Press", + "count": 5, + "series": "2016" + }, + { + "id": "116147", + "name": "Paper Girls", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1094288-paper-girls.jpg", + "publisher": "Image Comics", + "count": 13, + "series": "2015" + }, + { + "id": "100124", + "name": "Adventure Time", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1205249-adventure-time.jpg", + "publisher": "BOOM! Studios", + "count": 11, + "series": "2012" + } +] diff --git a/test/shared/search-results/issues-list.spec.js b/test/shared/search-results/issues-list.spec.js index d7bd6e2..aee2f03 100644 --- a/test/shared/search-results/issues-list.spec.js +++ b/test/shared/search-results/issues-list.spec.js @@ -1,6 +1,7 @@ const _ = require('lodash'); const allIssuesBlackMagic = require('./test-data/all-issues-black-magic'); const filteredIssuesBlackMagic = require('./test-data/filtered-issues-black-magic'); +const sortedIssuesBlackMagic = require('./test-data/sorted-issues-black-magic'); module.exports = function (lofcg, searchTerm) { describe('get issues list', function () { @@ -36,5 +37,17 @@ module.exports = function (lofcg, searchTerm) { done(); }); }); + + it('should provide a sorted list of new comics', function (done) { + lofcg.searchResults.get(searchTerm, { sort: 'desc' }, (err, searchResults) => { + expect(err).toBeNull(); + expect(searchResults.length).toBe(38); + expect(searchResults).toEqual(sortedIssuesBlackMagic); + _.each(searchResults, (comic) => { + expect(comic).toBeAComicIssue(); + }); + done(); + }); + }); }); }; diff --git a/test/shared/search-results/series-list.spec.js b/test/shared/search-results/series-list.spec.js index c1ccad0..35dbb20 100644 --- a/test/shared/search-results/series-list.spec.js +++ b/test/shared/search-results/series-list.spec.js @@ -1,10 +1,12 @@ const _ = require('lodash'); const allSeriesBlackMagic = require('./test-data/all-series-black-magic'); const filteredSeriesBlackMagic = require('./test-data/filtered-series-black-magic'); +const sortedSeriesBlackMagic = require('./test-data/sorted-series-black-magic'); module.exports = function (lofcg, searchTerm) { const options = { type: lofcg.types.SERIES }; const filteredOptions = _.extend({ publishers: ['Image Comics'] }, options); + const sortedOptions = _.extend({ sort: 'desc' }, options); describe('get series list', function () { it('should provide no results for unknown search term', function (done) { @@ -39,5 +41,17 @@ module.exports = function (lofcg, searchTerm) { done(); }); }); + + it('should provide a sorted list of new comics', function (done) { + lofcg.searchResults.get(searchTerm, sortedOptions, (err, searchResults) => { + expect(err).toBeNull(); + expect(searchResults.length).toBe(8); + expect(searchResults).toEqual(sortedSeriesBlackMagic); + _.each(searchResults, (comic) => { + expect(comic).toBeAComicSeries(); + }); + done(); + }); + }); }); }; diff --git a/test/shared/search-results/test-data/sorted-issues-black-magic.json b/test/shared/search-results/test-data/sorted-issues-black-magic.json new file mode 100644 index 0000000..dd2aa39 --- /dev/null +++ b/test/shared/search-results/test-data/sorted-issues-black-magic.json @@ -0,0 +1,344 @@ +[ + { + "id": "3122061", + "name": "Image Firsts Black Magick #1", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Image Comics", + "description": "Image Comics is pleased to offer Image Firsts editions, printings of the first issues of some of the hottest, bestselling creator-owned series that only cost $1. Perfect for readers interested in trying out a variety of...", + "releaseDate": "2017-05-03", + "price": "$1.00" + }, + { + "id": "6405245", + "name": "Gravel: Combat Magician #4 Black Magic Retailer Incentive Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6405245-gravel-combat-magician-4-black-magic-retailer-incentive-variant.jpg?1400954607", + "publisher": "Avatar Press", + "description": "After agreeing to once again assist with the British SAS Combat Magician Programme, Gravel has completed his first assignment after his release from prison. A rogue British CM who was terrorizing the Tokyo subway system...", + "releaseDate": "2014-05-14", + "price": "$6.60" + }, + { + "id": "9943008", + "name": "Gravel: Combat Magician #3 Black Magic Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9943008-gravel-combat-magician-3-black-magic-variant.jpg?1395717214", + "publisher": "Avatar Press", + "description": "On a clandestine mission to Tokyo to clean up the mess created by another British Combat Magician, Gravel must find the rogue madman or risk an international incident. But once he comes face-to-face with his occult-powered...", + "releaseDate": "2014-04-23", + "price": "$6.60" + }, + { + "id": "7636785", + "name": "Gravel #9 Black Magic Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Avatar Press", + "description": "Combat Magician William Gravel is back in this second story arc of his ongoing series! SAS Sergeant Major and combat magician William Gravel can be a cold and efficient killing machine, but it's usually just a job -- very...", + "releaseDate": "2009-02-11", + "price": "" + }, + { + "id": "8077024", + "name": "Gravel #5 BLACK MAGIC ED INCV CVR", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8077024-gravel-5-black-magic-ed-incv-cvr.jpg?1372471927", + "publisher": "Avatar Press", + "description": "Gravel, the explosive monthly series from Ellis and Wolfer, continues its wild and bloody run! After his victory in a frenzied battle to the death with Edwin Royston and nine powerful Combat Magicians, William Gravel travels...", + "releaseDate": "2008-09-17", + "price": "" + }, + { + "id": "3606346", + "name": "Gravel #12 5-copy Black Magic Incv", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Avatar Press", + "description": "Combat Magician William Gravel is playing with powers far beyond his own in this second story arc of his ongoing series! The nature of the game William Gravel's playing is revealed. He has a process for discovering who killed...", + "releaseDate": "2009-07-01", + "price": "" + }, + { + "id": "1223820", + "name": "Gravel #11 Black Magic Incentive Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Avatar Press", + "description": "Combat Magician William Gravel is getting a bit out of his depth in this second story arc of his ongoing series! Someone's lying to William Gravel. Usually, when that happens, they die horribly soon after. But Gravel is...", + "releaseDate": "2009-05-13", + "price": "" + }, + { + "id": "9216955", + "name": "Gravel #10 Black Magic Variant", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Avatar Press", + "description": "Combat Magician William Gravel is getting a bit out of his depth in this second story arc of his ongoing series! Out by Glastonbury Tor, on the grasslands that were once under the lake around Avalon, the mythical place from...", + "releaseDate": "2009-04-01", + "price": "" + }, + { + "id": "4237800", + "name": "Dakkon Blackblade: A Magic the Gathering Legend #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4237800-dakkon-blackblade-a-magic-the-gathering-legend-1.jpg?1470458891", + "publisher": "Other", + "description": "", + "releaseDate": "1996-06-01", + "price": "" + }, + { + "id": "5566490", + "name": "Black Magick Vol. 1: Awakening Part One TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5566490-black-magick-vol-1-awakening-part-one-tp.jpg?1461625461", + "publisher": "Image Comics", + "description": "SPECIAL LOW INTRODUCTORY PRICE OF $9.99 Rowan Black is a detective with the Portsmouth PD... and a witch, two aspects of her life she has struggled to keep separate. Now someone is targeting Rowan, someone who knows her...", + "releaseDate": "2016-04-27", + "price": "$9.99" + }, + { + "id": "3055692", + "name": "Black Magick #6 Cover B Sharpe", + "cover": "http://leagueofcomicgeeks.com/assets/images/no-cover-med.jpg", + "publisher": "Image Comics", + "description": "What the hell is the deal with Rowan Black, anyway? For that matter, just how many “real” witches are there? What is the bond that ties Rowan and Alex together? Is the series really coming back, or is this just...", + "releaseDate": "2017-06-28", + "price": "$3.99" + }, + { + "id": "3992270", + "name": "Black Magick #6", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3992270-black-magick-6.jpg?1490230769", + "publisher": "Image Comics", + "description": "What the hell is the deal with Rowan Black, anyway? For that matter, just how many “real” witches are there? What is the bond that ties Rowan and Alex together? Is the series really coming back, or is this just...", + "releaseDate": "2017-06-28", + "price": "$3.99" + }, + { + "id": "8439562", + "name": "Black Magick #5 Hans Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8439562-black-magick-5-hans-variant.jpg?1456272612", + "publisher": "Image Comics", + "description": "Book One: \"Awakening,\" Conclusion\n\n\tTrial by divination.", + "releaseDate": "2016-02-24", + "price": "$3.99" + }, + { + "id": "4538653", + "name": "Black Magick #5", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4538653-black-magick-5.jpg?1456272599", + "publisher": "Image Comics", + "description": "Book One: \"Awakening,\" Conclusion\n\n\tTrial by divination.", + "releaseDate": "2016-02-24", + "price": "$3.99" + }, + { + "id": "6054508", + "name": "Black Magick #4 Ming Doyle Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6054508-black-magick-4-ming-doyle-variant.jpg?1453858207", + "publisher": "Image Comics", + "description": "“AWAKENING,” Part Four\n\n\tA stranger arrives in Portsmouth.", + "releaseDate": "2016-01-27", + "price": "$3.99" + }, + { + "id": "8218849", + "name": "Black Magick #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8218849-black-magick-4.jpg?1453858170", + "publisher": "Image Comics", + "description": "“AWAKENING,” Part Four\n\n\tA stranger arrives in Portsmouth.", + "releaseDate": "2016-01-27", + "price": "$3.99" + }, + { + "id": "9052239", + "name": "Black Magick #3 Cover B Richardson", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9052239-black-magick-3-cover-b-richardson.jpg?1451334647", + "publisher": "Image Comics", + "description": "BOOK 1: \"AWAKENING,\" Part Three\n\n\tThe threat begins to reveal itself. Rowan casts twice.", + "releaseDate": "2015-12-30", + "price": "" + }, + { + "id": "8851084", + "name": "Black Magick #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8851084-black-magick-3.jpg?1476673222", + "publisher": "Image Comics", + "description": "BOOK 1: \"AWAKENING,\" Part Three\n\n\tThe threat begins to reveal itself. Rowan casts twice.", + "releaseDate": "2015-12-30", + "price": "$3.99" + }, + { + "id": "5886553", + "name": "Black Magick #2 Cover B Jones", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5886553-black-magick-2-cover-b-jones.jpg?1448410049", + "publisher": "Image Comics", + "description": "BOOK 1: AWAKENING, PART 2 of 5. Rowan considers a spark, a hand, a body.                              ...", + "releaseDate": "2015-11-25", + "price": "$3.99" + }, + { + "id": "6054733", + "name": "Black Magick #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6054733-black-magick-2.jpg?1448409996", + "publisher": "Image Comics", + "description": "BOOK 1: AWAKENING, PART 2 of 5. Rowan considers a spark, a hand, a body.                              ...", + "releaseDate": "2015-11-25", + "price": "$3.99" + }, + { + "id": "3232857", + "name": "Black Magick #1 Magazine Size Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3232857-black-magick-1-magazine-size-variant.jpg?1446135815", + "publisher": "Image Comics", + "description": "The hammer falls this Halloween! From New York Times bestselling and Eisner Award-winning writer GREG RUCKA (LAZARUS, Stumptown, Gotham Central) and superstar artist NICOLA SCOTT (Birds of Prey, Secret Six, Earth 2)! Detective...", + "releaseDate": "2015-10-28", + "price": "$5.99" + }, + { + "id": "1072487", + "name": "Black Magick #1 Cover B Thompson Magazine Variant", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1072487-black-magick-1-cover-b-thompson-magazine-variant.jpg?1445993867", + "publisher": "Image Comics", + "description": "The hammer falls this Halloween! From New York Times bestselling and Eisner Award-winning writer GREG RUCKA (LAZARUS, Stumptown, Gotham Central) and superstar artist NICOLA SCOTT (Birds of Prey, Secret Six, Earth 2)! Detective...", + "releaseDate": "2015-10-28", + "price": "$3.99" + }, + { + "id": "9530951", + "name": "Black Magick #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9530951-black-magick-1.jpg?1446597685", + "publisher": "Image Comics", + "description": "The hammer falls this Halloween! From New York Times bestselling and Eisner Award-winning writer GREG RUCKA (LAZARUS, Stumptown, Gotham Central) and superstar artist NICOLA SCOTT (Birds of Prey, Secret Six, Earth 2)! Detective...", + "releaseDate": "2015-10-28", + "price": "$3.99" + }, + { + "id": "6683495", + "name": "Black Magic TP 2nd Printing", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6683495-black-magic-tp-2nd-printing.jpg?1427658610", + "publisher": "Dark Horse Comics", + "description": "Today, the planet Venus is a literal hell of furnace-like temperatures and dense, poisonous atmosphere. But millions of years in its past, Venus teemed with life and with a civilization far advanced to our own. The Nemisis...", + "releaseDate": "2008-05-07", + "price": "$14.95" + }, + { + "id": "3035880", + "name": "Black Magic TP", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3035880-black-magic-tp.jpg?1427658654", + "publisher": "Dark Horse Comics", + "description": "Today, the planet Venus is a literal hell of furnace-like temperatures and dense, poisonous atmosphere. But millions of years in its past, Venus teemed with life and with a civilization far advanced to our own. The Nemisis...", + "releaseDate": "1998-11-18", + "price": "" + }, + { + "id": "3565423", + "name": "Black Magic #9", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3565423-black-magic-9.jpg?1427658730", + "publisher": "DC Comics", + "description": "", + "releaseDate": "1969-12-31", + "price": "" + }, + { + "id": "2322174", + "name": "Black Magic #8", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2322174-black-magic-8.jpg?1427658733", + "publisher": "DC Comics", + "description": "", + "releaseDate": "1969-12-31", + "price": "" + }, + { + "id": "9019813", + "name": "Black Magic #7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9019813-black-magic-7.jpg?1427658736", + "publisher": "DC Comics", + "description": "", + "releaseDate": "1969-12-31", + "price": "" + }, + { + "id": "4159018", + "name": "Black Magic #6", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4159018-black-magic-6.jpg?1427658740", + "publisher": "DC Comics", + "description": "", + "releaseDate": "1974-11-01", + "price": "" + }, + { + "id": "1560962", + "name": "Black Magic #5", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1560962-black-magic-5.jpg?1427658743", + "publisher": "DC Comics", + "description": "", + "releaseDate": "1969-12-31", + "price": "" + }, + { + "id": "1789774", + "name": "Black Magic #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/1789774-black-magic-4.jpg?1427658746", + "publisher": "DC Comics", + "description": "", + "releaseDate": "1969-12-31", + "price": "" + }, + { + "id": "6643454", + "name": "Black Magic #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6643454-black-magic-4.jpg?1470656358", + "publisher": "Eclipse Comics", + "description": "", + "releaseDate": "1990-10-01", + "price": "$2.75" + }, + { + "id": "4876190", + "name": "Black Magic #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4876190-black-magic-3.jpg?1427658749", + "publisher": "DC Comics", + "description": "", + "releaseDate": "1969-12-31", + "price": "" + }, + { + "id": "2188098", + "name": "Black Magic #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2188098-black-magic-3.jpg?1470656347", + "publisher": "Eclipse Comics", + "description": "", + "releaseDate": "1990-08-01", + "price": "$2.75" + }, + { + "id": "5224908", + "name": "Black Magic #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5224908-black-magic-2.jpg?1427658752", + "publisher": "DC Comics", + "description": "", + "releaseDate": "1973-12-01", + "price": "" + }, + { + "id": "9668979", + "name": "Black Magic #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9668979-black-magic-2.jpg?1470656336", + "publisher": "Eclipse Comics", + "description": "", + "releaseDate": "1990-06-01", + "price": "$3.50" + }, + { + "id": "8900840", + "name": "Black Magic #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/8900840-black-magic-1.jpg?1469026842", + "publisher": "DC Comics", + "description": "", + "releaseDate": "1973-10-01", + "price": "$0.20" + }, + { + "id": "9833135", + "name": "Black Magic #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9833135-black-magic-1.jpg?1470656324", + "publisher": "Eclipse Comics", + "description": "", + "releaseDate": "1990-04-01", + "price": "$3.50" + } +] diff --git a/test/shared/search-results/test-data/sorted-series-black-magic.json b/test/shared/search-results/test-data/sorted-series-black-magic.json new file mode 100644 index 0000000..f00b20c --- /dev/null +++ b/test/shared/search-results/test-data/sorted-series-black-magic.json @@ -0,0 +1,66 @@ +[ + { + "id": "131085", + "name": "Image Firsts Black Magick", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3122061-image-firsts-black-magick.jpg", + "publisher": "Image Comics", + "count": 1, + "series": "" + }, + { + "id": "111867", + "name": "Gravel: Combat Magician", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9943008-gravel-combat-magician.jpg", + "publisher": "Avatar Press", + "count": 2, + "series": "" + }, + { + "id": "103513", + "name": "Gravel", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3606346-gravel.jpg", + "publisher": "Avatar Press", + "count": 5, + "series": "" + }, + { + "id": "126469", + "name": "Dakkon Blackblade: A Magic the Gathering Legend", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/4237800-dakkon-blackblade-a-magic-the-gathering-legend.jpg", + "publisher": "Other", + "count": 1, + "series": "1996" + }, + { + "id": "119117", + "name": "Black Magick", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9530951-black-magick.jpg", + "publisher": "Image Comics", + "count": 14, + "series": "2015" + }, + { + "id": "101253", + "name": "Black Magic", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6683495-black-magic.jpg", + "publisher": "Dark Horse Comics", + "count": 2, + "series": "" + }, + { + "id": "117287", + "name": "Black Magic", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3565423-black-magic.jpg", + "publisher": "DC Comics", + "count": 9, + "series": "1973 - 1975" + }, + { + "id": "126273", + "name": "Black Magic", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2188098-black-magic.jpg", + "publisher": "Eclipse Comics", + "count": 4, + "series": "1990" + } +] diff --git a/test/shared/wish-list/issues-list.spec.js b/test/shared/wish-list/issues-list.spec.js index a711e3a..8eb5387 100644 --- a/test/shared/wish-list/issues-list.spec.js +++ b/test/shared/wish-list/issues-list.spec.js @@ -1,6 +1,7 @@ const _ = require('lodash'); const allIssuesWishList = require('./test-data/all-issues-wish-list'); const filteredIssuesWishList = require('./test-data/filtered-issues-wish-list'); +const sortedIssuesWishList = require('./test-data/sorted-issues-wish-list'); module.exports = function (lofcg) { describe('get issues list', function () { @@ -36,5 +37,17 @@ module.exports = function (lofcg) { done(); }); }); + + it('should provide a sorted list of comics from a users wish list', function (done) { + lofcg.wishList.get(readonlyUserId, { sort: 'desc' }, (err, wishList) => { + expect(err).toBeNull(); + expect(wishList.length).toBe(16); + expect(wishList).toEqual(sortedIssuesWishList); + _.each(wishList, (comic) => { + expect(comic).toBeAComicIssue(); + }); + done(); + }); + }); }); }; diff --git a/test/shared/wish-list/series-list.spec.js b/test/shared/wish-list/series-list.spec.js index 132dcbd..f76aa0b 100644 --- a/test/shared/wish-list/series-list.spec.js +++ b/test/shared/wish-list/series-list.spec.js @@ -1,10 +1,12 @@ const _ = require('lodash'); const allSeriesWishList = require('./test-data/all-series-wish-list'); const filteredSeriesWishList = require('./test-data/filtered-series-wish-list'); +const sortedSeriesWishList = require('./test-data/sorted-series-wish-list'); module.exports = function (lofcg) { const options = { type: lofcg.types.SERIES }; const filteredOptions = _.extend({ publishers: ['Image Comics'] }, options); + const sortedOptions = _.extend({ sort: 'desc' }, options); describe('get series list', function () { it('should provide no comics in wish list with an invalid user id', function (done) { @@ -39,5 +41,17 @@ module.exports = function (lofcg) { done(); }); }); + + it('should provide a sorted list of comics from a users wish list', function (done) { + lofcg.wishList.get(readonlyUserId, sortedOptions, (err, wishList) => { + expect(err).toBeNull(); + expect(wishList.length).toBe(4); + expect(wishList).toEqual(sortedSeriesWishList); + _.each(wishList, (comic) => { + expect(comic).toBeAComicSeries(); + }); + done(); + }); + }); }); }; diff --git a/test/shared/wish-list/test-data/sorted-issues-wish-list.json b/test/shared/wish-list/test-data/sorted-issues-wish-list.json new file mode 100644 index 0000000..c3efa4c --- /dev/null +++ b/test/shared/wish-list/test-data/sorted-issues-wish-list.json @@ -0,0 +1,146 @@ +[ + { + "id": "3879401", + "name": "The Wicked + The Divine #9", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3879401-the-wicked-the-divine-9.jpg?1465717016", + "publisher": "Image Comics", + "description": "It's time for a private audience with Ananke, she who has protected and judged the Pantheon for thousands of years. Yes, it's time for an interview... with an umpire. Yes. Yes. Yes. Yes. Yes. Yes. Yes. Yes. Yes....", + "releaseDate": "2015-03-25", + "price": "$3.50" + }, + { + "id": "6297602", + "name": "The Wicked + The Divine #8", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6297602-the-wicked-the-divine-8.jpg?1465716985", + "publisher": "Image Comics", + "description": "Now the eleventh god is here, it's time to party. You're invited. Everyone's invited. We can sleep when we're dead—but when you'll be dead within two years, you may as well turn up in your pyjamas....", + "releaseDate": "2015-02-25", + "price": "$3.50" + }, + { + "id": "3056913", + "name": "The Wicked + The Divine #7", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/3056913-the-wicked-the-divine-7.jpg?1456073354", + "publisher": "Image Comics", + "description": "Last year, before The Recurrence, fans gathered from their lonely worlds at RAGNAROCK to wonder whether the gods were really about to return or not. Now, as the next RAGNAROCK approaches, everyone knows things are different....", + "releaseDate": "2015-01-21", + "price": "$3.50" + }, + { + "id": "9626603", + "name": "The Wicked + The Divine #6", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9626603-the-wicked-the-divine-6.jpg?1456073339", + "publisher": "Image Comics", + "description": "THE FAUST ACT is over. Welcome to FANDEMONIUM. The second arc of THE WICKED + THE DIVINE begins in its traditional manner (i.e. a ludicrous pun.) We'd say something like 'nothing will ever be the same again'...", + "releaseDate": "2014-12-17", + "price": "$3.50" + }, + { + "id": "2489507", + "name": "The Wicked + The Divine #5", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2489507-the-wicked-the-divine-5.jpg?1456073270", + "publisher": "Image Comics", + "description": "Showtime.", + "releaseDate": "2014-10-22", + "price": "$3.50" + }, + { + "id": "5518869", + "name": "The Wicked + The Divine #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5518869-the-wicked-the-divine-4.jpg?1456073231", + "publisher": "Image Comics", + "description": "The mystery is solved. But does pop-god Lucifer like the answer? The answer is a word that rhymes with \"Go\", \"Blow\" and \"Pro\". If you think the answer rhymes with \"Cow\" I applaud you...", + "releaseDate": "2014-09-17", + "price": "$3.50" + }, + { + "id": "7937806", + "name": "The Wicked + The Divine #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7937806-the-wicked-the-divine-3.jpg?1456073128", + "publisher": "Image Comics", + "description": "Laura has no choice. She has to go underground to find the goth-goth-gothity-goth of the Morrigan. Is this the most ill-advised underworld-related decision since Orpheus decided to see how Eurydice was doing in the back...", + "releaseDate": "2014-08-20", + "price": "$3.50" + }, + { + "id": "2359884", + "name": "The Wicked + The Divine #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2359884-the-wicked-the-divine-2.jpg?1456073076", + "publisher": "Image Comics", + "description": "Diabolically divine pop-god Lucifer is in trouble. She offers superfan Laura an unprecedented deal if she helps. It's a bargain. A Faustian bargain, and they always turn out so well. Who knows who Laura will turn to...", + "releaseDate": "2014-07-16", + "price": "$3.50" + }, + { + "id": "9736983", + "name": "The Wicked + The Divine #10", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9736983-the-wicked-the-divine-10.jpg?1465717096", + "publisher": "Image Comics", + "description": "Ragnarock is finally here. The show to end all shows promises to be a lovely experience for all the gods... wait. Oh noes! Jamie and Matt have drawn Baphomet drenched in blood on the cover. What a hilarious internal communication...", + "releaseDate": "2015-05-06", + "price": "$3.50" + }, + { + "id": "9999868", + "name": "The Wicked + The Divine #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9999868-the-wicked-the-divine-1.jpg?1473767487", + "publisher": "Image Comics", + "description": "Every ninety years, twelve gods incarnate as teenagers. They are loved. They are hated. In two years, they are dead. The team behind critically thermonuclear floor-fillers Young Avengers and PHONOGRAM reunite to start a...", + "releaseDate": "2014-06-18", + "price": "$3.50" + }, + { + "id": "5765063", + "name": "Rick and Morty #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5765063-rick-and-morty-1.jpg?1427853024", + "publisher": "Oni Press", + "description": "Dan Harmon & Justin Roiland's hilarious hit Adult Swim animated show RICK & MORTY now has its own comic book series from Oni Press! Join degenerate superscientist Rick Sanchez as he embarks on all-new insane adventures with...", + "releaseDate": "2015-04-01", + "price": "$3.99" + }, + { + "id": "6262600", + "name": "Marvel Tsum Tsum #4", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6262600-marvel-tsum-tsum-4.jpg?1479783845", + "publisher": "Marvel Comics", + "description": "HERE COMES THE TSUM! The worldwide phenomenon comes to a close with a bang! Will the Tsum Tsum make it out of their trip to Earth?! And! What will be the fate of the children living in THE BLOCK when Ultron returns?!", + "releaseDate": "2016-11-23", + "price": "$3.99" + }, + { + "id": "7383614", + "name": "Marvel Tsum Tsum #3", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/7383614-marvel-tsum-tsum-3.jpg?1477355498", + "publisher": "Marvel Comics", + "description": "TSUM TSUM CIVIL WAR?!  The Tsum Tsums square off with foes you'd never expect - including each other!", + "releaseDate": "2016-10-26", + "price": "$3.99" + }, + { + "id": "6157347", + "name": "Marvel Tsum Tsum #2", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6157347-marvel-tsum-tsum-2.jpg?1473205081", + "publisher": "Marvel Comics", + "description": "THE VILLAINOUS TSUM TSUMS MAKE THEIR PRESENCE KNOWN!\n\n\t\n\t\tStill learning about Earth, some of the Tsum Tsums take inspiration fromthe less noble superhumans…and cause about as much mayhem!", + "releaseDate": "2016-09-07", + "price": "$3.99" + }, + { + "id": "6146985", + "name": "Marvel Tsum Tsum #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6146985-marvel-tsum-tsum-1.jpg?1470457125", + "publisher": "Marvel Comics", + "description": "In case you've been living under a rock, Tsum Tsums are HUGE! Well, not LITERALLY (they're actually pretty tiny) but these seemingly cute and cuddly creatures are sweeping the globe! So what happens when these pint-sized...", + "releaseDate": "2016-08-03", + "price": "$3.99" + }, + { + "id": "9203306", + "name": "Black Cloud #1", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9203306-black-cloud-1.jpg?1491357174", + "publisher": "Image Comics", + "description": "SERIES PREMIERE Zelda was born in a world of dreams, and hers burned bigger than anyone had ever seen. Now she's on the run in our world, the dreams broken in her hands. But the pieces are for sale, the rich and the...", + "releaseDate": "2017-04-05", + "price": "$3.99" + } +] diff --git a/test/shared/wish-list/test-data/sorted-series-wish-list.json b/test/shared/wish-list/test-data/sorted-series-wish-list.json new file mode 100644 index 0000000..ff88f49 --- /dev/null +++ b/test/shared/wish-list/test-data/sorted-series-wish-list.json @@ -0,0 +1,34 @@ +[ + { + "id": "113171", + "name": "The Wicked + The Divine", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/2359884-the-wicked-the-divine.jpg", + "publisher": "Image Comics", + "count": 10, + "series": "2014" + }, + { + "id": "116504", + "name": "Rick and Morty", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/5765063-rick-and-morty.jpg", + "publisher": "Oni Press", + "count": 1, + "series": "2015" + }, + { + "id": "124950", + "name": "Marvel Tsum Tsum", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/6146985-marvel-tsum-tsum.jpg", + "publisher": "Marvel Comics", + "count": 4, + "series": "2016" + }, + { + "id": "124177", + "name": "Black Cloud", + "cover": "http://leagueofcomicgeeks.com/comics/covers/medium/9203306-black-cloud.jpg", + "publisher": "Image Comics", + "count": 1, + "series": "2016" + } +]