{
con = L2DatabaseFactory.getInstance().getConnection();
_fishsEasy = new FastList<FishData>();
_fishsNormal = new FastList<FishData>();
_fishsHard = new FastList<FishData>();
FishData fish;
PreparedStatement statement = con.prepareStatement("SELECT id, level, name, hp, hpregen, fish_type, fish_group, fish_guts, guts_check_time, wait_time, combat_time FROM fish ORDER BY id");
ResultSet Fishes = statement.executeQuery();
while (Fishes.next())
{
int id = Fishes.getInt("id");
int lvl = Fishes.getInt("level");
String name = Fishes.getString("name");
int hp = Fishes.getInt("hp");
int hpreg = Fishes.getInt("hpregen");
int type = Fishes.getInt("fish_type");
int group = Fishes.getInt("fish_group");
int fish_guts = Fishes.getInt("fish_guts");
int guts_check_time = Fishes.getInt("guts_check_time");
int wait_time = Fishes.getInt("wait_time");
int combat_time = Fishes.getInt("combat_time");
fish = new FishData(id, lvl, name, hp, hpreg, type, group, fish_guts, guts_check_time, wait_time, combat_time);
switch (fish.getGroup()) {
case 0:
_fishsEasy.add(fish);
break;
case 1:
_fishsNormal.add(fish);