91 lines
2.1 KiB
Java
91 lines
2.1 KiB
Java
/*
|
|
* This file is part of the L2J Mobius project.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package com.l2jmobius.gameserver.model.holders;
|
|
|
|
import java.time.Duration;
|
|
|
|
import com.l2jmobius.gameserver.model.StatsSet;
|
|
import com.l2jmobius.gameserver.model.interfaces.IIdentifiable;
|
|
|
|
/**
|
|
* This class hold info needed for minions spawns<br>
|
|
* @author Zealar
|
|
*/
|
|
public class MinionHolder implements IIdentifiable
|
|
{
|
|
private final int _id;
|
|
private final int _count;
|
|
private final long _respawnTime;
|
|
private final int _weightPoint;
|
|
|
|
public MinionHolder(StatsSet set)
|
|
{
|
|
_id = set.getInt("id");
|
|
_count = set.getInt("count", 1);
|
|
_respawnTime = set.getDuration("respawnTime", Duration.ofSeconds(0)).getSeconds() * 1000;
|
|
_weightPoint = set.getInt("weightPoint", 0);
|
|
}
|
|
|
|
/**
|
|
* Constructs a minion holder.
|
|
* @param id the id
|
|
* @param count the count
|
|
* @param respawnTime the respawn time
|
|
* @param weightPoint the weight point
|
|
*/
|
|
public MinionHolder(int id, int count, long respawnTime, int weightPoint)
|
|
{
|
|
_id = id;
|
|
_count = count;
|
|
_respawnTime = respawnTime;
|
|
_weightPoint = weightPoint;
|
|
}
|
|
|
|
/**
|
|
* @return the Identifier of the Minion to spawn.
|
|
*/
|
|
@Override
|
|
public int getId()
|
|
{
|
|
return _id;
|
|
}
|
|
|
|
/**
|
|
* @return the count of the Minions to spawn.
|
|
*/
|
|
public int getCount()
|
|
{
|
|
return _count;
|
|
}
|
|
|
|
/**
|
|
* @return the respawn time of the Minions.
|
|
*/
|
|
public long getRespawnTime()
|
|
{
|
|
return _respawnTime;
|
|
}
|
|
|
|
/**
|
|
* @return the weight point of the Minion.
|
|
*/
|
|
public int getWeightPoint()
|
|
{
|
|
return _weightPoint;
|
|
}
|
|
}
|