OK, my progress so far:
- Branch merge works so far. Yay!

- I started working on the creation of the full split card face in CardFactory. So far most of it works but some of it is likely to be implemented somewhat wrong and doesn't want to work exactly as desired. In particular, I have questions about the following:
If I only add the abilities of each face to the combined card, I wind up with three abilities assigned to the card, however, neither of them shows the correct text - so, if I click the card to play it, I'm presented with three choices (one for the combined face, one for the left split, one for the right split), all of which are called "
Assault // Battery" (given that that's the card I'm experimenting with). Also, the ability texts do not show in the card detail box. What am I doing wrong here and what should I do instead?
Currently I'm using the names of each split and the associated
Oracle text to force-assign the full card text via card.setText, but I'm not sure if that's actually optimal (most likely not).
Also, would it be possible to "filter out" the combined face ability itself somewhere in the code so that I'm only presented with two choices, for the left and right split respectively, when playing the card? If so, what part of the code should I be looking at?
Thanks in advance!
- Agetian