-
-
Notifications
You must be signed in to change notification settings - Fork 64
Improving "Time Thief Redoer" to know what card was attached #189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Another way would be to highlight cards whenever they are attached to an existing Xyz monster, but that would be a bit redundant with other effects, that already target. |
Neither function s.xyzop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
local g=Duel.GetDecktopGroup(1-tp,1)
if c:IsRelateToEffect(e) and #g==1 then
[either] Duel.ConfirmCards(tp,g) [or] Duel.ConfirmDecktop(1-tp,1)
Duel.DisableShuffleCheck()
Duel.Overlay(c,g)
end
end |
My comment was made w.r.t. confirming after |
@AlphaKretin: "When Time Thief Redoer takes a card from the top of the opponent's deck, there's no easy way to see what it was. You have to check its Xyz Material manually which gets interrupted by the opponent taking actions."
Originally requested 11/08/2019 by @pyrQ
Duel.Hint
withHINT_CODE
: "declare" box that says the name of the card, is added in the logDuel.Hint
withHINT_CARD
: flashes the card image on the screen (as if its effect was activated/applied)Duel.ConfirmCards
before attaching the card on Redoer: basically reveals the top card of the deck (perhaps a bit inaccurate gameplay-wise, note that doing this after attaching the card as material crashes the game, at least on my end)Duel.HintSelection
: "targets" the card on top of the deck (doesn't show it) and adds it in the log (seems inferior to the first option)Any other ideas or thoughts on the above are welcome.
The text was updated successfully, but these errors were encountered: