|
35 | 35 | public enum AgingMilestone {
|
36 | 36 | NONE(0, 25, 0, 0, 0, 0, 0, 0, 0, 0, false, false),
|
37 | 37 | TWENTY_FIVE(25, 31, 50, 50, 0, 50, 50, 50, 50, 0, false, false),
|
38 |
| - THIRTY_ONE(31, 14, 50, 50, 0, 50, 50, 50, 0, -150, false, false), |
39 |
| - FORTY_ONE(41, 51, 0, 0, -50, 0, 0, 0, 0, 0, false, false), |
40 |
| - FIFTY_ONE(51, 61, 0, -100, 0, -100, 0, 0, -50, -300, false, false), |
41 |
| - SIXTY_ONE(61, 71, -100, -100, -100, 0, 50, 0, -50, 0, true, false), |
42 |
| - SEVENTY_ONE(71, 81, -100, -125, 0, -100, 0, -50, -75, 0, true, true), |
43 |
| - EIGHTY_ONE(81, 91, -150, -150, -100, -100, -100, -50, -100, 0, true, true), |
44 |
| - NINETY_ONE(91, 101, -150, -175, -150, -125, -150, -100, -100, 0, true, true), |
45 |
| - ONE_HUNDRED_ONE(101, MAX_VALUE, -200, -200, -200, -150, -200, -100, -1500, 0, true, true); |
| 38 | + THIRTY_ONE(31, 14, 50, 50, 0, 50, 50, 50, 0, 1, false, false), |
| 39 | + FORTY_ONE(41, 51, 0, 0, -50, 0, 0, 0, 0, 1, false, false), |
| 40 | + FIFTY_ONE(51, 61, 0, -100, 0, -100, 0, 0, -50, 2, false, false), |
| 41 | + SIXTY_ONE(61, 71, -100, -100, -100, 0, 50, 0, -50, 2, true, false), |
| 42 | + SEVENTY_ONE(71, 81, -100, -125, 0, -100, 0, -50, -75, 2, true, true), |
| 43 | + EIGHTY_ONE(81, 91, -150, -150, -100, -100, -100, -50, -100, 2, true, true), |
| 44 | + NINETY_ONE(91, 101, -150, -175, -150, -125, -150, -100, -100, 2, true, true), |
| 45 | + ONE_HUNDRED_ONE(101, MAX_VALUE, -200, -200, -200, -150, -200, -100, -1500, 2, true, true); |
46 | 46 |
|
47 | 47 | private static final MMLogger logger = MMLogger.create(AgingMilestone.class);
|
48 | 48 |
|
| 49 | + public static final int CLAN_REPUTATION_MULTIPLIER = 150; |
| 50 | + public static final int STAR_CAPTAIN_RANK_INDEX = 34; |
| 51 | + public static final int STAR_CAPTAIN_REPUTATION_MULTIPLIER = 1; |
| 52 | + public static final int STAR_COLONEL_RANK_INDEX = 38; |
| 53 | + public static final int STAR_COLONEL_REPUTATION_MULTIPLIER = 2; |
| 54 | + |
49 | 55 | // Attributes
|
50 | 56 | private final int milestone;
|
51 | 57 | private final int maximumAge;
|
@@ -100,7 +106,7 @@ public enum AgingMilestone {
|
100 | 106 |
|
101 | 107 | // Constructor
|
102 | 108 | AgingMilestone(int milestone, int maximumAge, int strength, int body, int dexterity, int reflexes, int intelligence,
|
103 |
| - int willpower, int charisma, int reputation, boolean slowLearner, boolean glassJaw) { |
| 109 | + int willpower, int charisma, int reputation, boolean slowLearner, boolean glassJaw) { |
104 | 110 | this.milestone = milestone;
|
105 | 111 | this.maximumAge = maximumAge;
|
106 | 112 | this.strength = strength;
|
|
0 commit comments