Overview
| Comment: | 0.0.2035 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
0d5ba0fc61355c2d2cf9eb7472c6fd12 |
| User & Date: | 顽雨沉风 on 2023-07-23 00:40:49.516 |
| Other Links: | manifest | tags |
Context
|
2023-07-23
| ||
| 00:40 | 0.0.2036 check-in: 154313a5bc user: 顽雨沉风 tags: trunk | |
| 00:40 | 0.0.2035 check-in: 0d5ba0fc61 user: 顽雨沉风 tags: trunk | |
| 00:36 | 0.0.2034 check-in: 27389a3b0a user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua
from [1a72dce53b]
to [9b9cf8ad31].
| ︙ | ︙ | |||
287 288 289 290 291 292 293 |
Debug.ShowHint(str["开局说明"])
end --}
fun["开局添加手卡"] = function(str_1) --{
| | | 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 |
Debug.ShowHint(str["开局说明"])
end --}
fun["开局添加手卡"] = function(str_1) --{
str["开局添加手卡的数量"] = str_1
str["效果"] = Effect.GlobalEffect()
str["效果"]:SetType(EFFECT_TYPE_FIELD
+ EFFECT_TYPE_CONTINUOUS)
str["效果"]:SetCode(EVENT_ADJUST)
|
| ︙ | ︙ | |||
327 328 329 330 331 332 333 |
Duel.RegisterEffect(str["效果"]
, 0)
end --}
fun["禁格"] = function(str_1) --{
| | | 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 |
Duel.RegisterEffect(str["效果"]
, 0)
end --}
fun["禁格"] = function(str_1) --{
str["禁格的数量"] = str_1
str["效果"] = Effect.GlobalEffect()
str["效果"]:SetCode(EFFECT_USE_EXTRA_MZONE)
str["效果"]:SetValue(str_1)
|
| ︙ | ︙ | |||
351 352 353 354 355 356 357 |
else --{
str_3 = str_2
end --}
| | < < < | > > > > | 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 |
else --{
str_3 = str_2
end --}
Debug.ShowHint("点击对方额外卡组可以进行印卡。\n手卡只能印 "
.. str_2
.. " 张。\n最多可以印 "
.. str_3
.. " 张")
str["效果"] = Effect.CreateEffect(str_1)
str["当前印卡数"] = 1
str["效果"]:SetType(EFFECT_TYPE_IGNITION)
|
| ︙ | ︙ |