Brooch jewel effects.

This commit is contained in:
MobiusDev
2016-12-24 14:06:20 +00:00
parent f4a18e1403
commit 0a2fb60ddd
10 changed files with 209 additions and 10 deletions

View File

@@ -0,0 +1,56 @@
/*
* 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.enums;
/**
* @author Mobius
*/
public enum BroochJewel
{
RUBY_LV3(38857, 17815, 0.075),
RUBY_LV4(38858, 17816, 0.125),
RUBY_LV5(38859, 17817, 0.2),
SHAPPHIRE_LV3(38929, 17819, 0.075),
SHAPPHIRE_LV4(38930, 17820, 0.125),
SHAPPHIRE_LV5(38931, 17821, 0.2);
private int _itemId;
private int _effectId;
private double _bonus;
private BroochJewel(int itemId, int effectId, double bonus)
{
_itemId = itemId;
_effectId = effectId;
_bonus = bonus;
}
public int getItemId()
{
return _itemId;
}
public int getEffectId()
{
return _effectId;
}
public double getBonus()
{
return _bonus;
}
}