How to target cards in the exile zone?

I was attempting to code Jhoira's Timebug (yes, suspend might come back in my mod, if I solve this issue...) and I stumbled upon a major problem. Leaving aside the choice about which zone I want to target, I tried to ignore the possibility to target permanents and I made a target definition like this:
In previous DotP games this problem was easily ignored by making players choose their target from a chest... but in DotP2014 we have the TARGET block which, as far as I know, doesn't allow to choose the target from a chest. So, does anybody have an idea about how to target cards in the exile zone?
- Code: Select all
<TARGET_DEFINITION id="0">
local filter = ClearFilter()
filter:SetZone(ZONE_EXILE)
filter:Add( FE_OWNER, OP_IS, EffectController() )
-- plus a characteristic that I gave to suspended cards, it's not important here
</TARGET_DEFINITION>
In previous DotP games this problem was easily ignored by making players choose their target from a chest... but in DotP2014 we have the TARGET block which, as far as I know, doesn't allow to choose the target from a chest. So, does anybody have an idea about how to target cards in the exile zone?