We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f62829 commit efb6e4aCopy full SHA for efb6e4a
1 file changed
unofficial/c152000018.lua
@@ -10,17 +10,18 @@ function s.flipcon(e,tp,eg,ep,ev,re,r,rp)
10
return Duel.GetFlagEffect(tp,id)==0
11
end
12
function s.flipop(e,tp,eg,ep,ev,re,r,rp)
13
- --opt Register
+ --OPT Register
14
Duel.RegisterFlagEffect(tp,id,RESET_PHASE|PHASE_END,0,0)
15
Duel.Hint(HINT_SKILL_FLIP,tp,id|(1<<32))
16
Duel.Hint(HINT_CARD,tp,id)
17
+ --Checks for "Anti-Skill"
18
if aux.CheckSkillNegation(e,tp) then return end
19
--Add Cyberse monster to Extra Deck
- s.announce_filter={TYPE_EXTRA,OPCODE_ISTYPE,RACE_CYBERSE,OPCODE_ISRACE,OPCODE_AND}
20
+ s.announce_filter={TYPE_EXTRA,OPCODE_ISTYPE,RACE_CYBERSE,OPCODE_ISRACE,OPCODE_AND,OPCODE_ALLOW_ALIASES}
21
local storm=Duel.AnnounceCard(tp,table.unpack(s.announce_filter))
22
local tc=Duel.CreateToken(tp,storm)
23
if tc:IsAbleToDeck() then
24
Duel.SendtoDeck(tc,tp,0,REASON_EFFECT)
25
26
Duel.Hint(HINT_SKILL_FLIP,tp,id|(2<<32))
-end
27
+end
0 commit comments