// Include Interface
    include_once 'includes/spc/spc.superclass.php';
    // Include Implementation Classes
    include_once 'includes/spc/spc.' . $Pl->SetSpecID . '.class.php';
    $str = '$Pl->SetSpec = new sSpc_' . $Pl->SetSpecID . '($Pl);';
    eval($str);
    $Pl->SetSpec->checkSetActivation();
    $Pl->SetSpec->prephase();
}
// Apply Weapon/Equipment Type Custom Limitations
$Pl->applyTypeCustoms();
//
// Metaphase
//
//Generate Special Ability Pool
$Pl->generateSpecialAbilityPool();
// Meta-phase Set Specs
if ($Pl->SetSpecID) {
    $Pl->SetSpec->metaphase();
}
// Pilot Hypermode Effects
$Pl->applyEXAM();
$Pl->applySEEDMode();
$Pl->deterSpecRequirements();
// MS Effects
//Upper-case Mob Effects
$Pl->applyMSMobU();
//Upper-case Tar Effect
$Pl->applyMSTarU();
//Upper-case Def Specs
$Pl->applyMSDefU();