Skip to content
This repository was archived by the owner on Sep 17, 2024. It is now read-only.

Commit e7c465e

Browse files
committed
chore: add coming soon modules
1 parent 77562e6 commit e7c465e

File tree

10 files changed

+121
-1
lines changed

10 files changed

+121
-1
lines changed

modules/achievements/module.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "Achievements",
3+
"description": "Unlock and track user achievements. (Coming late 2024)",
4+
"icon": "medal",
5+
"tags": [
6+
"game"
7+
],
8+
"authors": [],
9+
"status": "coming_soon",
10+
"scripts": {},
11+
"errors": {}
12+
}

modules/analytics/module.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "Analytics",
3+
"description": "Track and visualize user behavior data. (Coming mid-2024)",
4+
"icon": "chart-line",
5+
"tags": [
6+
"game"
7+
],
8+
"authors": [],
9+
"status": "coming_soon",
10+
"scripts": {},
11+
"errors": {}
12+
}

modules/chat/module.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "Chat",
3+
"description": "In-game player-to-player messaging. (Coming late-2024)",
4+
"icon": "messages",
5+
"tags": [
6+
"game"
7+
],
8+
"authors": [],
9+
"status": "coming_soon",
10+
"scripts": {},
11+
"errors": {}
12+
}

modules/game_saves/module.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "Game Saves",
3+
"description": "Store and manage player progress data or world state. (Coming mid-2024)",
4+
"icon": "floppy-disk",
5+
"tags": [
6+
"game"
7+
],
8+
"authors": [],
9+
"status": "coming_soon",
10+
"scripts": {},
11+
"errors": {}
12+
}

modules/groups/module.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "Gropus",
3+
"description": "Group users in groups/clans/guilds. (Coming late-2024)",
4+
"icon": "user-group",
5+
"tags": [
6+
"game"
7+
],
8+
"authors": [],
9+
"status": "coming_soon",
10+
"scripts": {},
11+
"errors": {}
12+
}

modules/leaderboards/module.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "Leaderboards",
3+
"description": "Track and display top player rankings. (Coming mid-2024)",
4+
"icon": "ranking-star",
5+
"tags": [
6+
"game"
7+
],
8+
"authors": [],
9+
"status": "coming_soon",
10+
"scripts": {},
11+
"errors": {}
12+
}

modules/lobbies/module.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Lobbies",
3-
"description": "Lobby & player management.",
3+
"description": "Lobby & player management. Create & join lobbies instantly.",
44
"icon": "game-board",
55
"tags": [
66
"core", "multiplayer"

modules/matchmaker/module.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "Matchmaker",
3+
"description": "Ticket-based matchmaking that balances skill, latency, and more. (Coming mid-2024)",
4+
"icon": "chess-knight",
5+
"tags": [
6+
"game"
7+
],
8+
"authors": [],
9+
"status": "coming_soon",
10+
"scripts": {},
11+
"errors": {}
12+
}

modules/parties/module.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "Parties",
3+
"description": "Real-time player groups. Integrates with matchmaking. (Coming mid-2024)",
4+
"icon": "party-horn",
5+
"tags": [
6+
"game"
7+
],
8+
"authors": [],
9+
"status": "coming_soon",
10+
"scripts": {},
11+
"errors": {}
12+
}

tests/basic/backend.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,30 @@
4848
},
4949
"lobbies": {
5050
"registry": "local"
51+
},
52+
"achievements": {
53+
"registry": "local"
54+
},
55+
"leaderboards": {
56+
"registry": "local"
57+
},
58+
"analytics": {
59+
"registry": "local"
60+
},
61+
"chat": {
62+
"registry": "local"
63+
},
64+
"game_saves": {
65+
"registry": "local"
66+
},
67+
"parties": {
68+
"registry": "local"
69+
},
70+
"groups": {
71+
"registry": "local"
72+
},
73+
"matchmaker": {
74+
"registry": "local"
5175
}
5276
}
5377
}

0 commit comments

Comments
 (0)