In Lil, dot-indexing with an identifier and bracket-indexing with a string are equivalent:
card.parent.event.moving card.parent.event["moving"] card.parent["event"]["moving"] card["parent"]["event"]["moving"]
This is a very convenient shorthand when functions take a single string as their argument, but I can see how it might leave you puzzled about passing extra arguments to the "event" method of deck-parts. You're looking for something like:
card.parent.event["moving" which.text]
Make sense?

