コード例 #1
0
ファイル: FishInfo.cs プロジェクト: Rhinoffensive/ServUO
        public bool Roll(Mobile from, Type bait, bool enhanced, double bump)
        {
            var    baitStr    = GetBaitStrength(bait, from, enhanced);
            double baseChance = MagicalFishFinder.HasSchool(from) ? BaseChance * 10 : BaseChance;

            return((baseChance + bump) * baitStr > Utility.RandomDouble());
        }
コード例 #2
0
        public bool Roll(Mobile from, double baitStr, double bump)
        {
            double baseChance = MagicalFishFinder.HasSchool(from) ? BaseChance * 10 : BaseChance;

            return((baseChance + bump) * baitStr > Utility.RandomDouble());
        }