Partial previous commit for Dwelling of Spirits branch.

This commit is contained in:
MobiusDevelopment
2021-10-28 05:27:58 +00:00
parent 55b95c0160
commit 55e6e797b9
3 changed files with 15 additions and 6 deletions

View File

@@ -205,8 +205,11 @@ LevelUp71And75ReputationScore = 75
# Reputation score gained after level obtained (76-80) # Reputation score gained after level obtained (76-80)
LevelUp76And80ReputationScore = 90 LevelUp76And80ReputationScore = 90
# Reputation score gained after level obtained (81+) # Reputation score gained after level obtained (81-90)
LevelUp81PlusReputationScore = 120 LevelUp81And90ReputationScore = 120
# Reputation score gained after level obtained (91+)
LevelUp91PlusReputationScore = 150
# Reputation score gained after level obtained multiplier # Reputation score gained after level obtained multiplier
LevelObtainedReputationScoreMultiplier = 1.0 LevelObtainedReputationScoreMultiplier = 1.0

View File

@@ -410,7 +410,8 @@ public class Config
public static int LVL_UP_66_AND_70_REP_SCORE; public static int LVL_UP_66_AND_70_REP_SCORE;
public static int LVL_UP_71_AND_75_REP_SCORE; public static int LVL_UP_71_AND_75_REP_SCORE;
public static int LVL_UP_76_AND_80_REP_SCORE; public static int LVL_UP_76_AND_80_REP_SCORE;
public static int LVL_UP_81_PLUS_REP_SCORE; public static int LVL_UP_81_AND_90_REP_SCORE;
public static int LVL_UP_91_PLUS_REP_SCORE;
public static double LVL_OBTAINED_REP_SCORE_MULTIPLIER; public static double LVL_OBTAINED_REP_SCORE_MULTIPLIER;
public static int CLAN_LEVEL_6_COST; public static int CLAN_LEVEL_6_COST;
public static int CLAN_LEVEL_7_COST; public static int CLAN_LEVEL_7_COST;
@@ -1569,7 +1570,8 @@ public class Config
LVL_UP_66_AND_70_REP_SCORE = Feature.getInt("LevelUp66And70ReputationScore", 63); LVL_UP_66_AND_70_REP_SCORE = Feature.getInt("LevelUp66And70ReputationScore", 63);
LVL_UP_71_AND_75_REP_SCORE = Feature.getInt("LevelUp71And75ReputationScore", 75); LVL_UP_71_AND_75_REP_SCORE = Feature.getInt("LevelUp71And75ReputationScore", 75);
LVL_UP_76_AND_80_REP_SCORE = Feature.getInt("LevelUp76And80ReputationScore", 90); LVL_UP_76_AND_80_REP_SCORE = Feature.getInt("LevelUp76And80ReputationScore", 90);
LVL_UP_81_PLUS_REP_SCORE = Feature.getInt("LevelUp81PlusReputationScore", 120); LVL_UP_81_AND_90_REP_SCORE = Feature.getInt("LevelUp81And90ReputationScore", 120);
LVL_UP_91_PLUS_REP_SCORE = Feature.getInt("LevelUp91PlusReputationScore", 150);
LVL_OBTAINED_REP_SCORE_MULTIPLIER = Feature.getDouble("LevelObtainedReputationScoreMultiplier", 1.0d); LVL_OBTAINED_REP_SCORE_MULTIPLIER = Feature.getDouble("LevelObtainedReputationScoreMultiplier", 1.0d);
CLAN_LEVEL_6_COST = Feature.getInt("ClanLevel6Cost", 15000); CLAN_LEVEL_6_COST = Feature.getInt("ClanLevel6Cost", 15000);
CLAN_LEVEL_7_COST = Feature.getInt("ClanLevel7Cost", 450000); CLAN_LEVEL_7_COST = Feature.getInt("ClanLevel7Cost", 450000);

View File

@@ -336,9 +336,13 @@ public class PlayableStat extends CreatureStat
{ {
reputation += Config.LVL_UP_76_AND_80_REP_SCORE; reputation += Config.LVL_UP_76_AND_80_REP_SCORE;
} }
else if ((level >= 81) && (level <= 120)) else if ((level >= 81) && (level <= 90))
{ {
reputation += Config.LVL_UP_81_PLUS_REP_SCORE; reputation += Config.LVL_UP_81_AND_90_REP_SCORE;
}
else if ((level >= 91) && (level <= 120))
{
reputation += Config.LVL_UP_91_PLUS_REP_SCORE;
} }
} }