游戏王残局简化版

Check-in [c1ba415e4d]
Login

Check-in [c1ba415e4d]

Overview
Comment:0.0.548
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: c1ba415e4dd797a12eaf6679a5147f938b74e4fa457268e9c7e3b205f0eafc9e
User & Date: 顽雨沉风 on 2023-07-01 12:47:51.475
Other Links: manifest | tags
Context
2023-07-01
12:51
0.0.549 check-in: f5151431f7 user: 顽雨沉风 tags: trunk
12:47
0.0.548 check-in: c1ba415e4d user: 顽雨沉风 tags: trunk
12:46
0.0.547 check-in: 1a4f996080 user: 顽雨沉风 tags: trunk
Changes
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
83


84
85
86
87
88
89

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

~~~
--~ 加载残局函数库
Debug.AddCard(0,0,0,LOCATION_MZONE,-1,POS_FACEUP)





~~~

这段加载代码应放于脚本顶部,才可使用所有功能。

~~~
fun["开局添加手卡"](6)
~~~

这段代码应放于脚本底部。

数字可改。
</details>

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







|
>
>
>
>
>



















|
>
>





|
>
>
>









|
>
>





|
>


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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<details>
<summary>
开局添加手卡
</summary>

~~~
--~ 加载残局函数库
Debug.AddCard(0
  , 0
  , 0
  , LOCATION_MZONE
  , -1
  , POS_FACEUP)
~~~

这段加载代码应放于脚本顶部,才可使用所有功能。

~~~
fun["开局添加手卡"](6)
~~~

这段代码应放于脚本底部。

数字可改。
</details>

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