Initial MSVC 2008 projects workspace

This commit is contained in:
alexey.min
2012-02-01 05:25:08 +00:00
commit 03de3bdc95
1446 changed files with 476853 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#include "pch.h"
#include "L2ArmorTemplate.h"
#include "l2c_utils.h"
L2ArmorTemplate::L2ArmorTemplate( L2ItemSubType subType, StatsSet& set ):
L2ItemTemplate( TYPE_ARMOR, subType, set )
{
set.getInt( "avoid_modify", &m_avoidModifier );
set.getInt( "p_def", &m_pDef, 0 );
set.getInt( "m_def", &m_mDef, 0 );
set.getInt( "mp_bonus", &m_mpBonus, 0 );
set.getInt( "hp_bonus", &m_hpBonus, 0 );
m_enchant4Skill = 0;
std::string stds;
set.getString( "enchant4_skill", stds );
//String[] skill = set.getString("enchant4_skill").split("-");
//_skill = set.getString("skill").split(";");
set.getString( "skill", stds );
}
L2ArmorTemplate::~L2ArmorTemplate()
{
}