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

Commit 5736b94

Browse files
committed
chore: add coming soon modules
1 parent f6fc343 commit 5736b94

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,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",

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
@@ -63,9 +63,33 @@
6363
},
6464
"rivet": {
6565
"registry": "local",
66-
"config": {
67-
"apiEndpoint": "https://api.nathan16.gameinc.io"
68-
}
66+
"config": {
67+
"apiEndpoint": "https://api.nathan16.gameinc.io"
68+
}
69+
},
70+
"achievements": {
71+
"registry": "local"
72+
},
73+
"leaderboards": {
74+
"registry": "local"
75+
},
76+
"analytics": {
77+
"registry": "local"
78+
},
79+
"chat": {
80+
"registry": "local"
81+
},
82+
"game_saves": {
83+
"registry": "local"
84+
},
85+
"parties": {
86+
"registry": "local"
87+
},
88+
"groups": {
89+
"registry": "local"
90+
},
91+
"matchmaker": {
92+
"registry": "local"
6993
}
7094
}
7195
}

0 commit comments

Comments
 (0)