Skip to content

Commit fa8d1bf

Browse files
authored
"THE CHRONICLES DECK: Spirit Charmers" + "Subspace Battle" official release script updates
1 parent efa56eb commit fa8d1bf

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,4 @@ function s.stage2(e,fc,tp,sg,chk)
6969
end)
7070
Duel.RegisterEffect(e1,tp)
7171
end
72-
end
72+
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,4 @@ function s.effop(e,tp,eg,ep,ev,re,r,rp)
9595
return
9696
end
9797
until remaining_count==0
98-
end
98+
end
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
--scripted by pyrQ
44
local s,id=GetID()
55
function s.initial_effect(c)
6-
--Apply this effect 3 times: ● Each player reveals 1 monster in their Deck, except a monster with ? ATK. Add the monster with higher ATK to the hand of the player that revealed it, also destroy the monster with lower ATK, and if you do, inflict 500 damage to the player that revealed it. If they have the same ATK, shuffle them into the Deck
6+
--Apply this effect 3 times, in sequence: ● Each player reveals 1 monster in their Deck, except a monster with ? ATK. Add the monster with higher ATK to the hand of the player that revealed it, also destroy the monster with lower ATK, and if you do, inflict 500 damage to the player that revealed it. If they have the same ATK, shuffle them into the Deck
77
local e1=Effect.CreateEffect(c)
88
e1:SetDescription(aux.Stringid(id,0))
99
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH+CATEGORY_DESTROY+CATEGORY_DAMAGE)
@@ -46,7 +46,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
4646
table.insert(tp_codes,sc1:GetCode())
4747
table.insert(opp_codes,sc2:GetCode())
4848
sc1:RegisterFlagEffect(id,RESETS_STANDARD_PHASE_END,0,1)
49-
sc2:RegisterFlagEffect(id+100,RESETS_STANDARD_PHASE_END,0,1)
49+
sc2:RegisterFlagEffect(id+1,RESETS_STANDARD_PHASE_END,0,1)
5050
atk1=sc1:GetAttack()
5151
atk2=sc2:GetAttack()
5252
if atk1>atk2 then
@@ -87,6 +87,6 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
8787
e1:SetReset(RESET_PHASE|PHASE_END)
8888
Duel.RegisterEffect(e1,tp)
8989
local e2=e1:Clone()
90-
e2:SetValue(function(e,re,tp) local rc=re:GetHandler() return re:IsMonsterEffect() and (rc:HasFlagEffect(id+100) or rc:IsCode(opp_codes)) end)
90+
e2:SetValue(function(e,re,tp) local rc=re:GetHandler() return re:IsMonsterEffect() and (rc:HasFlagEffect(id+1) or rc:IsCode(opp_codes)) end)
9191
Duel.RegisterEffect(e2,opp)
9292
end

0 commit comments

Comments
 (0)