diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-08-24 02:02:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-08-24 02:02:34 +0300 |
commit | f1b5d66496f2f46f6618481bbeea6f33cf82f698 (patch) | |
tree | d64ba38a870a113fdce1a87883f11ad0f3a759bb /src/resources/db/petdb.cpp | |
parent | 2aa9b09d4dfa139941c5a0e1e72acd11f9f4fca2 (diff) | |
download | plus-f1b5d66496f2f46f6618481bbeea6f33cf82f698.tar.gz plus-f1b5d66496f2f46f6618481bbeea6f33cf82f698.tar.bz2 plus-f1b5d66496f2f46f6618481bbeea6f33cf82f698.tar.xz plus-f1b5d66496f2f46f6618481bbeea6f33cf82f698.zip |
Move custom ai options from petdb into homunculusdb and mercenarydb.
Diffstat (limited to 'src/resources/db/petdb.cpp')
-rw-r--r-- | src/resources/db/petdb.cpp | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/src/resources/db/petdb.cpp b/src/resources/db/petdb.cpp index 27bd9e89f..bd6f93ec2 100644 --- a/src/resources/db/petdb.cpp +++ b/src/resources/db/petdb.cpp @@ -111,49 +111,6 @@ void PETDB::loadXmlFile(const std::string &fileName, currentInfo->setDeadSortOffsetY(XML::getProperty(petNode, "deadSortOffsetY", 31)); - currentInfo->setStartFollowDist(XML::getProperty(petNode, - "startFollowDistance", 3)); - currentInfo->setFollowDist(XML::getProperty(petNode, - "followDistance", 0)); - currentInfo->setWarpDist(XML::getProperty(petNode, - "warpDistance", 11)); - - currentInfo->setWalkSpeed(XML::getProperty(petNode, - "walkSpeed", 0)); - - currentInfo->setTargetOffsetX(XML::getProperty(petNode, - "offsetX", 0)); - currentInfo->setTargetOffsetY(XML::getProperty(petNode, - "offsetY", 1)); - currentInfo->setSitOffsetX(XML::getProperty(petNode, - "sitOffsetX", 0)); - currentInfo->setSitOffsetY(XML::getProperty(petNode, - "sitOffsetY", 1)); - currentInfo->setMoveOffsetX(XML::getProperty(petNode, - "moveOffsetX", 0)); - currentInfo->setMoveOffsetY(XML::getProperty(petNode, - "moveOffsetY", 1)); - currentInfo->setDeadOffsetX(XML::getProperty(petNode, - "deadOffsetX", 0)); - currentInfo->setDeadOffsetY(XML::getProperty(petNode, - "deadOffsetY", 1)); - currentInfo->setAttackOffsetX(XML::getProperty(petNode, - "attackOffsetX", currentInfo->getTargetOffsetX())); - currentInfo->setAttackOffsetY(XML::getProperty(petNode, - "attackOffsetY", currentInfo->getTargetOffsetY())); - - currentInfo->setThinkTime(XML::getProperty(petNode, - "thinkTime", 500) / 10); - - currentInfo->setDirectionType(XML::getProperty(petNode, - "directionType", 1)); - currentInfo->setSitDirectionType(XML::getProperty(petNode, - "sitDirectionType", 1)); - currentInfo->setDeadDirectionType(XML::getProperty(petNode, - "deadDirectionType", 1)); - currentInfo->setAttackDirectionType(XML::getProperty(petNode, - "attackDirectionType", 4)); - const std::string returnMessage = XML::langProperty(petNode, // TRANSLATORS: popup menu item // TRANSLATORS: pet return to egg |