游戏王残局简化版

Check-in [cbdee3d921]
Login

Check-in [cbdee3d921]

Overview
Comment:0.0.681
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: cbdee3d921742669f6142c763dc4ff070200dddecbf1eaa44e45c2f5a47eefac
User & Date: 顽雨沉风 on 2023-07-05 08:43:29
Other Links: manifest | tags
Context
2023-07-05
08:44
0.0.682 check-in: 6932193319 user: 顽雨沉风 tags: trunk
08:43
0.0.681 check-in: cbdee3d921 user: 顽雨沉风 tags: trunk
08:34
0.0.680 check-in: 2e5e7f4d20 user: 顽雨沉风 tags: trunk
Changes

Modified single_doc/卡组测试教程.md from [86e3db5836] to [0e06175202].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
1
2
3
4
5
6
7
8
9
10
11
12
13






























14
15
16
17
18
19
20













-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-








<div class="title">卡组测试教程</div>

<details>
<summary>
前言
</summary>
有人想用残局,进行卡组测试。

鄙人在此提供些微帮助。

</details>

<details>
<summary>
开启多回合
</summary>

~~~
aux.BeginPuzzle()
~~~

它注册了三个效果:

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

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

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

~~~
Debug.SetPlayerInfo(0,0,0,0)
~~~

最后一个参数控制每回合抽卡数量。
</details>

<details>
<summary>
开局添加手卡
</summary>

~~~
--~ 必须位于残局文件顶部
67
68
69
70
71
72
73
































74
75
76
77
78
79
80
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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







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







数字可改。

<b>注意:这项功能依赖于残局函数库。</b>

<b>具体来说,就是要安装「游戏王残局简化版」。</b>

</details>

<details>
<summary>
开启多回合
</summary>

~~~
aux.BeginPuzzle()
~~~

它注册了三个效果:

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

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

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

~~~
Debug.SetPlayerInfo(0,0,0,0)
~~~

最后一个参数控制每回合抽卡数量。
</details>



<details>
<summary>
伪洗牌
</summary>

~~~