游戏王残局简化版

Check-in [f5151431f7]
Login

Check-in [f5151431f7]

Overview
Comment:0.0.549
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: f5151431f7ae472ccdb4fdbfa9d50e3243edf62cff227fa65406924b08d82cbd
User & Date: 顽雨沉风 on 2023-07-01 12:51:29
Other Links: manifest | tags
Context
2023-07-01
12:52
0.0.550 check-in: 4cd4fa6538 user: 顽雨沉风 tags: trunk
12:51
0.0.549 check-in: f5151431f7 user: 顽雨沉风 tags: trunk
12:47
0.0.548 check-in: c1ba415e4d user: 顽雨沉风 tags: trunk
Changes

Modified single/19.Let's GaGaGa.lua from [c3645bbc04] to [2e5de06a1c].

1
2
3
4
5
6
7
8
9




10
11
12
13
14
15
16
--[[message
一起来我我我
]]

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

Debug.SetAIName("四妹")
Debug.ReloadFieldBegin(DUEL_ATTACK_FIRST_TURN+DUEL_SIMPLE_AI+DUEL_PSEUDO_SHUFFLE,3)




Debug.SetPlayerInfo(0,700,0,1)
Debug.SetPlayerInfo(1,12200,0,0)

Debug.AddCard(14785765,0,0,LOCATION_DECK,0,POS_FACEDOWN)
Debug.AddCard(71453557,0,0,LOCATION_DECK,0,POS_FACEDOWN)
Debug.AddCard(72355441,0,0,LOCATION_DECK,0,POS_FACEDOWN)
Debug.AddCard(90673413,0,0,LOCATION_DECK,0,POS_FACEDOWN)









>
>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--[[message
一起来我我我
]]

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

Debug.SetAIName("四妹")
Debug.ReloadFieldBegin(DUEL_ATTACK_FIRST_TURN+DUEL_SIMPLE_AI+DUEL_PSEUDO_SHUFFLE,3)
--~ Debug.ReloadFieldBegin(
--~   DUEL_ATTACK_FIRST_TURN
--~   + DUEL_SIMPLE_AI
--~   , 5)
Debug.SetPlayerInfo(0,700,0,1)
Debug.SetPlayerInfo(1,12200,0,0)

Debug.AddCard(14785765,0,0,LOCATION_DECK,0,POS_FACEDOWN)
Debug.AddCard(71453557,0,0,LOCATION_DECK,0,POS_FACEDOWN)
Debug.AddCard(72355441,0,0,LOCATION_DECK,0,POS_FACEDOWN)
Debug.AddCard(90673413,0,0,LOCATION_DECK,0,POS_FACEDOWN)

Modified single_doc/卡组测试教程.md from [01b8b5263b] to [11122868e4].

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







|
>







|
>












|
>







|
>



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
105
106
107
108

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