本文整理汇总了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;
}
}
示例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;
}
}