Damage definition
-
+
-
+
+
+
What's the max rolled damage of the enemy?
+
+
+
+
@@ -970,14 +984,26 @@
function usingHPDice(e) {
if (e) {
+ $("#HP_max").hide("fast");
$("#HP_average").hide("fast");
$("#mob_hp_dice_ammount").val("");
$("#mob_hp_dice_type").val("");
$("#HP_hitdice").show("fast");
- } else {
+ $("#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") {
+ $("#HP_average").hide("fast");
+ $("#HP_hitdice").hide("fast");
+ $("#HP_max").show("fast");
+ $("#mob_hp_avg").val("");
+ $("#mob_hp_dice_ammount").val("");
+ $("#mob_hp_dice_type").val("");
+
}
calcDiff();
}