Moved bosses ai to separate package.

This commit is contained in:
MobiusDev
2017-07-19 21:51:33 +00:00
parent 3a0bf3539a
commit a20a220645
8 changed files with 15 additions and 14 deletions

View File

@@ -13,15 +13,16 @@ ai/group_template/fairy_trees.py
ai/group_template/feedable_beasts.py ai/group_template/feedable_beasts.py
ai/group_template/polymorphing_angel.py ai/group_template/polymorphing_angel.py
ai/individual/Antharas.java ai/bosses/Antharas.java
ai/individual/Baium.java ai/bosses/Baium.java
ai/individual/Core.java ai/bosses/Core.java
ai/bosses/Orfen.java
ai/bosses/QueenAnt.java
ai/bosses/Valakas.java
ai/bosses/Zaken.java
ai/individual/Elpy.java ai/individual/Elpy.java
ai/individual/HoneyBear.java ai/individual/HoneyBear.java
ai/individual/Orfen.java
ai/individual/QueenAnt.java
ai/individual/Valakas.java
ai/individual/Zaken.java
# Teleports # Teleports

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package ai.individual; package ai.bosses;
import com.l2jmobius.gameserver.ai.CtrlIntention; import com.l2jmobius.gameserver.ai.CtrlIntention;
import com.l2jmobius.gameserver.instancemanager.GrandBossManager; import com.l2jmobius.gameserver.instancemanager.GrandBossManager;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package ai.individual; package ai.bosses;
import static com.l2jmobius.gameserver.ai.CtrlIntention.AI_INTENTION_FOLLOW; import static com.l2jmobius.gameserver.ai.CtrlIntention.AI_INTENTION_FOLLOW;
import static com.l2jmobius.gameserver.ai.CtrlIntention.AI_INTENTION_IDLE; import static com.l2jmobius.gameserver.ai.CtrlIntention.AI_INTENTION_IDLE;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package ai.individual; package ai.bosses;
import java.util.List; import java.util.List;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package ai.individual; package ai.bosses;
import java.util.List; import java.util.List;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package ai.individual; package ai.bosses;
import java.util.List; import java.util.List;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package ai.individual; package ai.bosses;
import static com.l2jmobius.gameserver.ai.CtrlIntention.AI_INTENTION_CAST; import static com.l2jmobius.gameserver.ai.CtrlIntention.AI_INTENTION_CAST;
import static com.l2jmobius.gameserver.ai.CtrlIntention.AI_INTENTION_FOLLOW; import static com.l2jmobius.gameserver.ai.CtrlIntention.AI_INTENTION_FOLLOW;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package ai.individual; package ai.bosses;
import java.util.logging.Logger; import java.util.logging.Logger;