func void RX_ReinforceArmor13()
{
if(B_CheckSmithSkill(20))
{
if(Npc_HasItems(self,ITAR_TPL_S) >= 1 && Npc_HasItems(self, itmi_orestuck) >= 10 && Npc_HasItems(self, itat_sharkskin) >= 3)
{
Npc_RemoveInvItems(self,itat_sharkskin,3);
Npc_RemoveInvItems(self,itmi_ironstuck,10);
Npc_RemoveInvItems(self,ITAR_TPL_S,1);
CreateInvItems(self,ITAR_TPL_S_V5,1);
RX_ReinforceArmorCommon();
}
else
{
AI_PrintItemInfo("Информация", PRINT_ProdItemsMissing, 2, 1);
B_Say(self,self,"$MISSINGINGREDIENTS");
};
};
RX_ReinforceArmorDialog();
};