1
0

fix
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s

This commit is contained in:
syui 2024-11-09 13:04:19 +09:00
parent 9398ac5646
commit ff6a27d790
Signed by: syui
GPG Key ID: 5417CFEBAD92DF56

View File

@ -3,7 +3,7 @@
"id": "ai.syui.game.user",
"defs": {
"main": {
"type": "procedure",
"type": "record",
"key": "tid",
"description": "Record containing a game user.",
"input": {
@ -19,10 +19,41 @@
"did": {
"type": "string"
},
"charactor": {
"type": "object",
"properties": {
"ai":{
"type": "object",
"properties": {
"lv":{
"type": "integer",
"minimum": 1,
"maximum": 7,
"default": 1
},
"hp":{
"type": "integer",
"maximum": 255,
"default": 0
},
"attach":{
"type": "integer",
"minimum": 1,
"maximum": 255,
"default": 1
}
}
}
}
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this post was originally created."
},
"updatedAt": {
"type": "string",
"format": "datetime"
}
}
}