Assuming by that you mean YEM New Battle Stats and not some previous version, that try pasting the following code into its own slot below the Monster Catalogue:
#==============================================================================
# ** Window MonsterCard
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Summary of Changes:
# aliased method - get_monster_stats
#==============================================================================
class Window_MonsterCard
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# * Get Monster Stats
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
alias mamcdexres_gtmonsterstats_7uc2 get_monster_stats
def get_monster_stats(*args)
item_stats, stat_names = mamcdexres_gtmonsterstats_7uc2(*args)
# Dex
if $imported["DEX Stat"]
item_stats.push (@object.dex)
stat_names.push (YEM::STATS::DEX::VOCAB)
end
# Res
if $imported["RES Stat"]
item_stats.push (@object.res)
stat_names.push (YEM::STATS::RES::VOCAB)
end
return item_stats, stat_names
end
end
I have not tested that, but give it a shot.