游戏王残局简化版

Check-in [7a0c9a98f2]
Login

Check-in [7a0c9a98f2]

Overview
Comment:0.0.762
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 7a0c9a98f2003afeb422c948c05b30d9140ea29b2f30477cdfd6e0f18798475c
User & Date: 顽雨沉风 on 2023-07-06 13:29:15
Other Links: manifest | tags
Context
2023-07-06
13:39
0.0.763 check-in: 6075e43ac8 user: 顽雨沉风 tags: trunk
13:29
0.0.762 check-in: 7a0c9a98f2 user: 顽雨沉风 tags: trunk
13:23
0.0.761 check-in: 910ffcfd48 user: 顽雨沉风 tags: trunk
Changes

Modified single/Furtie_Hubo_14_Nekroz_衍生版_1.lua from [92d958adc7] to [6af2a4cc96].

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
--[[message
Be cautious! Nekroz of Trishula will punish you if you do not get rid of your whole hand.
]]





-- Nekroz
Debug.SetAIName("Furtie_Hubo")
Debug.ReloadFieldBegin(DUEL_ATTACK_FIRST_TURN+DUEL_PSEUDO_SHUFFLE+DUEL_SIMPLE_AI,3)
Debug.SetPlayerInfo(0,8000,0,0)
Debug.SetPlayerInfo(1,8400,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,4,4,nil)
if g:GetCount()>0 then
  Duel.SendtoHand(g,nil,REASON_RULE)
end end)
Duel.RegisterEffect(e0,0)

-- Furtie_Hubo's Hand
Debug.AddCard(18964575,1,1,LOCATION_HAND,0,POS_FACEUP) -- Swift Scarecrow
Debug.AddCard(18964575,1,1,LOCATION_HAND,0,POS_FACEUP) -- Swift Scarecrow

-- Furtie_Hubo's Field
Debug.AddCard(47475363,1,1,LOCATION_SZONE,1,POS_FACEDOWN) -- Drowning Mirror Force




>
>
>
>






<
<
<
<
<
<
<
<
<
<
<







1
2
3
4
5
6
7
8
9
10
11
12
13
14











15
16
17
18
19
20
21
--[[message
Be cautious! Nekroz of Trishula will punish you if you do not get rid of your whole hand.
]]

--~ 必须位于残局文件顶部
--~ 加载残局函数库
Debug.AddCard(0,0,0,LOCATION_MZONE,-1,POS_FACEUP)

-- Nekroz
Debug.SetAIName("Furtie_Hubo")
Debug.ReloadFieldBegin(DUEL_ATTACK_FIRST_TURN+DUEL_PSEUDO_SHUFFLE+DUEL_SIMPLE_AI,3)
Debug.SetPlayerInfo(0,8000,0,0)
Debug.SetPlayerInfo(1,8400,0,0)













-- Furtie_Hubo's Hand
Debug.AddCard(18964575,1,1,LOCATION_HAND,0,POS_FACEUP) -- Swift Scarecrow
Debug.AddCard(18964575,1,1,LOCATION_HAND,0,POS_FACEUP) -- Swift Scarecrow

-- Furtie_Hubo's Field
Debug.AddCard(47475363,1,1,LOCATION_SZONE,1,POS_FACEDOWN) -- Drowning Mirror Force
66
67
68
69
70
71
72
73
74
75
76
77
78
79
--~ Debug.AddCard(89463537,0,0,LOCATION_DECK,0,POS_FACEDOWN) -- Nekroz of Unicore
Debug.AddCard(96729612,0,0,LOCATION_HAND,0,POS_FACEDOWN) -- Preparation of Rites

-- Start the Puzzle
Debug.ReloadFieldEnd()

aux.BeginPuzzle()
local e999=Effect.GlobalEffect()
e999:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e999:SetCode(EVENT_DAMAGE)
e999:SetCondition(function(e,tp,eg,ep,ev,re,r,rp) return Duel.GetLP(1)<=0 end)
e999:SetOperation(function(e,tp,eg,ep,ev,re,r,rp)
Debug.ShowHint("残局群181175613") end)
Duel.RegisterEffect(e999,0)







|
|
<
<
<
<
<
59
60
61
62
63
64
65
66
67





--~ Debug.AddCard(89463537,0,0,LOCATION_DECK,0,POS_FACEDOWN) -- Nekroz of Unicore
Debug.AddCard(96729612,0,0,LOCATION_HAND,0,POS_FACEDOWN) -- Preparation of Rites

-- Start the Puzzle
Debug.ReloadFieldEnd()

aux.BeginPuzzle()

fun["开局添加手卡"](4)