{"id":13713243,"url":"https://github.com/alienspaces/go-mud","last_synced_at":"2025-05-06T23:31:33.311Z","repository":{"id":49385800,"uuid":"414138818","full_name":"alienspaces/go-mud","owner":"alienspaces","description":"A M.U.D (multi user dungeon) with a back end API built with Go and a front end UI built with Flutter.","archived":false,"fork":false,"pushed_at":"2024-03-18T08:10:17.000Z","size":2136,"stargazers_count":25,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-11-14T00:33:45.609Z","etag":null,"topics":["dart","flutter","game","go","mud"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alienspaces.png","metadata":{"files":{"readme":"README-API.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-10-06T08:56:48.000Z","updated_at":"2024-08-12T20:17:01.000Z","dependencies_parsed_at":"2023-10-02T01:36:18.083Z","dependency_job_id":"c2cc095b-3496-49da-aa97-88995d0b5fcd","html_url":"https://github.com/alienspaces/go-mud","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alienspaces%2Fgo-mud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alienspaces%2Fgo-mud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alienspaces%2Fgo-mud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alienspaces%2Fgo-mud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alienspaces","download_url":"https://codeload.github.com/alienspaces/go-mud/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252787516,"owners_count":21804277,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dart","flutter","game","go","mud"],"created_at":"2024-08-02T23:01:30.555Z","updated_at":"2025-05-06T23:31:28.298Z","avatar_url":"https://github.com/alienspaces.png","language":"Go","funding_links":[],"categories":["Repositories"],"sub_categories":[],"readme":"# Go M.U.D - API\n\n- [Getting Started](README.md)\n- [How to Play](README-HOWTOPLAY.md)\n- [API](README-API.md)\n- [Design](README-DESIGN.md)\n- [TODO](README-TODO.md)\n\n## Dungeons\n\n**List dungeons:**\n\n- [Response Schema](backend/schema/game/dungeon/response.schema.json)\n\n```bash\nGET /api/v1/dungeons\n```\n\n**Get dungeon:**\n\n- [Response Schema](backend/schema/game/dungeon/response.schema.json)\n\n```bash\nGET /api/v1/dungeons/{:dungeon_id}\n```\n\n## Locations\n\n**List dungeon locations:**\n\n- [Response Schema](backend/schema/game/location/response.schema.json)\n\n```bash\nGET /api/v1/dungeons/{:dungeon_id}/locations\n```\n\n**Get dungeon location:**\n\n- [Response Schema](backend/schema/game/location/response.schema.json)\n\n```bash\nGET /api/v1/dungeons/{:dungeon_id}/locations/{:location_id}\n```\n\n## Characters\n\n**Create character:**\n\n- [Request Schema](backend/schema/game/character/create.request.schema.json)\n- [Response Schema](backend/schema/game/character/response.schema.json)\n\n```bash\nPOST /api/v1/characters\n```\n\n**List characters:**\n\n- [Response Schema](backend/schema/game/character/response.schema.json)\n\n```bash\nGET /api/v1/characters\n```\n\n**Get character:**\n\n- [Response Schema](backend/schema/game/character/response.schema.json)\n\n```bash\nGET /api/v1/characters/{:character_id}\n```\n\n**Update a character:**\n\n📝 _Unimplemented_\n\n- [Request Schema](backend/schema/game/character/response.schema.json)\n- [Response Schema](backend/schema/game/character/response.schema.json)\n\n```bash\nPUT /api/v1/characters/{:character_id}\n```\n\n## Dungeon characters\n\nDungeon instances are created to accomodate a maximum number of characters per dungeon.\n\n**Enter dungeon:**\n\nA character enters into a dungeon.\n\n- [Response Schema](backend/schema/game/dungeoncharacter/response.schema.json)\n\n```bash\nPOST /api/v1/dungeons/{:dungeon_id}/character/{:character_id}/enter\n```\n\n**Exit dungeon:**\n\nA character exits from a dungeon.\n\n- [Response Schema](backend/schema/game/character/response.schema.json)\n\n```bash\nPOST /api/v1/dungeons/{:dungeon_id}/character/{:character_id}/exit\n```\n\n**Get dungeon character:**\n\nLists the currently running dungeon instances.\n\n- [Response Schema](backend/schema/game/dungeoncharacter/response.schema.json)\n\n```bash\nGET /api/v1/dungeons/{:dungeon_id}/characters/{:character_id}\n```\n\n## Actions\n\nCharacters are controlled by performing actions.\n\n**Create a character action:**\n\n- [Request Schema](backend/schema/game/action/create.request.schema.json)\n- [Response Schema](backend/schema/game/action/response.schema.json)\n\n```bash\nPOST /api/v1/dungeons/{:dungeon_id}/characters/{:character}/actions\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falienspaces%2Fgo-mud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falienspaces%2Fgo-mud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falienspaces%2Fgo-mud/lists"}