BookWalker

home / database

products

Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)

4 rows where series_id = "CNT_2Z9F2M8N8P60"

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: copyright, listed_at (date), on_sale_at (date)

id ▼ content_id series_id parent_content_id level content_type product_type title alt_titles subtitle display_title display_title_short description description_short image_id display_order listed_at label_id geoblock_id display_name copyright on_presale_at on_sale_at off_sale_at add_on add_on_campaign_only
PRD_0DSQANZZ93YG CNT_1H1DGTTKC2R0 Reincarnated Into a Game as the Hero's Friend: Running the Kingdom Behind the Scenes CNT_2Z9F2M8N8P60 CNT_2Z9F2M8N8P60 2 1 1 Volume 4 []   Reincarnated Into a Game as the Hero's Friend: Running the Kingdom Behind the Scenes Vol. 4   Saving the kingdom is hard enough even with his memories of playing the game in which the world is based on. But Werner von Zehrfeld must do it all without letting anyone know about his prescient knowledge. Cue his plans to hold a training drill nearby a fort that he knows will soon get attacked by the demons. With Mazel off on his adventure, it's the hero's best friend's time to (literally) hold down the fort! NEW GAME PLUS 01KGBMWZM4E032B8VWQ2EAS45C 4.0 2025-04-03T07:00:00.000Z Seven Seas Entertainment LAB_1WABW2X3770G GEO_1PKAG51AEAQG Reincarnated Into a Game as the Hero's Friend: Running the Kingdom Behind the Scenes Vol. 4 © 2024 Rampei Asio, © Yuki SUZUKI/OVERLAP   2025-05-27T07:00:00.000Z   0 0
PRD_0EXPC06C13T0 CNT_2MRAMR1155ZG Reincarnated Into a Game as the Hero's Friend: Running the Kingdom Behind the Scenes CNT_2Z9F2M8N8P60 CNT_2Z9F2M8N8P60 2 1 1 Volume 2 []   Reincarnated Into a Game as the Hero's Friend: Running the Kingdom Behind the Scenes Vol. 2   Lord Werner's saved the day! Well, almost. Having been reincarnated into a game he played when he was young, Werner brings his knowledge of upcoming events to change the tide of battle and survive against the dreaded Demon Stampede. Meanwhile, the hero Mazel comes face to face with one of the Demon Lord's trusted commanders. Werner knows his friend will succeed, but can this former office worker defy fate to save the lives of his troops? THE BATTLE'S NOT OVER YET! 01KGBA6REQMX9RNKRGFAHJ4M3Z 2.0 2024-05-21T07:00:00.000Z Seven Seas Entertainment LAB_1WABW2X3770G GEO_1PKAG51AEAQG Reincarnated Into a Game as the Hero's Friend: Running the Kingdom Behind the Scenes Vol. 2 © 2023 Rampei Asio, © Yuki SUZUKI/OVERLAP   2024-06-25T07:00:00.000Z   0 0
PRD_2ZVGS0FXBRE0 CNT_1HKS5B5B88R0 Reincarnated Into a Game as the Hero's Friend: Running the Kingdom Behind the Scenes CNT_2Z9F2M8N8P60 CNT_2Z9F2M8N8P60 2 1 1 Volume 1 []   Reincarnated Into a Game as the Hero's Friend: Running the Kingdom Behind the Scenes Vol. 1   For every legendary hero, there's a loyal best friend. When a Japanese gamer reincarnates into the body of Lord Werner, a faceless mob in the world of a video game, he sets out to make sure the hero Mazel is up to the task. He'll need to train him, teach him etiquette, and make sure his pockets are overflowing with potions! This is not the story of the battle between Mazel and the Demon Lord. This is the story about one man's attempt to make sure he doesn't end up as collateral damage! STAND BY ME 01KG9PVMQN15ZBRHSA54R1XEWW 1.0 2023-12-19T08:00:00.000Z Seven Seas Entertainment LAB_1WABW2X3770G GEO_1PKAG51AEAQG Reincarnated Into a Game as the Hero's Friend: Running the Kingdom Behind the Scenes Vol. 1 2022 Rampei Asio, Yuki SUZUKI/OVERLAP   2024-02-20T08:00:00.000Z   0 0
PRD_30FYW1V4NVG0 CNT_09CKHP9R5YXG Reincarnated Into a Game as the Hero's Friend: Running the Kingdom Behind the Scenes CNT_2Z9F2M8N8P60 CNT_2Z9F2M8N8P60 2 1 1 Volume 3 []   Reincarnated Into a Game as the Hero's Friend: Running the Kingdom Behind the Scenes Vol. 3   The battle is won, but the war is only just beginning. Now having changed out of his armor and into a suit, Lord Werner--a Japanese office worker reincarnated into the world of a classic RPG--faces a completely different ordeal as he attempts to plan the kingdom's long-term survival. It's time for him to use all his experience as a fan of classic role-playing games to organize a military defense--which might as well be cheating! LIFE HACKS 01KGBF2MXYJJESP9NVG2JVV0T4 3.0 2024-10-04T07:00:00.000Z Seven Seas Entertainment LAB_1WABW2X3770G GEO_1PKAG51AEAQG Reincarnated Into a Game as the Hero's Friend: Running the Kingdom Behind the Scenes Vol. 3 © 2023 Rampei Asio, © Yuki SUZUKI/OVERLAP   2024-12-10T08:00:00.000Z   0 0

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE products (
      id TEXT PRIMARY KEY,
      content_id TEXT NOT NULL,
      series_id TEXT NOT NULL,
      parent_content_id TEXT,
      level INTEGER NOT NULL,
      content_type INTEGER NOT NULL,
      product_type INTEGER NOT NULL,
      title TEXT NOT NULL,
      alt_titles TEXT NOT NULL,
      subtitle TEXT NOT NULL,
      display_title TEXT NOT NULL,
      display_title_short TEXT NOT NULL,
      description TEXT NOT NULL,
      description_short TEXT NOT NULL,
      image_id TEXT NOT NULL,
      display_order REAL NOT NULL,
      listed_at TEXT NOT NULL,
      label_id TEXT NOT NULL,
      geoblock_id TEXT,
      display_name TEXT NOT NULL,
      copyright TEXT,
      on_presale_at TEXT,
      on_sale_at TEXT NOT NULL,
      off_sale_at TEXT,
      add_on INTEGER NOT NULL,
      add_on_campaign_only INTEGER NOT NULL,
      FOREIGN KEY (series_id) REFERENCES series(id),
      FOREIGN KEY (label_id) REFERENCES labels(id),
      FOREIGN KEY (geoblock_id) REFERENCES geoblocks(id)
    );
CREATE INDEX idx_products_content ON products(content_id);
CREATE INDEX idx_products_series ON products(series_id);
CREATE INDEX idx_products_label ON products(label_id);
CREATE INDEX idx_products_geoblock ON products(geoblock_id);
CREATE INDEX idx_products_image ON products(image_id);
Powered by Datasette · Queries took 26.961ms · Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export) · Terms of Service: Bookwalker ToS