|
@@ -341,11 +341,13 @@ public final class Config
|
|
|
public static int CLAN_LEVEL_8_COST;
|
|
|
public static int CLAN_LEVEL_9_COST;
|
|
|
public static int CLAN_LEVEL_10_COST;
|
|
|
+ public static int CLAN_LEVEL_11_COST;
|
|
|
public static int CLAN_LEVEL_6_REQUIREMENT;
|
|
|
public static int CLAN_LEVEL_7_REQUIREMENT;
|
|
|
public static int CLAN_LEVEL_8_REQUIREMENT;
|
|
|
public static int CLAN_LEVEL_9_REQUIREMENT;
|
|
|
public static int CLAN_LEVEL_10_REQUIREMENT;
|
|
|
+ public static int CLAN_LEVEL_11_REQUIREMENT;
|
|
|
public static boolean ALLOW_WYVERN_DURING_SIEGE;
|
|
|
|
|
|
|
|
@@ -1203,11 +1205,13 @@ public final class Config
|
|
|
CLAN_LEVEL_8_COST = Integer.parseInt(Feature.getProperty("ClanLevel8Cost", "40000"));
|
|
|
CLAN_LEVEL_9_COST = Integer.parseInt(Feature.getProperty("ClanLevel9Cost", "40000"));
|
|
|
CLAN_LEVEL_10_COST = Integer.parseInt(Feature.getProperty("ClanLevel10Cost", "40000"));
|
|
|
+ CLAN_LEVEL_11_COST = Integer.parseInt(Feature.getProperty("ClanLevel11Cost", "75000"));
|
|
|
CLAN_LEVEL_6_REQUIREMENT = Integer.parseInt(Feature.getProperty("ClanLevel6Requirement", "30"));
|
|
|
CLAN_LEVEL_7_REQUIREMENT = Integer.parseInt(Feature.getProperty("ClanLevel7Requirement", "80"));
|
|
|
CLAN_LEVEL_8_REQUIREMENT = Integer.parseInt(Feature.getProperty("ClanLevel8Requirement", "120"));
|
|
|
CLAN_LEVEL_9_REQUIREMENT = Integer.parseInt(Feature.getProperty("ClanLevel9Requirement", "120"));
|
|
|
CLAN_LEVEL_10_REQUIREMENT = Integer.parseInt(Feature.getProperty("ClanLevel10Requirement", "140"));
|
|
|
+ CLAN_LEVEL_11_REQUIREMENT = Integer.parseInt(Feature.getProperty("ClanLevel11Requirement", "170"));
|
|
|
ALLOW_WYVERN_DURING_SIEGE = Boolean.parseBoolean(Feature.getProperty("AllowRideWyvernDuringSiege", "True"));
|
|
|
}
|
|
|
catch (Exception e)
|