| 12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "variables": {
- "mini": 1,
- "swipeDirection": "",
- "aws":40
- },
- "execute": [
- {
- "type": "random",
- "inVars": [
- "{mini}",
- "4"
- ],
- "outVars": [
- "{swipeDirection}"
- ]
- },
- {
- "type":"if",
- "condition": "{aws}>=0",
- "true":
- [
- {
- "type": "echo",
- "value": "hello"
- }
- ],
- "false":
- [
- {
- "type": "echo",
- "value": "第{{aws}}轮"
- }
- ]
- }
- ]
- }
|