Minor code format changes.

This commit is contained in:
MobiusDev
2016-01-13 16:02:31 +00:00
parent 9060a0c931
commit 829663088f
14 changed files with 1 additions and 28 deletions

View File

@@ -47,7 +47,6 @@ public final class Q00032_AnObviousLie extends Quest
private static final int MIN_LVL = 45;
// Reward
private static final Map<String, Integer> EARS = new HashMap<>();
{
EARS.put("cat", 6843); // Cat Ears
EARS.put("raccoon", 7680); // Raccoon ears

View File

@@ -36,14 +36,12 @@ public final class Q00357_WarehouseKeepersAmbition extends Quest
private static final int JADE_CRYSTAL = 5867;
// Monsters
private final Map<Integer, Double> DROP_DATA = new HashMap<>();
{
DROP_DATA.put(20594, 0.577); // Forest Runner
DROP_DATA.put(20595, 0.6); // Fline Elder
DROP_DATA.put(20596, 0.638); // Liele Elder
DROP_DATA.put(20597, 0.062); // Valley Treant Elder
}
// Misc
private static final int MIN_LVL = 47;

View File

@@ -107,7 +107,6 @@ public final class Q00420_LittleWing extends Quest
private static final List<Integer> EGGS = Arrays.asList(EXARION_EGG, SUZET_EGG, KALIBRAN_EGG, SHAMHAI_EGG, ZWOV_EGG);
// Drake Drops
private static final Map<Integer, Integer> EGG_DROPS = new HashMap<>();
{
EGG_DROPS.put(DEAD_SEEKER, SHAMHAI_EGG);
EGG_DROPS.put(MARSH_SPIDER, ZWOV_EGG);
@@ -115,7 +114,6 @@ public final class Q00420_LittleWing extends Quest
EGG_DROPS.put(ROAD_SCAVENGER, KALIBRAN_EGG);
EGG_DROPS.put(LETO_WARRIOR, EXARION_EGG);
}
// Misc
private static final int MIN_LVL = 35;

View File

@@ -43,13 +43,11 @@ public final class Q00603_DaimonTheWhiteEyedPart1 extends Quest
private static final int BROKEN_CRYSTAL = 7191;
// Monsters
private final Map<Integer, Double> MONSTER_CHANCES = new HashMap<>();
{
MONSTER_CHANCES.put(21297, 0.5); // Canyon Bandersnatch Slave
MONSTER_CHANCES.put(21299, 0.519); // Buffalo Slave
MONSTER_CHANCES.put(21304, 0.673); // Grendel Slave
}
// Reward
private static final int UNFINISHED_CRYSTAL = 7192;
// Misc

View File

@@ -43,14 +43,12 @@ public class Q10335_RequestToFindSakum extends Quest
private static final int RUIN_ZOMBIE = 20026;
private static final int RUIN_SPARTOI = 20054;
private static final Map<Integer, Integer> MOBS_REQUIRED = new HashMap<>();
{
MOBS_REQUIRED.put(SKELETON_TRACKER, 10);
MOBS_REQUIRED.put(SKELETON_BOWMAN, 10);
MOBS_REQUIRED.put(RUIN_ZOMBIE, 15);
MOBS_REQUIRED.put(RUIN_SPARTOI, 15);
}
// Rewards
private static final int ADENA_REWARD = 90000;
private static final int EXP_REWARD = 350000;

View File

@@ -45,13 +45,11 @@ public class Q10337_SakumsInfluence extends Quest
private static final int SCAVENGER_BAT = 20411;
private static final int BAT = 27458; // for ruin bat & scavenger bat counter(client counter requires BAT id)
private static final Map<Integer, Integer> MOBS_REQUIRED = new HashMap<>();
{
MOBS_REQUIRED.put(SKELETON_WARRIOR, 10);
MOBS_REQUIRED.put(RUIN_IMP, 20); // imp elder same counter
MOBS_REQUIRED.put(BAT, 25); // & scavenger bat same counter
}
// Rewards
private static final int ADENA_REWARD = 1030;
private static final int EXP_REWARD = 650000;

View File

@@ -41,13 +41,11 @@ public class Q10358_DividedSakumPoslof extends Quest
private static final int ZOMBIE_WARRIOR = 20458;
private static final int VEELAN_BUGBEAR_WARRIOR = 20402;
private static final Map<Integer, Integer> MOBS_REQUIRED = new HashMap<>();
{
MOBS_REQUIRED.put(ZOMBIE_WARRIOR, 20);
MOBS_REQUIRED.put(VEELAN_BUGBEAR_WARRIOR, 23);
MOBS_REQUIRED.put(POSLOF, 0);
}
// Item
private static final int SAKUMS_SKETCH_B = 17585;
// Rewards

View File

@@ -45,12 +45,10 @@ public class Q10362_CertificationOfTheSeeker extends Quest
private static final int CRAWLER = 22991;
private static final int STALKER = 22992;
private static final Map<Integer, Integer> MOBS_REQUIRED = new HashMap<>();
{
MOBS_REQUIRED.put(CRAWLER, 5);
MOBS_REQUIRED.put(STALKER, 10);
}
// Rewards
private static final int ADENA_REWARD = 43000;
private static final int EXP_REWARD = 50000;

View File

@@ -40,14 +40,12 @@ public class Q10368_RebellionOfMonsters extends Quest
private static final int ANT_SOLDIER = 23099;
private static final int ANT_WARRIOR_CAPTAIN = 23100;
private static final HashMap<Integer, Integer> MOBS_REQUIRED = new HashMap<>();
{
MOBS_REQUIRED.put(WEARY_JAGUAR, 10);
MOBS_REQUIRED.put(WEARY_JAGUAR_SCOUT, 15);
MOBS_REQUIRED.put(ANT_SOLDIER, 15);
MOBS_REQUIRED.put(ANT_WARRIOR_CAPTAIN, 20);
}
// Rewards
private static final int ADENA_REWARD = 99000;
private static final int EXP_REWARD = 750000;