游戏王残局简化版

Check-in [43ea8c8217]
Login

Check-in [43ea8c8217]

Overview
Comment:
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 43ea8c82170826d306c491e6280680f5fdc6aa53199ccd2af830b1ab31883c9e
User & Date: 顽雨沉风 on 2024-02-13 10:41:33
Other Links: manifest | tags
Context
2024-02-13
10:52
check-in: af6ca14c70 user: 顽雨沉风 tags: trunk
10:41
check-in: 43ea8c8217 user: 顽雨沉风 tags: trunk
10:40
check-in: 04eb866260 user: 顽雨沉风 tags: trunk
Changes

Modified script/c0.lua from [2fc2c2ea28] to [cac850b2f3].

163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
Debug.ReloadFieldEnd = function(u1)
  fun["Debug.ReloadFieldEnd"]()
  if u1 then
    fun["一_随机抽卡"](u1)
  end
end
fun["二_印卡"] = function(u1, u2, u3)
  if u3 then
  else
    u3 = u2
  end
  Debug.ShowHint(
    "点击对方额外卡组可以进行印卡。\n手卡只能印 "
      .. u2
      .. " 张。\n最多可以印 "
      .. u3
      .. " 张"
  )







<
<
|
<







163
164
165
166
167
168
169


170

171
172
173
174
175
176
177
Debug.ReloadFieldEnd = function(u1)
  fun["Debug.ReloadFieldEnd"]()
  if u1 then
    fun["一_随机抽卡"](u1)
  end
end
fun["二_印卡"] = function(u1, u2, u3)


  u3 = u3 or u2

  Debug.ShowHint(
    "点击对方额外卡组可以进行印卡。\n手卡只能印 "
      .. u2
      .. " 张。\n最多可以印 "
      .. u3
      .. " 张"
  )