当前位置: 首页>>代码示例>>C#>>正文


C# BattleMap.attackSearchStraightLine方法代码示例

本文整理汇总了C#中Conquest.Maps.BattleMap.attackSearchStraightLine方法的典型用法代码示例。如果您正苦于以下问题:C# BattleMap.attackSearchStraightLine方法的具体用法?C# BattleMap.attackSearchStraightLine怎么用?C# BattleMap.attackSearchStraightLine使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Conquest.Maps.BattleMap的用法示例。


在下文中一共展示了BattleMap.attackSearchStraightLine方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: showSkillRange

        // Shows the range of the skill given it's id
        public override void showSkillRange(string skillID, Unit unit, ref BattleMap map)
        {
            // Variables
            int[]	range=	((hasPassive("archer")) ? new int[]{2, 2} : new int[]{1, 1});

            switch(skillID)
            {
                case "basic_attack":
                case "arm_thrust":
                case "provoke":
                case "powerbreak":
                case "magicbreak":
                case "speedbreak":
                case "mega_swing":
                    if(hasPassive("pikeman"))
                        map.attackSearchStraightLine(unit.mapPos[0], unit.mapPos[1], 2);
                    else
                        map.attackSearch(unit.mapPos[0], unit.mapPos[1], range[0], range[1]);
                    break;
                case "headbutt":
                    map.attackSearch(unit.mapPos[0], unit.mapPos[1], 1, 1);
                    break;
                case "first_aid":
                    map.healSearch(unit.mapPos[0], unit.mapPos[1], 0, 1);
                    break;
                case "rally_force":
                    map.attackSearch(unit.mapPos[0], unit.mapPos[1], 0, 0);
                    break;
            }
        }
开发者ID:pgonzbecer,项目名称:Conquest,代码行数:31,代码来源:Soldier.cs

示例2: showSkillRange

 // Shows the range of the skill given it's id
 public override void showSkillRange(string skillID, Unit unit, ref BattleMap map)
 {
     switch(skillID)
     {
         case "enrage":
         case "stockpile_rage":
             map.attackSearch(unit.mapPos[0], unit.mapPos[1], 0, 0);
             break;
         case "basic_attack":
         case "furious_slash":
         case "intimidate":
         case "let_loose":
         case "suicidal_slash":
         case "fury_swipes":
         case "counter_swipe":
             map.attackSearch(unit.mapPos[0], unit.mapPos[1], 1, 1);
             break;
         case "piercing_jab":	map.attackSearchStraightLine(unit.mapPos[0], unit.mapPos[1], 2);	break;
         case "raging_battlecry":	map.attackSearch(unit.mapPos[0], unit.mapPos[1], 0, 1);	break;
     }
 }
开发者ID:pgonzbecer,项目名称:Conquest,代码行数:22,代码来源:Berserker.cs


注:本文中的Conquest.Maps.BattleMap.attackSearchStraightLine方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。