游戏王残局简化版

Check-in [6fd4451e62]
Login

Check-in [6fd4451e62]

Overview
Comment:0.0.534
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 6fd4451e6286f911e143885ed026f117e8480ad79de9731bdb08dc1b040796a8
User & Date: 顽雨沉风 on 2023-07-01 12:19:39
Other Links: manifest | tags
Context
2023-07-01
12:20
0.0.535 check-in: c1fd7551a3 user: 顽雨沉风 tags: trunk
12:19
0.0.534 check-in: 6fd4451e62 user: 顽雨沉风 tags: trunk
12:19
0.0.533 check-in: ff9270675e user: 顽雨沉风 tags: trunk
Changes

Modified single_doc/卡组测试教程.md from [32e037d80e] to [389f0ac504].

59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<summary>
伪洗牌
</summary>
~~~
Debug.ReloadFieldBegin(DUEL_ATTACK_FIRST_TURN+DUEL_SIMPLE_AI,5)
~~~

添加一个参数即可。

~~~
Debug.ReloadFieldBegin(DUEL_ATTACK_FIRST_TURN+DUEL_SIMPLE_AI+DUEL_PSEUDO_SHUFFLE,5)
~~~
</details>

<details>
<summary>
完全操控 AI
</summary>
~~~
Debug.ReloadFieldBegin(DUEL_ATTACK_FIRST_TURN+DUEL_SIMPLE_AI,5)
~~~

去除一个参数即可。

~~~
Debug.ReloadFieldBegin(DUEL_ATTACK_FIRST_TURN,5)
~~~
</details>







|














|





59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<summary>
伪洗牌
</summary>
~~~
Debug.ReloadFieldBegin(DUEL_ATTACK_FIRST_TURN+DUEL_SIMPLE_AI,5)
~~~

添加特定参数即可。

~~~
Debug.ReloadFieldBegin(DUEL_ATTACK_FIRST_TURN+DUEL_SIMPLE_AI+DUEL_PSEUDO_SHUFFLE,5)
~~~
</details>

<details>
<summary>
完全操控 AI
</summary>
~~~
Debug.ReloadFieldBegin(DUEL_ATTACK_FIRST_TURN+DUEL_SIMPLE_AI,5)
~~~

去除特定参数即可。

~~~
Debug.ReloadFieldBegin(DUEL_ATTACK_FIRST_TURN,5)
~~~
</details>