Easiest thing to do might be to add a few..

When the new scripting upgrade gets put in all this should be scriptable via callbacks; example:

Code:
OnEnemyDeath(npc e){
  if(!counts_as_enemy(e)) return;
  int current = tenth_eneny_increment();
  e.dropset = tenth_enemy_lookup_table(current);
}