Added HCIM in the Iron Man explanation

Added HCIM as an option to choose an Iron Man
Recoloured the UIM text as a grey-white
Coloured HCIM as the dark red colour UIM was
Added the hardcoreDeath value to 0
This commit is contained in:
Qweqker 2020-02-21 12:27:09 -05:00
parent f82b1fd539
commit d71e7cf23f

View file

@ -198,13 +198,10 @@ public class TutorialCompletionDialogue extends DialoguePlugin {
switch (buttonId) {
case 1:
case 2:
npc("You have chosen the " + (buttonId == 1 ? "Standard" : "<col=8A0808>Hardcore</col>" + " Ironman mode."));
player.setAttribute("ironMode", IronmanMode.values()[buttonId]);
stage = 516;
break;
case 3:
npc("You have chosen the <col=ECEBEB>Ultimate</col> Ironman mode.");
player.setAttribute("ironMode", IronmanMode.ULTIMATE);
npc("You have chosen the " + (buttonId == 1 ? "Standard" : (buttonId == 2 ? "<col=8A0808>Hardcore</col>" : "<col=ECEBEB>Ultimate</col>")) + " Ironman mode.");
player.setAttribute("ironMode", IronmanMode.values()[buttonId]);
player.getSavedData().getActivityData().setHardcoreDeath(0);
stage = 516;
break;
case 4: