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

Commit ee88dc4

Browse files
committed
chore: add coming soon modules
1 parent 32d19ff commit ee88dc4

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": "Groups",
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,7 +1,7 @@
11
{
22
"status": "stable",
33
"name": "Lobbies",
4-
"description": "Lobby & player management.",
4+
"description": "Lobby & player management. Create & join lobbies instantly.",
55
"icon": "game-board",
66
"tags": [
77
"core",

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
@@ -52,6 +52,30 @@
5252
},
5353
"rivet": {
5454
"registry": "local"
55+
},
56+
"achievements": {
57+
"registry": "local"
58+
},
59+
"leaderboards": {
60+
"registry": "local"
61+
},
62+
"analytics": {
63+
"registry": "local"
64+
},
65+
"chat": {
66+
"registry": "local"
67+
},
68+
"game_saves": {
69+
"registry": "local"
70+
},
71+
"parties": {
72+
"registry": "local"
73+
},
74+
"groups": {
75+
"registry": "local"
76+
},
77+
"matchmaker": {
78+
"registry": "local"
5579
}
5680
}
5781
}

0 commit comments

Comments
 (0)