Overview
Comment: | 0.0.2012 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
63daf9144a74e998607ccbf424044276 |
User & Date: | 顽雨沉风 on 2023-07-22 04:18:56 |
Other Links: | manifest | tags |
Context
2023-07-22
| ||
04:19 | 0.0.2013 check-in: a469e38404 user: 顽雨沉风 tags: trunk | |
04:18 | 0.0.2012 check-in: 63daf9144a user: 顽雨沉风 tags: trunk | |
04:15 | 0.0.2011 check-in: b345bc2db9 user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua from [c66cada8a6] to [97c4dcaa0b].
︙ | ︙ | |||
423 424 425 426 427 428 429 430 431 | str_1:RegisterEffect(effect_1) end --} fun["随机抽卡"] = function(str_1) --{ str["随机抽卡的数量"] = str_1 end --} | > > > > > > > > > > > > > > > > > > > > > > | 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 | str_1:RegisterEffect(effect_1) end --} fun["随机抽卡"] = function(str_1) --{ str["随机抽卡的数量"] = str_1 effect_1 = Effect.GlobalEffect() effect_1:SetType(EFFECT_TYPE_FIELD + EFFECT_TYPE_CONTINUOUS) effect_1:SetCode(EVENT_ADJUST) effect_1:SetCondition(aux.TRUE) function cache_1(effect_event , player_who_activate_the_effect) --{ Duel.ShuffleDeck(0) Duel.Draw(0,str_1,REASON_RULE) effect_event:Reset() end --} effect_1:SetOperation(cache_1) Duel.RegisterEffect(effect_1 , 0) end --} |