mirror of
https://github.com/IvarK/AntimatterDimensionsSourceCode.git
synced 2024-11-10 14:12:02 +00:00
make challenges even harder
This commit is contained in:
parent
d556cead96
commit
8eb743e7ee
@ -414,13 +414,13 @@
|
||||
<div id="Forever isn't that long" class="achievement achievementlocked" style="background-image: url(images/37.png)" ach-tooltip="Infinity in 1 minute or less."><br></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="Many Deaths" class="achievement achievementlocked" style="background-image: url(images/38.png)" ach-tooltip="Complete the Second Dimension Autobuyer challenge in 5 minutes or less."><br></div>
|
||||
<div id="Many Deaths" class="achievement achievementlocked" style="background-image: url(images/38.png)" ach-tooltip="Complete the Second Dimension Autobuyer challenge in 3 minutes or less."><br></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="Gift from the Gods" class="achievement achievementlocked" style="background-image: url(images/39.png)" ach-tooltip="Complete the Eighth Dimension Autobuyer challenge in 5 minutes or less."><br></div>
|
||||
<div id="Gift from the Gods" class="achievement achievementlocked" style="background-image: url(images/39.png)" ach-tooltip="Complete the Eighth Dimension Autobuyer challenge in 3 minutes or less."><br></div>
|
||||
</td>
|
||||
<td>
|
||||
<div id="Is this hell?" class="achievement achievementlocked" style="background-image: url(images/40.png)" ach-tooltip="Complete the Tickspeed Autobuyer challenge in 4 minutes or less."><br></div>
|
||||
<div id="Is this hell?" class="achievement achievementlocked" style="background-image: url(images/40.png)" ach-tooltip="Complete the Tickspeed Autobuyer challenge in 3 minutes or less."><br></div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -2546,9 +2546,9 @@ document.getElementById("bigcrunch").onclick = function () {
|
||||
if (!player.achievements.includes("You didn't need it anyway") && player.eightAmount == 0) giveAchievement("You didn't need it anyway");
|
||||
if (!player.achievements.includes("Claustrophobic") && player.galaxies == 1) giveAchievement("Claustrophobic");
|
||||
if (!player.achievements.includes("Zero Deaths") && player.galaxies == 0 && player.resets == 0) giveAchievement("Zero Deaths")
|
||||
if (player.currentChallenge == "challenge2" && player.thisInfinityTime <= 3000) giveAchievement("Many Deaths")
|
||||
if (player.currentChallenge == "challenge11" && player.thisInfinityTime <= 3000) giveAchievement("Gift from the Gods")
|
||||
if (player.currentChallenge == "challenge5" && player.thisInfinityTime <= 2400) giveAchievement("Is this hell?")
|
||||
if (player.currentChallenge == "challenge2" && player.thisInfinityTime <= 1800) giveAchievement("Many Deaths")
|
||||
if (player.currentChallenge == "challenge11" && player.thisInfinityTime <= 1800) giveAchievement("Gift from the Gods")
|
||||
if (player.currentChallenge == "challenge5" && player.thisInfinityTime <= 1800) giveAchievement("Is this hell?")
|
||||
if (player.currentChallenge != "" && player.challengeTimes[challNumber-2] > player.thisInfinityTime) player.challengeTimes[challNumber-2] = player.thisInfinityTime
|
||||
if (player.currentChallenge != "" && !player.challenges.includes(player.currentChallenge)) {
|
||||
player.challenges.push(player.currentChallenge);
|
||||
|
Loading…
Reference in New Issue
Block a user