GithubHelp home page GithubHelp logo

Comments (16)

NaimSantos avatar NaimSantos commented on July 3, 2024 1

"Outrigger Expand" is missing "also you cannot Special Summon monsters for the rest of this turn, except EARTH Machine monsters." in its script

from percy-alpha-testing.

AlphaKretin avatar AlphaKretin commented on July 3, 2024

I have a prototype script for Eidel and Bittle, and I'll start by scripting Hyne

from percy-alpha-testing.

AlphaKretin avatar AlphaKretin commented on July 3, 2024

Hold the phone on Hyne, one of the cards needs hardcoding in everything that does a discard. Ironically it doesn't need anything fancy itself so I'll script it, Scroll, instead.

from percy-alpha-testing.

AlphaKretin avatar AlphaKretin commented on July 3, 2024

never mind on that either multiple cards do it so we need to decide on the code. not dibsing anything until we know everything

from percy-alpha-testing.

AlphaKretin avatar AlphaKretin commented on July 3, 2024

In lieu of a specific card, I wrote the code for spells recurring themselves to be re-used

--Witchcraft Spell
local s,id=GetID()
function s.initial_effect(c)
    local e2=Effect.CreateEffect(c)
    e2:SetCategory(CATEGORY_TOHAND+CATEGORY_LEAVE_GRAVE)
    e2:SetDescription(aux.Stringid(id,0))
    e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
    e2:SetCode(EVENT_PHASE+PHASE_END)
    e2:SetRange(LOCATION_GRAVE)
    e2:SetCountLimit(1,id)
    e2:SetCondition(s.thcon)
    e2:SetTarget(s.thtg)
    e2:SetOperation(s.thop)
    c:RegisterEffect(e2)
end
function s.thcon(e,tp,eg,ep,ev,re,r,rp)
    return Duel.IsExistingMatchingCard(aux.FilterFaceupFunction(Card.IsSetCard,0x228),tp,LOCATION_MZONE,0,1,nil)
end
function s.thtg(e,tp,eg,ep,ev,re,r,rp,chk)
    local c=e:GetHandler()
    if chk==0 then return c:IsAbleToHand() end
    Duel.SetOperationInfo(0,CATEGORY_TOHAND,c,1,tp,LOCATION_GRAVE)
end
function s.thop(e,tp,eg,ep,ev,re,r,rp,chk)
    local c=e:GetHandler()
    if c:IsRelateToEffect(e) then
        Duel.SendtoHand(c,tp,REASON_EFFECT)
    end
end

from percy-alpha-testing.

AlphaKretin avatar AlphaKretin commented on July 3, 2024

Doing creation and sabotage

from percy-alpha-testing.

EerieCode avatar EerieCode commented on July 3, 2024

I'm preparing an utility for the discard replacement of the WC Continuous Spells

from percy-alpha-testing.

AlphaKretin avatar AlphaKretin commented on July 3, 2024

With the discard issue out of the way I guess I'll take another crack at Hyne

from percy-alpha-testing.

AlphaKretin avatar AlphaKretin commented on July 3, 2024

Doing WC Draping

from percy-alpha-testing.

AlphaKretin avatar AlphaKretin commented on July 3, 2024

Gonna do masterpiece

from percy-alpha-testing.

AlphaKretin avatar AlphaKretin commented on July 3, 2024

Incidental reminder for posterity (and testing), we also got some cards not from DBIC, including Ankuriboh in the VJMP folder and a vanilla. There are also updates to all existing Witchcraft monsters and Infinite Ignition Cancer Crane

from percy-alpha-testing.

NaimSantos avatar NaimSantos commented on July 3, 2024

Added unfished version of Witchcraft Bystreet. Needs the discard replacement effect

from percy-alpha-testing.

EerieCode avatar EerieCode commented on July 3, 2024

Added unfished version of Witchcraft Bystreet. Needs the discard replacement effect

I've added that effect. The use of the number instead of id is intentional, it's the one used in the utility.

from percy-alpha-testing.

NaimSantos avatar NaimSantos commented on July 3, 2024

All cards revealed are now finished

from percy-alpha-testing.

AlphaKretin avatar AlphaKretin commented on July 3, 2024

Doing Drag Shovel

from percy-alpha-testing.

AlphaKretin avatar AlphaKretin commented on July 3, 2024

aaaand trencher e: uh maybe it's aht w/e

from percy-alpha-testing.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.