[partly confirmed]Mimic Vat vs. Terror

Describe the bug:
Mimic Vat doesn't let me exile cards that were buried, just ones that were destroyed or sacrificed.
Also, it only lets me imprint one card if more than one are simultaneously destroyed with something like Pyroclasm, so Rakshasa Vizier can only get at most two +1/+1 counters at a time. (It can only get even that many if Mimic Vat works right with meld cards, which are broken badly enough in at least dev that I can't test with them.)
Which card behaved improperly?
is_this_dying().
Which update are you using? (date, name)Which type? (duel, gauntlet, sealed deck)
Dev 4721c01.
What exactly should be the correct behavior/interaction?
It only cares about cards going to the graveyard from the battlefield, not whether they can regenerate.
Are any other cards possibly affected by this bug?
This method of checking whether a card will actually go to a graveyard is so fragile as to be useless - it's incompatible with anything that replaces cards going to the graveyard with going somewhere else, like Leyline of the Void. Mimic Vat tries to fix this by searching the graveyard for a card with the same iid as the dying one, so it mostly isn't a problem in practice; but it'll incorrectly find a different copy of the same card that was put in a graveyard before the Leyline of the Void or whatever started exiling cards.
Mimic Vat doesn't let me exile cards that were buried, just ones that were destroyed or sacrificed.
Also, it only lets me imprint one card if more than one are simultaneously destroyed with something like Pyroclasm, so Rakshasa Vizier can only get at most two +1/+1 counters at a time. (It can only get even that many if Mimic Vat works right with meld cards, which are broken badly enough in at least dev that I can't test with them.)
Which card behaved improperly?
is_this_dying().
Which update are you using? (date, name)Which type? (duel, gauntlet, sealed deck)
Dev 4721c01.
What exactly should be the correct behavior/interaction?
It only cares about cards going to the graveyard from the battlefield, not whether they can regenerate.
Are any other cards possibly affected by this bug?
This method of checking whether a card will actually go to a graveyard is so fragile as to be useless - it's incompatible with anything that replaces cards going to the graveyard with going somewhere else, like Leyline of the Void. Mimic Vat tries to fix this by searching the graveyard for a card with the same iid as the dying one, so it mostly isn't a problem in practice; but it'll incorrectly find a different copy of the same card that was put in a graveyard before the Leyline of the Void or whatever started exiling cards.