Fix Life to Spare thresholds

This commit is contained in:
drdev
2014-09-16 16:19:39 +00:00
parent 63be2b5ee3
commit 7a347a50bc
4 changed files with 4 additions and 4 deletions

View File

@@ -14,7 +14,7 @@ public class ConstructedAchievements extends AchievementCollection {
add("TotalGameWins", new TotalGameWins(250, 500, 1000));
add("TotalMatchWins", new TotalMatchWins(100, 250, 500));
add("Overkill", new Overkill(25, 50, 100));
add("LifeToSpare", new LifeToSpare(25, 50, 100));
add("LifeToSpare", new LifeToSpare(20, 40, 80));
add("Hellbent", new Hellbent());
}
}

View File

@@ -14,7 +14,7 @@ public class DraftAchievements extends AchievementCollection {
add("TotalGameWins", new TotalGameWins(250, 500, 1000));
add("TotalMatchWins", new TotalMatchWins(100, 250, 500));
add("Overkill", new Overkill(25, 50, 100));
add("LifeToSpare", new LifeToSpare(25, 50, 100));
add("LifeToSpare", new LifeToSpare(20, 40, 80));
add("Hellbent", new Hellbent());
}
}

View File

@@ -14,7 +14,7 @@ public class QuestAchievements extends AchievementCollection {
add("TotalGameWins", new TotalGameWins(250, 500, 1000));
add("TotalMatchWins", new TotalMatchWins(100, 250, 500));
add("Overkill", new Overkill(25, 50, 100));
add("LifeToSpare", new LifeToSpare(25, 50, 100));
add("LifeToSpare", new LifeToSpare(20, 40, 80));
add("Hellbent", new Hellbent());
}
}

View File

@@ -14,7 +14,7 @@ public class SealedAchievements extends AchievementCollection {
add("TotalGameWins", new TotalGameWins(250, 500, 1000));
add("TotalMatchWins", new TotalMatchWins(100, 250, 500));
add("Overkill", new Overkill(25, 50, 100));
add("LifeToSpare", new LifeToSpare(25, 50, 100));
add("LifeToSpare", new LifeToSpare(20, 40, 80));
add("Hellbent", new Hellbent());
}
}