123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- /*
- * 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;
- import com.l2jserver.Config;
- public class L2Seed
- {
- private final int _seedId;
- private final int _cropId; // crop type
- private final int _level; // seed level
- private final int _matureId; // mature crop type
- private final int _reward1;
- private final int _reward2;
- private final int _castleId; // id of manor (castle id) where seed can be farmed
- private final boolean _isAlternative;
- private final int _limitSeeds;
- private final int _limitCrops;
-
- public L2Seed(StatsSet set)
- {
- _cropId = set.getInt("id");
- _seedId = set.getInt("seedId");
- _level = set.getInt("level");
- _matureId = set.getInt("mature_Id");
- _reward1 = set.getInt("reward1");
- _reward2 = set.getInt("reward2");
- _castleId = set.getInt("castleId");
- _isAlternative = set.getBoolean("alternative");
- _limitCrops = set.getInt("limit_crops");
- _limitSeeds = set.getInt("limit_seed");
- }
-
- public int getCastleId()
- {
- return _castleId;
- }
-
- public int getSeedId()
- {
- return _seedId;
- }
-
- public int getCropId()
- {
- return _cropId;
- }
-
- public int getMatureId()
- {
- return _matureId;
- }
-
- public int getReward(int type)
- {
- return (type == 1 ? _reward1 : _reward2);
- }
-
- public int getLevel()
- {
- return _level;
- }
-
- public boolean isAlternative()
- {
- return _isAlternative;
- }
-
- public int getSeedLimit()
- {
- return _limitSeeds * Config.RATE_DROP_MANOR;
- }
-
- public int getCropLimit()
- {
- return _limitCrops * Config.RATE_DROP_MANOR;
- }
-
- @Override
- public String toString()
- {
- return "SeedData [_id=" + _seedId + ", _level=" + _level + ", _crop=" + _cropId + ", _mature=" + _matureId + ", _type1=" + _reward1 + ", _type2=" + _reward2 + ", _manorId=" + _castleId + ", _isAlternative=" + _isAlternative + ", _limitSeeds=" + _limitSeeds + ", _limitCrops=" + _limitCrops + "]";
- }
- }
|