本文整理汇总了C#中Animal.getTurn方法的典型用法代码示例。如果您正苦于以下问题:C# Animal.getTurn方法的具体用法?C# Animal.getTurn怎么用?C# Animal.getTurn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Animal
的用法示例。
在下文中一共展示了Animal.getTurn方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AnimalData
public AnimalData(Animal ani, Action a)
{
//animal
species = ani.getSpecies();
//entity
name = ani.getName();
level1 = ani.getLevel1();
level2 = ani.getLevel2();
prestigeLevel = ani.getPrestigeLevel();
totalLevel = ani.getTotalLevel();
strength = ani.getStrength();
dexterity = ani.getDexterity();
constitution = ani.getConstitution();
intelligence = ani.getIntelligence();
wisdom = ani.getWisdom();
charisma = ani.getCharisma();
initiativeBonus = ani.getInitiativeBonus();
hostile = ani.getHostile();
initSet = ani.getInitSet();
turn = ani.getTurn();
done = ani.getDone();
initiative = ani.getInitiative();
basicAttackBonus = ani.getBasicAttackBonus();
fortitude = ani.getFortitude();
reflex = ani.getReflex();
will = ani.getWill();
skill = ani.getSkill();
feat = ani.getFeat();
skillPoints = ani.getSkillPoints();
featPoints = ani.getFeatPoints();
classSkill = ani.getClassSkill();
xLocation = ani.getXLocation();
yLocation = ani.getYLocation();
xDirection = ani.getXDirection();
yDirection = ani.getYDirection();
inventory = ani.getInventory();
status = ani.getStatus();
//attackable
currentHealth = ani.getCurrentHealth();
maxHealth = ani.getMaxHealth();
armorClass = ani.getArmorClass();
prefabName = ani.getPrefabName();
//action
standardAction = a.getStandardAction();
moveAction = a.getMoveAction();
freeAction = a.getFreeAction();
swiftAction = a.getSwiftAction();
immediateAction = a.getImmediateAction();
aoo = a.getAoo();
currentSpeed = a.getCurrentSpeed();
maxSpeed = a.getMaxSpeed();
moveLock = a.getMoveLock();
aooProvoked = a.getAooProvoked();
xEnd = a.getXEnd();
yEnd = a.getYEnd();
xDir = a.getXDir();
yDir = a.getYDir();
}