示例#1
0
		public override PermanentAura AddPermanentAura( AuraEffect ae, Aura a )
		{
			PermanentAura paura = new PermanentAura(a,ae.Id);
			this.permanentAura.Add(paura);
			this.AdjustBonii();
			return paura;
		}
示例#2
0
文件: Mobile.cs 项目: karliky/wowwow
		public virtual PermanentAura AddPermanentAura( AuraEffect ae, Aura a )
		{
			PermanentAura paura = new PermanentAura(a,ae.Id);
			permanentAura.Add(paura);
			if (this is Character) (this as Character).AdjustBonii();
			return paura;
		}