123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- /*
- * Copyright (C) 2004-2013 L2J Server
- *
- * This file is part of L2J Server.
- *
- * L2J Server 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.
- *
- * L2J Server 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.l2jserver.gameserver.model.items;
- import java.util.ArrayList;
- import java.util.List;
- import com.l2jserver.gameserver.model.StatsSet;
- import com.l2jserver.gameserver.model.base.ClassId;
- /**
- * Class for the Henna object.
- * @author Zoey76
- */
- public class L2Henna
- {
- private final int _dyeId;
- private final String _dyeName;
- private final int _dyeItemId;
- private final int _str;
- private final int _con;
- private final int _dex;
- private final int _int;
- private final int _men;
- private final int _wit;
- private final int _wear_fee;
- private final int _wear_count;
- private final int _cancel_fee;
- private final int _cancel_count;
- private final List<ClassId> _wear_class;
-
- public L2Henna(StatsSet set)
- {
- _dyeId = set.getInt("dyeId");
- _dyeName = set.getString("dyeName");
- _dyeItemId = set.getInt("dyeItemId");
- _str = set.getInt("str");
- _con = set.getInt("con");
- _dex = set.getInt("dex");
- _int = set.getInt("int");
- _men = set.getInt("men");
- _wit = set.getInt("wit");
- _wear_fee = set.getInt("wear_fee");
- _wear_count = set.getInt("wear_count");
- _cancel_fee = set.getInt("cancel_fee");
- _cancel_count = set.getInt("cancel_count");
- _wear_class = new ArrayList<>();
- }
-
- /**
- * @return the dye Id.
- */
- public int getDyeId()
- {
- return _dyeId;
- }
-
- /**
- * @return the dye server-side name.
- */
- public String getDyeName()
- {
- return _dyeName;
- }
-
- /**
- * @return the item Id, required for this dye.
- */
- public int getDyeItemId()
- {
- return _dyeItemId;
- }
-
- /**
- * @return the STR stat.
- */
- public int getStatSTR()
- {
- return _str;
- }
-
- /**
- * @return the CON stat.
- */
- public int getStatCON()
- {
- return _con;
- }
-
- /**
- * @return the DEX stat.
- */
- public int getStatDEX()
- {
- return _dex;
- }
-
- /**
- * @return the INT stat.
- */
- public int getStatINT()
- {
- return _int;
- }
-
- /**
- * @return the MEN stat.
- */
- public int getStatMEN()
- {
- return _men;
- }
-
- /**
- * @return the WIT stat.
- */
- public int getStatWIT()
- {
- return _wit;
- }
-
- /**
- * @return the wear fee, cost for adding this dye to the player.
- */
- public int getWearFee()
- {
- return _wear_fee;
- }
-
- /**
- * @return the wear count, the required count to add this dye to the player.
- */
- public int getWearCount()
- {
- return _wear_count;
- }
-
- /**
- * @return the cancel fee, cost for removing this dye from the player.
- */
- public int getCancelFee()
- {
- return _cancel_fee;
- }
-
- /**
- * @return the cancel count, the retrieved amount of dye items after removing the dye.
- */
- public int getCancelCount()
- {
- return _cancel_count;
- }
-
- /**
- * @return the list with the allowed classes to wear this dye.
- */
- public List<ClassId> getAllowedWearClass()
- {
- return _wear_class;
- }
-
- /**
- * @param c the class trying to wear this dye.
- * @return {@code true} if the player is allowed to wear this dye, {@code false} otherwise.
- */
- public boolean isAllowedClass(ClassId c)
- {
- return _wear_class.contains(c);
- }
-
- /**
- * @param wearClassIds the list of classes that can wear this dye.
- */
- public void setWearClassIds(List<ClassId> wearClassIds)
- {
- _wear_class.addAll(wearClassIds);
- }
- }
|