On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit)

Yes, this is possible using a filter function on the zone's array of Skill IDs for a given party battler. For example,

$gameParty.leader()._cardDeck.filter(x=> x==7).length

will give you the number of Cards in the Party Leader's deck that have the Skill ID 7. You can change the battler, the zone or the specific ID you are looking for to use this expression in multiple ways.

(+1)

Awesome! Thanks again!