feat(library): game spec — steam + rawg

This commit is contained in:
afiqzudinhadi 2026-08-03 16:02:56 +08:00
parent 0c8f897e46
commit cdc653e6e4
5 changed files with 830 additions and 0 deletions

36
tests/fixtures/canonical-game.md vendored Normal file
View file

@ -0,0 +1,36 @@
---
type: game_item
title: 7 Billion Humans
play_status: Played
rating: 4
rating_stars: ⭐️⭐️⭐️⭐️
developer: [Tomorrow Corporation]
publisher: [Tomorrow Corporation]
platforms: [PC]
genre: [Casual, Indie, Strategy]
release_date: 2018-03-02
metacritic: 79
steam_appid: 792100
rawg_id:
poster: "https://cdn.akamai.steamstatic.com/steam/apps/792100/header.jpg"
url: "https://store.steampowered.com/app/792100"
tags: [games, game]
---
# 7 Billion Humans
![poster|200](https://cdn.akamai.steamstatic.com/steam/apps/792100/header.jpg)
**Game** · 2018-03-02 · Metacritic 79
**Play Status:** Played
## Synopsis
From the creators of Human Resource Machine! Program a workforce of dumb humans to do your bidding in this fiendish puzzle game.
**Developer:** Tomorrow Corporation
**Publisher:** Tomorrow Corporation
**Platforms:** PC
## My Notes

17
tests/fixtures/rawg-game.json vendored Normal file
View file

@ -0,0 +1,17 @@
{
"id": 4200,
"name": "Hollow Knight",
"developers": [{ "name": "Team Cherry" }],
"publishers": [{ "name": "Team Cherry" }],
"platforms": [
{ "platform": { "name": "PC" } },
{ "platform": { "name": "macOS" } },
{ "platform": { "name": "Linux" } },
{ "platform": { "name": "Nintendo Switch" } }
],
"genres": [{ "name": "Action" }, { "name": "Adventure" }, { "name": "Indie" }],
"released": "2017-02-24",
"metacritic": 90,
"background_image": "https://media.rawg.io/media/games/4cf/4cfc6b7f1850590a4634b08bfab308ab.jpg",
"description_raw": "Hollow Knight is a classically styled 2D action adventure crafted with painstaking detail. Explore twisting caverns, battle tainted creatures, and befriend bizarre bugs."
}

21
tests/fixtures/steam-appdetails.json vendored Normal file
View file

@ -0,0 +1,21 @@
{
"792100": {
"success": true,
"data": {
"type": "game",
"name": "7 Billion Humans",
"steam_appid": 792100,
"developers": ["Tomorrow Corporation"],
"publishers": ["Tomorrow Corporation"],
"genres": [
{ "id": "4", "description": "Casual" },
{ "id": "23", "description": "Indie" },
{ "id": "2", "description": "Strategy" }
],
"release_date": { "coming_soon": false, "date": "2 Mar, 2018" },
"metacritic": { "score": 79, "url": "https://www.metacritic.com/game/pc/7-billion-humans" },
"header_image": "https://cdn.akamai.steamstatic.com/steam/apps/792100/header.jpg",
"short_description": "From the creators of Human Resource Machine! Program a workforce of dumb humans to do your bidding in this fiendish puzzle game."
}
}
}