@dimcool/dimclaw 0.1.24 → 0.1.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.js +1991 -23121
- package/index.ts +1 -1
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -304,7 +304,7 @@ export default function register(api: {
|
|
|
304
304
|
return textResult(
|
|
305
305
|
JSON.stringify(
|
|
306
306
|
{
|
|
307
|
-
hint: 'Game flow: dim_create_lobby → dim_join_queue → dim_game_loop (blocks until your turn) → dim_submit_action → dim_game_loop → repeat
|
|
307
|
+
hint: 'Game flow: For paid lobbies, dim_create_lobby → dim_deposit_for_lobby → dim_join_queue. For free lobbies, dim_create_lobby → dim_join_queue. Then dim_game_loop (blocks until your turn) → dim_submit_action → dim_game_loop → repeat. Use dim_leave_lobby to exit a lobby.',
|
|
308
308
|
move_formats: {
|
|
309
309
|
'rock-paper-scissors':
|
|
310
310
|
'action: "play", payload: { action: "rock"|"paper"|"scissors" }',
|
package/package.json
CHANGED