12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /*
- * Copyright (C) 2004-2015 L2J DataPack
- *
- * This file is part of L2J DataPack.
- *
- * L2J DataPack 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 DataPack 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 quests.TerritoryWarScripts;
- import com.l2jserver.gameserver.network.NpcStringId;
- /**
- * Make Spears Dull! (735)
- * @author Gigiikun
- */
- public final class Q00735_MakeSpearsDull extends TerritoryWarSuperClass
- {
- public Q00735_MakeSpearsDull()
- {
- super(735, Q00735_MakeSpearsDull.class.getSimpleName(), "Make Spears Dull");
- CLASS_IDS = new int[]
- {
- 23,
- 101,
- 36,
- 108,
- 8,
- 93,
- 2,
- 88,
- 3,
- 89,
- 48,
- 114,
- 46,
- 113,
- 55,
- 117,
- 9,
- 92,
- 24,
- 102,
- 37,
- 109,
- 34,
- 107,
- 21,
- 100,
- 127,
- 131,
- 128,
- 132,
- 129,
- 133,
- 130,
- 134,
- 135,
- 136
- };
- RANDOM_MIN = 15;
- RANDOM_MAX = 20;
- npcString = new NpcStringId[]
- {
- NpcStringId.YOU_HAVE_DEFEATED_S2_OF_S1_WARRIORS_AND_ROGUES,
- NpcStringId.YOU_WEAKENED_THE_ENEMYS_ATTACK
- };
- }
- }
|