dh1024
°¡ÀÔÀÏ: 2004³â 02¿ù 15ÀÏ
°Ô½Ã¹°: 85
ÁÖ ¼Ò: /
|
±Û ÀÛ¼º½Ã°£ : 2004-04-20 È 7:07 pm Á¦¸ñ: .. |
|
|
PlayerMobile.cs ¸¦ ¼öÁ¤ÇØÁÖ¸éµË´Ï´Ù.
ÄÚµå :
public override int HitsMax
{
get
{
int strBase;
int strOffs = GetStatOffset( StatType.Str );
if ( Core.AOS )
{
strBase = this.Str;
strOffs += AosAttributes.GetValue( this, AosAttribute.BonusHits );
}
else
{
strBase = this.RawStr;
}
return (strBase / 2) + 50 + strOffs;
}
}
public override int StamMax
{
get{ return base.StamMax + AosAttributes.GetValue( this, AosAttribute.BonusStam ); }
}
public override int ManaMax
{
get{ return base.ManaMax + AosAttributes.GetValue( this, AosAttribute.BonusMana ); }
}
À̺κÐÀ» ¼öÁ¤ÇϼżŠget ºÎºÐÀÇ return °ªÀ» Á¤ÇØÁֽøéµË´Ï´Ù. |
|