Overview
| Comment: | 0 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
33a768441706c0b5b8103cc28dc425da |
| User & Date: | 顽雨沉风 on 2024-07-18 22:34:07.214 |
| Other Links: | manifest | tags |
Context
|
2024-07-18
| ||
| 22:36 | 0 check-in: 27a22e0f7e user: 顽雨沉风 tags: trunk | |
| 22:34 | 0 check-in: 33a7684417 user: 顽雨沉风 tags: trunk | |
| 22:33 | 0 check-in: a6497b9644 user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua
from [d7d7a86451]
to [3f8daaa593].
| ︙ | ︙ | |||
64 65 66 67 68 69 70 |
do
--~ 量_从卡组选几张卡加入手卡
local k1
--~ 效果_所调用这个效果的效果
--~ 数_所调用这个效果的玩家
f["_从卡组选卡加入手卡"] = function(o1, o2)
--~ 卡_玩家选定的卡
| | | | | | | | | | | | | 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 |
do
--~ 量_从卡组选几张卡加入手卡
local k1
--~ 效果_所调用这个效果的效果
--~ 数_所调用这个效果的玩家
f["_从卡组选卡加入手卡"] = function(o1, o2)
--~ 卡_玩家选定的卡
local k11
k11 = Duel.SelectMatchingCard(o2, Card.IsAbleToHand, o2, LOCATION_DECK, 0, k1, k1, nil)
Duel.SendtoHand(k11, nil, REASON_RULE)
o1:Reset()
end
--~ 量_从卡组选几张卡加入手卡
f["从卡组选卡加入手卡"] = function(o1)
--~ 效果
local k11
d["量_从卡组选几张卡加入手卡"] = o1
k1 = o1
k11 = Effect.GlobalEffect()
k11:SetType(EFFECT_TYPE_FIELD + EFFECT_TYPE_CONTINUOUS)
k11:SetCode(EVENT_ADJUST)
k11:SetCondition(aux.TRUE)
k11:SetCountLimit(1)
k11:SetOperation(f["_从卡组选卡加入手卡"])
Duel.RegisterEffect(k11, 0)
end
end
--~ 量_禁用几个我方主要怪兽区域
f["禁用我方主要怪兽区域"] = function(o1)
--~ 效果
local k1
d["量_禁用几个我方主要怪兽区域"] = o1
|
| ︙ | ︙ |