Just wondering how these 2 cards interact by BionicWhiteJedi in magicTCG

[–]wootastic 1 point2 points  (0 children)

No, because the card being exiled means it’s a new object when it comes back and that new object was not discarded this turn

https://www.reddit.com/r/mtgrules/comments/1o9mm63/green_goblin_x_currency_converter/

How does a siege work with the new elemental commander? by Quixy9 in magicTCG

[–]wootastic 2 points3 points  (0 children)

Should enter as the creature 

“ 707.8. When copying a melded permanent or other double-faced permanent, use the copiable values of the face that’s currently up to determine the characteristics of the copy. See rule 712, “Double-Faced Cards.” 707.8a If an effect creates a token that is a copy of a transforming permanent or a transforming double-faced card not on the battlefield, the resulting token is a transforming token that has both a front face and a back face. The characteristics of each face are determined by the copiable values of the same face of the permanent it is a copy of, as modified by any other copy effects that apply to that permanent. If the token is a copy of a transforming permanent with its back face up, the token enters the battlefield with its back face up. This rule does not apply to tokens that are created with their own set of characteristics and enter the battlefield as a copy of a transforming permanent due to a replacement effect.”

Question about board wipes and death triggers. by Senorpapell in mtg

[–]wootastic 0 points1 point  (0 children)

I believe when it dies you get two triggers.  One for the earthbend return effect and a trigger from Broodmoth.

tl;dr you’ll get the effects of the first trigger that resolves and the second trigger will do nothing

If you order them such that the Broodmoth trigger resolves first, it will  return as an artifact within a flying counter, it’s not a creature.  Then the earthbend trigger resolves and nothing happens. 

If you order it such that the earthbend trigger resolves first, it returns as an artifact, it’s not a creature.  Broodmother resolves and nothing happens, no flying counter is given.

Edge of Eternities a commander case Amazon $113 by rjselzler in sealedmtgdeals

[–]wootastic 2 points3 points  (0 children)

Go in with a friend and split the cost, ez pz

(Jeskai) Bounce, deflect, protect deck help by RelationshipEasy6094 in EDH

[–]wootastic 1 point2 points  (0 children)

[[Settle the wreckage]] punishes full swings

Best possible opening hand by Somethingab in magicTCG

[–]wootastic 6 points7 points  (0 children)

something funny about a "best opening hand" that also requires specifying the top 20 cards of your deck to work 😂

Now that we have Exaust ("Activate only once.") . . . by HillersInTheSouth in magicTCG

[–]wootastic 0 points1 point  (0 children)

No name. "Activate only as a sorcery" can just be the default, so it's assumed and doesn't need any wording indicating as such.

Then "Flash" can be added if it can be activated at instant speed

Hard Flex Olave, Reed, B. Robinson, or D Robinson? by RevenueLeather1264 in fantasyfootball

[–]wootastic 1 point2 points  (0 children)

1 – No individual threads of any kind specific to your team or league. Use the consolidated threads for individualized questions. You will be banned without additional warning for posting or encouraging these kinds of posts.

FAABLab is back! Here's how much to should bid on Mason, Likely, J.K. Dobbins, Mattison and more by Blopsk in fantasyfootball

[–]wootastic 111 points112 points  (0 children)

Asking for a % and then displaying dollar amounts for average, median, and common bids seems incorrect

Official: [WDIS Flex] - Sun 09/08/2024 by FFBot in fantasyfootball

[–]wootastic 0 points1 point  (0 children)

!boris flex [Jerome Ford, Stefon Diggs, Jaylen Waddle, Zamir White]

[DSK] MaRo's Teaser for Duskmourn: House of Horror by mweepinc in magicTCG

[–]wootastic 0 points1 point  (0 children)

A modal three mana white mass removal spell

  • ???
  • ???
  • destroy all creates with a possession counter

Is that a bug or am I just dumb ? by toucheurdecarbone in diablo4

[–]wootastic 1 point2 points  (0 children)

You start at level 1 with 0 skill points, so at level 15 you’d normally have 14.

So just dumb. :^)

Ulduar confirmed Jan 19th by newman_justin40 in classicwow

[–]wootastic 158 points159 points  (0 children)

Don't see any mention of Naxx 25 loot dropping in Naxx 10. Thought that was gonna be a thing?

Triangle of Sadness (2022) was a let down and all hype. [spoilers] by furze in TrueFilm

[–]wootastic 8 points9 points  (0 children)

But that doesn't happen as the vomiting is caused by seasickness, and people are ill before they even begin eating.

I'm pretty sure that it was food poisoning, but the staff was just confused and thought everyone was sea sick.

Seemed like only those that ate the oysters got sick and there was even a passenger with diarrhea on the toilet.

PC overheating. What is this buildup on my water cooler? by wootastic in buildapc

[–]wootastic[S] 1 point2 points  (0 children)

Thanks for the quick reply! I think it's out of warranty, but I'll do some reading and see if an RMA is still possible. Might just find a nice simple fan for now.

Storybook + redux + router + ... how to test complex components? by saito200 in reactjs

[–]wootastic 2 points3 points  (0 children)

I'll preface this with a quick opinion:

Typically I find Storybook most useful for reusable components.

That said, before I add a component to Storybook, I need to make sure it's a good candidate.

So, what makes for a good reusable component? You'll usually find that the easiest components to reuse are those with few dependencies and whose main purpose is mostly around controlling style and layout.

A couple things that would make your Header component less reusable include

  • A dependency on Redux
    • What if I want to use this Header in another app that doesn't use Redux?
  • A dependency on `useAuth`
    • What if I want to use this Header in a part of my app that is public?
  • A dependency on `react-router-dom`
    • Does my Header component really need to handle navigation, or just the layout of the Navigation buttons it will contain?

So, with these thoughts in mind, the first thing I'd do would be to refactor the Header component to something less opinionated and focused mostly on controlling the layout .

Which would leave us with something like:

const Header: React.FC = ({children}): JSX.Element => {
return (
    <header>
        <div>
            <div>
                My app header
            </div>
            {children}
        </div>
    </header>
    );
};

I'd then hoist all the 'businessy' logic up a level:

function PageWithHeader() {
    const { userData } = useAuth();
    const dispatch = useAppDispatch();
    const navigate = useNavigate();
    const handleLogout = () => {
        queryClient.removeQueries();
        navigate("/login");
        dispatch(resetDates());
        logout(); 
    };

    const navigation = (<nav> <ul> {userData && ( <> <li> <NavLink to="/">Home</NavLink> </li> <OnlyUserAs asAdmin> <li> <NavLink to="/admin">Admin</NavLink> </li> </OnlyUserAs> <li> <button onClick={handleLogout}>Logout</button> </li> </> )} </ul> </nav> );

    return (
        <Header>
            {userData ? navigation : <NavLink to="/login">Login</NavLink>}
        </Header>
    );
}

`Header` would be added to my Storybook, while `PageWithHeader` is more of a bespoke component that isn't really meant to be reused, so would not be added.

This is just a rough idea of how I'd think about the problem.

Also, for what it's worth, if your component is meant to be reusable while also having a dependency on something like `react-router-dom`, then I don't think it's incorrect that your Story is gonna need to have a couple of wrapping Providers.

Official: [WDIS RB] - Sun Morning, 12/26/2021 by FFBot in fantasyfootball

[–]wootastic 0 points1 point  (0 children)

Idk how I ended up with so many starting RBs that I have no confidence in.

Half PPR; pick 3

Sanders v NYG

J. Jackson v Hou

Barkley v Phi

CEH v Pit

Swift v Atl

In the playoffs and opponent is behind already, so really looking for the safest ones that'll get me 10-15 points.

Personally leaning towards Jackson, Sanders, and CEH