What's the max rolled HP of all enemies?
@@ -986,28 +988,35 @@
function usingHPDice(e) {
if (e) {
- $("#HP_max").hide("fast");
- $("#HP_average").hide("fast");
+ $("#HP_max_card").hide("fast");
+ $("#HP_average_card").hide("fast");
+ $("#HP_hitdice_card").show("fast");
+
+ $("#mob_hp_avg").val("");
$("#mob_hp_dice_ammount").val("");
$("#mob_hp_dice_type").val("");
- $("#HP_hitdice").show("fast");
$("#mob_hp_max").val("");
- } else if (e == false) {
- $("#HP_max").hide("fast");
- $("#HP_hitdice").hide("fast");
- $("#mob_hp_avg").val("");
- $("#HP_average").show("fast");
- $("#mob_hp_max").val("");
- } else if (e == "max") {
- console.log("hello");
- $("#HP_average").hide("fast");
- $("#HP_hitdice").hide("fast");
- $("#HP_max").show("fast");
+ } else if (e == false) {
+ $("#HP_max_card").hide("fast");
+ $("#HP_hitdice_card").hide("fast");
+ $("#HP_average_card").show("fast");
+
$("#mob_hp_avg").val("");
$("#mob_hp_dice_ammount").val("");
$("#mob_hp_dice_type").val("");
+ $("#mob_hp_max").val("");
+ } else if (e == "max") {
+
+ $("#HP_max_card").show("fast");
+ $("#HP_hitdice_card").hide("fast");
+ $("#HP_average_card").hide("fast");
+
+ $("#mob_hp_avg").val("");
+ $("#mob_hp_dice_ammount").val("");
+ $("#mob_hp_dice_type").val("");
+ $("#mob_hp_max").val("");
}
calcDiff();
}