// Bale's PostAscensionScript
// set postAscensionScript = postAscensionScript.ash
notify Bale;
boolean set_choice(string adventure, string choice, string purpose) {
if(purpose != "")
print(purpose, "olive");
if(get_property(adventure) != choice) {
set_property(adventure, to_string(choice));
}
}
set_choice("hpAutoRecovery", "0.1", "Resetting HP/MP restoration settings to minimal");
set_choice("hpAutoRecoveryTarget", "0.9", "");
set_choice("mpAutoRecovery", "-0.05", "");
set_choice("mpAutoRecoveryTarget", "0.2", "");
set_choice("manaBurningThreshold", "-0.05", "");
set_choice("choiceAdventure106", "2", "Ballroom song: Non-combat");
print("Setting choice adventures for "+ my_primestat()+ " class.");
switch(my_primestat()) {
case $stat[muscle]:
set_choice("choiceAdventure9", "2", "Turn Castle wheel by way of Moxie");
set_choice("choiceAdventure10", "1", "");
set_choice("choiceAdventure11", "3", "");
set_choice("choiceAdventure12", "2", "");
set_choice("choiceAdventure73", "1", "Whitey's Grove: Get Muscle stats");
set_choice("choiceAdventure74", "2", "Whitey's Grove: Get boxes of wine");
set_choice("choiceAdventure75", "2", "Whitey's Grove: Get white lightning");
set_choice("choiceAdventure90", "3", "Ballroom Curtains: skip choice");
set_choice("choiceAdventure153", "1", "Defiled Alcove: get Muscle stats");
set_choice("choiceAdventure155", "4", "Defiled Niche: skip choice");
set_choice("choiceAdventure157", "4", "Defiled Nook: skip adventure");
set_choice("choiceAdventure184", "1", "That Explains all the Eyepatches: fight a pirate");
set_choice("choiceAdventure186", "1", "A Test of Testarrrsterone: get stats");
set_choice("choiceAdventure139", "1", "Hippies on the Verge of War: Get Muscle stats");
set_choice("choiceAdventure140", "3", "Hippies on the Verge of War: Fight a drill sergeant");
set_choice("choiceAdventure141", "2", "Hippies on the Verge of War: Get rations");
set_choice("choiceAdventure143", "1", "Frats on the Verge of War: Get Muscle stats");
set_choice("choiceAdventure144", "3", "Frats on the Verge of War: Fight a drill sergeant");
set_choice("choiceAdventure145", "1", "Frats on the Verge of War: Get Muscle stats");
set_choice("oceanDestination", "muscle", "Take the Wheel and Sail to Muscle stats");
break;
case $stat[mysticality]:
set_choice("choiceAdventure9", "1", "Turn Castle wheel by way of Mysticality");
set_choice("choiceAdventure10", "1", "");
set_choice("choiceAdventure11", "3", "");
set_choice("choiceAdventure12", "2", "");
set_choice("choiceAdventure73", "3", "Whitey's Grove: Get wedding cake and rice");
set_choice("choiceAdventure74", "2", "Whitey's Grove: Get boxes of wine");
set_choice("choiceAdventure75", "1", "Whitey's Grove: Get Mysticality stats");
set_choice("choiceAdventure90", "3", "Ballroom Curtains: skip choice");
set_choice("choiceAdventure153", "4", "Defiled Alcove: skip choice");
set_choice("choiceAdventure155", "4", "Defiled Niche: skip choice");
set_choice("choiceAdventure157", "1", "Defiled Nook: get Mysticality stats");
set_choice("choiceAdventure184", "2", "That Explains all the Eyepatches: shot of rotgut");
set_choice("choiceAdventure186", "1", "A Test of Testarrrsterone: get stats");
set_choice("choiceAdventure139", "3", "Hippies on the Verge of War: Fight a cadet");
set_choice("choiceAdventure140", "3", "Hippies on the Verge of War: Fight a drill sergeant");
set_choice("choiceAdventure141", "1", "Hippies on the Verge of War: Get Mysticality stats");
set_choice("choiceAdventure143", "3", "Frats on the Verge of War: Fight a pledge");
set_choice("choiceAdventure144", "3", "Frats on the Verge of War: Fight a drill sergeant");
set_choice("choiceAdventure145", "2", "Frats on the Verge of War: Get food");
set_choice("oceanDestination", "mysticality", "Take the Wheel and Sail to Mysticality stats");
break;
case $stat[moxie]:
set_choice("choiceAdventure9", "2", "Turn Castle wheel by way of Moxie");
set_choice("choiceAdventure10", "1", "");
set_choice("choiceAdventure11", "3", "");
set_choice("choiceAdventure12", "2", "");
set_choice("choiceAdventure73", "3", "Whitey's Grove: Get wedding cake and rice");
set_choice("choiceAdventure74", "1", "Whitey's Grove: Get Moxie stats");
set_choice("choiceAdventure75", "2", "Whitey's Grove: Get white lightning");
set_choice("choiceAdventure90", "2", "Ballroom Curtains: get moxie");
set_choice("choiceAdventure153", "4", "Defiled Alcove: skip choice");
set_choice("choiceAdventure155", "1", "Defiled Niche: get Moxie stats");
set_choice("choiceAdventure157", "4", "Defiled Nook: skip adventure");
set_choice("choiceAdventure184", "1", "That Explains all the Eyepatches: fight a pirate");
set_choice("choiceAdventure186", "3", "A Test of Testarrrsterone: get lots of Moxie");
set_choice("choiceAdventure139", "3", "Hippies on the Verge of War: Fight a cadet");
set_choice("choiceAdventure140", "2", "Hippies on the Verge of War: Get Moxie stats");
set_choice("choiceAdventure141", "2", "Hippies on the Verge of War: Get rations");
set_choice("choiceAdventure143", "3", "Frats on the Verge of War: Fight a pledge");
set_choice("choiceAdventure144", "1", "Frats on the Verge of War: Get moxie stats");
set_choice("choiceAdventure145", "2", "Frats on the Verge of War: Get food");
set_choice("oceanDestination", "moxie", "Take the Wheel and Sail to Moxie stats");
break;
}
print("Optimal ascension choices set.", "blue");