游戏王残局简化版

Check-in [f339169133]
Login

Check-in [f339169133]

Overview
Comment:0.0.684
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: f3391691339bccbef94d066b0a3b66a1a5a7b392b35f72d86b0bdda156cb6402
User & Date: 顽雨沉风 on 2023-07-05 08:46:35.456
Other Links: manifest | tags
Context
2023-07-05
08:47
0.0.685 check-in: 1e14de5096 user: 顽雨沉风 tags: trunk
08:46
0.0.684 check-in: f339169133 user: 顽雨沉风 tags: trunk
08:45
0.0.683 check-in: 2af3c67742 user: 顽雨沉风 tags: trunk
Changes
58
59
60
61
62
63
64





















65
66
67
68
69
70
71
58
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
87
88
89
90
91
92







+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+







1. 跳过抽卡阶段
1. 跳过准备阶段
1. 结束阶段时,玩家血量<b>归零</b>

去掉这一代码,便可开启多回合。
</details>

<details>
<summary>
完全操控 AI
</summary>

~~~
Debug.ReloadFieldBegin(
  DUEL_ATTACK_FIRST_TURN
  + DUEL_SIMPLE_AI
  , 5)
~~~

去除特定参数即可。

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

<details>
<summary>
控制抽卡数量
</summary>

~~~
Debug.SetPlayerInfo(0,0,0,0)
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
116
117
118
119
120
121
122




123






















-
-
-
-

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