How would I write this property expression?

When a card is on its draw deck, I want it to print the number of cards in the draw deck. To do so, I use this:

If($DeckName$==“CarthageDraw”, GetProperty(“CarthageDraw” + “_numPieces”), “”)

However, there is one permanent card on the bottom of the deck, so I want it to display a number that is one larger. How do I do this?

Thanks

I think to display one larger:

If(DeckName==“CarthageDraw”, GetProperty(“CarthageDraw” + “_numPieces”) + 1, “”)