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

Commit 4fb04c1

Browse files
committed
chore: add coming soon modules
1 parent f38b9ba commit 4fb04c1

File tree

10 files changed

+124
-4
lines changed

10 files changed

+124
-4
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: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,33 @@
6464
},
6565
"rivet": {
6666
"registry": "local",
67-
"config": {
68-
"apiEndpoint": "https://api.nathan16.gameinc.io"
69-
}
67+
"config": {
68+
"apiEndpoint": "https://api.nathan16.gameinc.io"
69+
}
70+
},
71+
"achievements": {
72+
"registry": "local"
73+
},
74+
"leaderboards": {
75+
"registry": "local"
76+
},
77+
"analytics": {
78+
"registry": "local"
79+
},
80+
"chat": {
81+
"registry": "local"
82+
},
83+
"game_saves": {
84+
"registry": "local"
85+
},
86+
"parties": {
87+
"registry": "local"
88+
},
89+
"groups": {
90+
"registry": "local"
91+
},
92+
"matchmaker": {
93+
"registry": "local"
7094
}
7195
}
7296
}

0 commit comments

Comments
 (0)