Overview
Comment: | 0.0.117 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
4e72b3b1872a93c0d648724874578913 |
User & Date: | 顽雨沉风 on 2023-05-13 02:10:24 |
Other Links: | manifest | tags |
Context
2023-05-13
| ||
04:33 | 0.0.118 check-in: 99029f72cf user: 顽雨沉风 tags: trunk | |
02:10 | 0.0.117 check-in: 4e72b3b187 user: 顽雨沉风 tags: trunk | |
02:05 | 0.0.116 check-in: 66041c9b2e user: 顽雨沉风 tags: trunk | |
Changes
Modified huamei01.lua from [7bc22ebe86] to [2a93c18767].
1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | + + + + + + + + + + + + - - - + + + - - + + + - + | --[[message 卡数:21 规则:大师3 ]] --created by ygopro puzzle maker Debug.SetAIName("花妹") Debug.ReloadFieldBegin(DUEL_ATTACK_FIRST_TURN+DUEL_SIMPLE_AI+DUEL_PSEUDO_SHUFFLE,3) Debug.SetPlayerInfo(0,666,0,0) Debug.SetPlayerInfo(1,23333,0,0) local e0=Effect.GlobalEffect() e0:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) e0:SetCode(EVENT_ADJUST) e0:SetCountLimit(1) e0:SetCondition(function(e,tp,eg,ep,ev,re,r,rp) return Duel.GetLP(0)>0 end) e0:SetOperation(function(e,tp,eg,ep,ev,re,r,rp) local g=Duel.SelectMatchingCard(tp,Card.IsAbleToHand,tp,LOCATION_DECK,0,5,5,nil) if g:GetCount()>0 then Duel.SendtoHand(g,nil,REASONDECKE) end end) Duel.RegisterEffect(e0,0) --my hand |
︙ | |||
42 43 44 45 46 47 48 | 55 56 57 58 59 60 61 62 | - | --ai szone --ai fzone Debug.AddCard(57554544,1,1,LOCATION_SZONE,5,POS_FACEUP_ATTACK) Debug.ReloadFieldEnd() |