Closed NaimSantos closed 4 years ago
I believe Talkback Lancer (or "Trackback Talker" 😛) to be fixed in #25.
Regarding the issue with Linkuriboh, the problem is definitely in the core. Looking at how Card.IsLevel is implemented, it's meant to work like Card.IsCode: it takes any amount of levels, and checks if one of them matches with the card's level. It's not meant to be used with FilterBoolFunctionEx, by doing that we're passing tp, which is likely 0, as a potential level, thus allowing it to take cards with no levels.
In order to fix the issue, there are two potential solutions, both requiring changes to the core:
Whatever the solution, once the issue is solved corewise we should also update the Xyz procedure: right now it's still using Card.IsXyzLevel, which will likely be outdated with those changes.
The issues with the Fusion procedures and Kaleido Chick (plus other similar) should be fixed in #26 .
Around 60 cards use GetLinkedZone, that was removed. Thus, all those cards need to be fixed. Adding a check box for that. Update: only GetFreeLinkZone was removed
This commit fixes the cards that should use "Due.ShuffleExtra" #https://github.com/kevinlul/edopro-script/commit/809b66673125af86cd64b1cb13e1712ac03631f6
https://github.com/kevinlul/edopro-config/commit/efadf3eb013ed0ae259e6bb0e1943257024f5251 contains 3 deck files with all the TCG/OCG Continuous Trap cards that have an effect that can be used when the card is activated and might need to be changed. Requires each card to be verified individually. Example of change is the current version of Time Pendulumgraph, that was already changed
The update to the Fusion procedures is being handled in #30 , further details there.
Catalyst Field and similar cards with continuous effects that decrease the number of tributes required to summon other monsters are bugged, as seen in this puzzle.
about linkuriboh it just someone missundertood what was changed, in fact FilterBoolFunctionEx(f, value) passes f(card, value, sumcard, sumontype, player) wich is not suitable to what islevel takes as param (it only takes the the lv as param and have no use for summon type, card and even summoning player), the only changes the function received is instead of doing c:IsLevel(1) or c:IsLevel(2) ... you can do now c:IsLevel(1, 2, ...) aka multiple levels at same time, so best one suitable there is FilterBoolFunction
Linkuriboh confirmed as fixed in 5f99c379c338c1c792b5a9cfb8cadccef70d093d and 6f8bf736f184899676496fc82d43b3e3db75b7f4
I forgot about this issue, but I've just ticked two more checkboxes - #7 has been closed, and I've lightly tested Speed Duels before in the course of trying out Skills
I unticked Action Duel given all the changes that Action Duel is undergoing at the moment.
Bugs
FilterBoolFunctionEx
function.FilterBoolFunctionEx
function. Noted by me: Chaos Ancient Gear Giant, Prankids Battle Butter, the Dragon Maid fusion monsterGetFreeLinkedZone
GetFreeLinkedZone
In addition, all the issues listed here should be solved. These have puzzles available in the latest Edopro build, so you can test them.
Enhancements:
All the following issues
Before the release:
Major script differences:
Counters: Any card that mentions a type of counter in the text must include the
s.counter_list
table. Cards that, specifically, place counters (either on themselves or others) will have thes.counter_place_list
, instead. See details in this discussionDuel.SpecialSummonStep
has been changed, and due to that,SpecialSummonComplete
must be moved out of that loop. See how to do it hereCards that have a filter with only 2 functions, where 1 of those are
IsFaceup
must useaux.FilterFaceupFunction
. See discussion and examples hereUse "for" instead of "while" when iterating through a group
Cards that had a filter with a single check +
IsFaceup
have been updated to useaux.FilterFaceupFunction
instead, as seen in #3All Fusion Summon effects have been rewritten, due to changes in the Fusion Procedure. See #30, #26, also many changes made by Edo, but that are no longer in the commit history.
Ritual Effects have been changed, due to changes in the Ritual Summon Procedure.
The syntax for recipes that use
FilterBoolFunction
must be changed when the function passed takes more than 1 check, due to the usage ofFilterBoolFunctionEx
. Compare the script of Dragonmaid Husky with Percy's to see the difference.The auxiliary function
SelectUnselect
has been applied to cards that could use it, to make a selection for cards matching a criteria cancelable, as seen in #4.Due.ShuffleExtra
has been applied to cards that reveal the Extra DeckAll the Continuous Traps have been changed, removing their complex handling for when it is possible to activate them, only, and activate and use their effects. See #31
Cards that have an Special Summon procedure that does some kind of selection - tributing, discarding, banishing, etc- must be changed to make such procedure cancelable. See examples in #90
Cards with effects that Fusion Summon should have the 'manual' approach for that effect, where you script it from the target to the operation function replaced by the Fusion Summon procedure. See examples in #160.
14