Aura.Channel.Skills.Base.MagicBolt.GetRange C# (CSharp) 메소드

GetRange() 보호된 메소드

Returns range for skill.
protected GetRange ( Creature creature, Skill skill ) : int
creature Aura.Channel.World.Entities.Creature
skill Skill
리턴 int
		protected virtual int GetRange(Creature creature, Skill skill)
		{
			var range = skill.RankData.Range;

			// +200 for the respective special wand
			if (creature.RightHand != null && creature.RightHand.HasTag(SpecialWandTag))
				range += 200;

			return range;
		}