3v4l.org

run code in 300+ PHP versions simultaneously
<?php $roll = 0; $rollCount = 0; $total = 0; $weapon = 2; $armor = 4; $critroll = 0; $critChance = 70; $crit = 2; do { $roll = rand(1, 10+$weapon); $critroll = rand(1,100); $rollCount += 1; print "<i>----------------------------</i><br/>"; print "<i>---Fighter A fires shot ".$rollCount."---</i><br/>"; echo "The crit roll is ".$critroll." vs ".$critChance."<br/>"; if ($critroll >= $critChance){ echo "Fighter A shoots a critical blast dealing <b>".$roll*$crit."</b>!"."<br/>"; echo "<i>----------------------------</i><br/>"; $total = ($roll*$crit) + $total; }elseif ($roll <= $armor ) { echo "Fighter A shoots a glancing blow of ".$roll." against the target's ".$armor." armor, dealing <b>0</b>!". "<br/>"; $roll = 0; echo "<i>----------------------------</i><br/>"; $total = $roll + $total; } else { $roll = $roll; echo "Fighter A shoots for <b>".$roll."</b>!" . "<br/>"; echo "<i>----------------------------</i><br/>"; $total = $roll + $total; } } while ($roll != 10);{ echo "The round is over. "; echo "We rolled " . $rollCount . " times and obtained a 10!" . "<br/>"; echo "Total damage dealt: <b>" . $total."</b>"; }
Output for 7.2.0
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 1 times and obtained a 10!<br/>Total damage dealt: <b>20</b>
Output for 7.1.7
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 6 times and obtained a 10!<br/>Total damage dealt: <b>37</b>
Output for 7.1.6
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 67 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 60 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 14 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 60 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 29---</i><br/>The crit roll is 11 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 30---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 31---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 32---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 33---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 34---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 35---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 36---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 37---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 38---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 39---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 40---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 41---</i><br/>The crit roll is 17 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 41 times and obtained a 10!<br/>Total damage dealt: <b>287</b>
Output for 7.1.5
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 53 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 13 times and obtained a 10!<br/>Total damage dealt: <b>121</b>
Output for 7.1.0
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 70 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 8 times and obtained a 10!<br/>Total damage dealt: <b>93</b>
Output for 7.0.20
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 13 times and obtained a 10!<br/>Total damage dealt: <b>87</b>
Output for 7.0.14
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 5 times and obtained a 10!<br/>Total damage dealt: <b>65</b>
Output for 7.0.11
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 11 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 11 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 11 times and obtained a 10!<br/>Total damage dealt: <b>69</b>
Output for 7.0.10
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 67 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 60 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 22 times and obtained a 10!<br/>Total damage dealt: <b>145</b>
Output for 7.0.9
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 5 times and obtained a 10!<br/>Total damage dealt: <b>34</b>
Output for 7.0.8
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 14 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 2 times and obtained a 10!<br/>Total damage dealt: <b>22</b>
Output for 7.0.7
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 4 times and obtained a 10!<br/>Total damage dealt: <b>38</b>
Output for 5.3.9, 7.0.6
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 1 times and obtained a 10!<br/>Total damage dealt: <b>10</b>
Output for 7.0.5
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 22 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 70 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 20 times and obtained a 10!<br/>Total damage dealt: <b>144</b>
Output for 7.0.4
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 52 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 5 times and obtained a 10!<br/>Total damage dealt: <b>44</b>
Output for 7.0.3
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 17 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 5 times and obtained a 10!<br/>Total damage dealt: <b>39</b>
Output for 7.0.2
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 67 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 53 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 53 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 17 times and obtained a 10!<br/>Total damage dealt: <b>172</b>
Output for 7.0.1
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 11 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 70 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 13 times and obtained a 10!<br/>Total damage dealt: <b>101</b>
Output for 7.0.0
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 3 times and obtained a 10!<br/>Total damage dealt: <b>46</b>
Output for 5.6.26
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 70 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 52 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 17 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 21 times and obtained a 10!<br/>Total damage dealt: <b>103</b>
Output for 5.6.25
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 22 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 69 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 85 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 85 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 53 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 24 times and obtained a 10!<br/>Total damage dealt: <b>168</b>
Output for 5.6.24
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 16 times and obtained a 10!<br/>Total damage dealt: <b>150</b>
Output for 5.6.23
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 17 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 16 times and obtained a 10!<br/>Total damage dealt: <b>113</b>
Output for 5.6.22
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 60 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 17 times and obtained a 10!<br/>Total damage dealt: <b>118</b>
Output for 5.6.21
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 60 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 5 times and obtained a 10!<br/>Total damage dealt: <b>60</b>
Output for 5.6.20
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 70 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 8 times and obtained a 10!<br/>Total damage dealt: <b>79</b>
Output for 5.6.19
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 60 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 53 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 17 times and obtained a 10!<br/>Total damage dealt: <b>130</b>
Output for 5.6.18
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 14 times and obtained a 10!<br/>Total damage dealt: <b>116</b>
Output for 5.6.17
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 8 times and obtained a 10!<br/>Total damage dealt: <b>74</b>
Output for 5.6.16
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 1 times and obtained a 10!<br/>Total damage dealt: <b>20</b>
Output for 5.6.15
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 6 times and obtained a 10!<br/>Total damage dealt: <b>22</b>
Output for 5.6.14
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 22 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 7 times and obtained a 10!<br/>Total damage dealt: <b>62</b>
Output for 5.6.13
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 69 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 6 times and obtained a 10!<br/>Total damage dealt: <b>65</b>
Output for 5.6.12
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 11 times and obtained a 10!<br/>Total damage dealt: <b>73</b>
Output for 5.6.11
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 1 times and obtained a 10!<br/>Total damage dealt: <b>20</b>
Output for 5.6.10
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 76 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 95 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 22 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 12 times and obtained a 10!<br/>Total damage dealt: <b>115</b>
Output for 5.6.9
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 2 times and obtained a 10!<br/>Total damage dealt: <b>24</b>
Output for 5.6.8
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 3 times and obtained a 10!<br/>Total damage dealt: <b>33</b>
Output for 5.6.7
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 5 times and obtained a 10!<br/>Total damage dealt: <b>55</b>
Output for 5.6.6
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 67 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 22 times and obtained a 10!<br/>Total damage dealt: <b>188</b>
Output for 5.6.5
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 2 times and obtained a 10!<br/>Total damage dealt: <b>25</b>
Output for 5.6.4
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 9 times and obtained a 10!<br/>Total damage dealt: <b>67</b>
Output for 5.6.3
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 13 times and obtained a 10!<br/>Total damage dealt: <b>102</b>
Output for 5.6.2
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 6 times and obtained a 10!<br/>Total damage dealt: <b>61</b>
Output for 5.6.1
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 70 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 53 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 29---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 30---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 31---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 32---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 33---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 34---</i><br/>The crit roll is 22 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 35---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 36---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 37---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 37 times and obtained a 10!<br/>Total damage dealt: <b>321</b>
Output for 5.6.0
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 76 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 5 times and obtained a 10!<br/>Total damage dealt: <b>47</b>
Output for 5.5.38
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 1 times and obtained a 10!<br/>Total damage dealt: <b>10</b>
Output for 5.5.37
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 11 times and obtained a 10!<br/>Total damage dealt: <b>102</b>
Output for 5.5.36
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 1 times and obtained a 10!<br/>Total damage dealt: <b>10</b>
Output for 5.5.35
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 67 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 85 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 12 times and obtained a 10!<br/>Total damage dealt: <b>78</b>
Output for 5.5.34
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 16 times and obtained a 10!<br/>Total damage dealt: <b>97</b>
Output for 5.5.33
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 67 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 95 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 10 times and obtained a 10!<br/>Total damage dealt: <b>62</b>
Output for 5.5.32
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 3 times and obtained a 10!<br/>Total damage dealt: <b>10</b>
Output for 5.5.31
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 95 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 7 times and obtained a 10!<br/>Total damage dealt: <b>54</b>
Output for 5.5.30
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 12 times and obtained a 10!<br/>Total damage dealt: <b>104</b>
Output for 5.5.29
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 8 times and obtained a 10!<br/>Total damage dealt: <b>77</b>
Output for 5.5.28
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 76 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 52 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 10 times and obtained a 10!<br/>Total damage dealt: <b>97</b>
Output for 5.5.27
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 14 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 1 times and obtained a 10!<br/>Total damage dealt: <b>10</b>
Output for 5.5.26
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 2 times and obtained a 10!<br/>Total damage dealt: <b>24</b>
Output for 5.5.25
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 85 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 52 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 29---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 29 times and obtained a 10!<br/>Total damage dealt: <b>191</b>
Output for 5.5.24
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 3 times and obtained a 10!<br/>Total damage dealt: <b>34</b>
Output for 5.5.23
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 1 times and obtained a 10!<br/>Total damage dealt: <b>10</b>
Output for 5.5.22
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 69 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 26 times and obtained a 10!<br/>Total damage dealt: <b>219</b>
Output for 5.5.21
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 53 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 76 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 29---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 30---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 31---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 32---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 33---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 34---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 35---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 36---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 37---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 38---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 39---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 40---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 41---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 42---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 43---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 44---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 45---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 46---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 47---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 48---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 49---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 50---</i><br/>The crit roll is 69 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 51---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 52---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 53---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 54---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 55---</i><br/>The crit roll is 67 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 56---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 57---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 58---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 59---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 60---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 61---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 62---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 62 times and obtained a 10!<br/>Total damage dealt: <b>494</b>
Output for 5.5.20
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 69 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 70 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 29---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 30---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 31---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 32---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 33---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 34---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 35---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 36---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 37---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 38---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 39---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 40---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 41---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 41 times and obtained a 10!<br/>Total damage dealt: <b>274</b>
Output for 5.5.19
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 2 times and obtained a 10!<br/>Total damage dealt: <b>22</b>
Output for 5.5.18
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 8 times and obtained a 10!<br/>Total damage dealt: <b>59</b>
Output for 5.5.16
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 85 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 17 times and obtained a 10!<br/>Total damage dealt: <b>142</b>
Output for 5.5.15
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 1 times and obtained a 10!<br/>Total damage dealt: <b>20</b>
Output for 5.5.14
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 14 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 5 times and obtained a 10!<br/>Total damage dealt: <b>38</b>
Output for 5.5.13
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 13 times and obtained a 10!<br/>Total damage dealt: <b>123</b>
Output for 5.5.12
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 1 times and obtained a 10!<br/>Total damage dealt: <b>10</b>
Output for 5.5.11
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 16 times and obtained a 10!<br/>Total damage dealt: <b>129</b>
Output for 5.5.10
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 4 times and obtained a 10!<br/>Total damage dealt: <b>60</b>
Output for 5.5.9
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 11 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 22 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 17 times and obtained a 10!<br/>Total damage dealt: <b>149</b>
Output for 5.5.8
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 85 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 4 times and obtained a 10!<br/>Total damage dealt: <b>34</b>
Output for 5.5.7
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 95 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 5 times and obtained a 10!<br/>Total damage dealt: <b>49</b>
Output for 5.5.6
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 15 times and obtained a 10!<br/>Total damage dealt: <b>136</b>
Output for 5.5.5
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 76 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 18 times and obtained a 10!<br/>Total damage dealt: <b>138</b>
Output for 5.5.4
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 22 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 11 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 76 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 16 times and obtained a 10!<br/>Total damage dealt: <b>90</b>
Output for 5.5.3
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 60 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 17 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 85 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 14 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 29---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 30---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 30 times and obtained a 10!<br/>Total damage dealt: <b>183</b>
Output for 5.5.2
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 70 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 12 times and obtained a 10!<br/>Total damage dealt: <b>134</b>
Output for 5.5.1
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 1 times and obtained a 10!<br/>Total damage dealt: <b>10</b>
Output for 5.5.0
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 85 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 12 times and obtained a 10!<br/>Total damage dealt: <b>97</b>
Output for 5.4.45
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 95 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 4 times and obtained a 10!<br/>Total damage dealt: <b>42</b>
Output for 5.4.44
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 76 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 85 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 5 times and obtained a 10!<br/>Total damage dealt: <b>36</b>
Output for 5.4.43
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 6 times and obtained a 10!<br/>Total damage dealt: <b>57</b>
Output for 5.4.42
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 95 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 70 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 10 times and obtained a 10!<br/>Total damage dealt: <b>93</b>
Output for 5.4.41
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 14 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 17 times and obtained a 10!<br/>Total damage dealt: <b>141</b>
Output for 5.4.40
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 2 times and obtained a 10!<br/>Total damage dealt: <b>20</b>
Output for 5.4.39
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 76 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 8 times and obtained a 10!<br/>Total damage dealt: <b>86</b>
Output for 5.4.38
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 85 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 7 times and obtained a 10!<br/>Total damage dealt: <b>61</b>
Output for 5.4.37
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 14 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 22 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 67 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 12 times and obtained a 10!<br/>Total damage dealt: <b>96</b>
Output for 5.4.36
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 1 times and obtained a 10!<br/>Total damage dealt: <b>20</b>
Output for 5.4.35
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 53 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 14 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 52 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 29---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 29 times and obtained a 10!<br/>Total damage dealt: <b>166</b>
Output for 5.4.34
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 2 times and obtained a 10!<br/>Total damage dealt: <b>16</b>
Output for 5.4.32
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 17 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 9 times and obtained a 10!<br/>Total damage dealt: <b>106</b>
Output for 5.4.31
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 60 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 76 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 85 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 24 times and obtained a 10!<br/>Total damage dealt: <b>247</b>
Output for 5.4.30
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 95 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 2 times and obtained a 10!<br/>Total damage dealt: <b>20</b>
Output for 5.4.29
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 11 times and obtained a 10!<br/>Total damage dealt: <b>103</b>
Output for 5.4.28
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 69 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 53 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 22 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 19 times and obtained a 10!<br/>Total damage dealt: <b>125</b>
Output for 5.4.27
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 2 times and obtained a 10!<br/>Total damage dealt: <b>10</b>
Output for 5.4.26
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 11 times and obtained a 10!<br/>Total damage dealt: <b>95</b>
Output for 5.4.25
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 70 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 19 times and obtained a 10!<br/>Total damage dealt: <b>148</b>
Output for 5.4.24
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 95 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 8 times and obtained a 10!<br/>Total damage dealt: <b>84</b>
Output for 5.4.23
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 69 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 12 times and obtained a 10!<br/>Total damage dealt: <b>96</b>
Output for 5.4.22
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 2 times and obtained a 10!<br/>Total damage dealt: <b>10</b>
Output for 5.4.21
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 1 times and obtained a 10!<br/>Total damage dealt: <b>20</b>
Output for 5.4.20
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 14 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 85 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 60 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 29---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 30---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 31---</i><br/>The crit roll is 69 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 32---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 33---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 34---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 35---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 36---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 37---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 38---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 39---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 40---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 41---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 42---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 43---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 44---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 45---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 46---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 47---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 48---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 49---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 49 times and obtained a 10!<br/>Total damage dealt: <b>327</b>
Output for 5.4.19
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 14 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 29---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 30---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 31---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 32---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 33---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 34---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 35---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 36---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 36 times and obtained a 10!<br/>Total damage dealt: <b>324</b>
Output for 5.4.18
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 60 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 52 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 95 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 10 times and obtained a 10!<br/>Total damage dealt: <b>82</b>
Output for 5.4.17
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 95 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 29---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 30---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 31---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 32---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 33---</i><br/>The crit roll is 11 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 34---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 35---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 36---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 37---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 38---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 39---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 40---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 41---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 42---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 43---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 44---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 45---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 46---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 47---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 48---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 49---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 50---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 51---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 52---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 53---</i><br/>The crit roll is 76 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 54---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 55---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 56---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 56 times and obtained a 10!<br/>Total damage dealt: <b>361</b>
Output for 5.4.16
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 67 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 7 times and obtained a 10!<br/>Total damage dealt: <b>61</b>
Output for 5.4.15
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 24 times and obtained a 10!<br/>Total damage dealt: <b>188</b>
Output for 5.4.14
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 3 times and obtained a 10!<br/>Total damage dealt: <b>14</b>
Output for 5.4.13
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 52 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 15 times and obtained a 10!<br/>Total damage dealt: <b>70</b>
Output for 5.4.12
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 3 times and obtained a 10!<br/>Total damage dealt: <b>32</b>
Output for 5.4.11
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 11 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 69 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 11 times and obtained a 10!<br/>Total damage dealt: <b>82</b>
Output for 5.4.10
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 17 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 6 times and obtained a 10!<br/>Total damage dealt: <b>59</b>
Output for 5.4.9
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 6 times and obtained a 10!<br/>Total damage dealt: <b>44</b>
Output for 5.4.8
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 3 times and obtained a 10!<br/>Total damage dealt: <b>20</b>
Output for 5.4.7
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 5 times and obtained a 10!<br/>Total damage dealt: <b>27</b>
Output for 5.4.6
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 11 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 17 times and obtained a 10!<br/>Total damage dealt: <b>89</b>
Output for 5.4.5
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 67 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 11 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 52 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 17 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 14 times and obtained a 10!<br/>Total damage dealt: <b>53</b>
Output for 5.4.4
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 14 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 52 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 60 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 28 times and obtained a 10!<br/>Total damage dealt: <b>203</b>
Output for 5.4.3
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 3 times and obtained a 10!<br/>Total damage dealt: <b>30</b>
Output for 5.4.2
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 53 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 67 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 9 times and obtained a 10!<br/>Total damage dealt: <b>69</b>
Output for 5.4.1
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 7 times and obtained a 10!<br/>Total damage dealt: <b>55</b>
Output for 5.4.0
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 95 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 52 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 70 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 8 times and obtained a 10!<br/>Total damage dealt: <b>77</b>
Output for 5.3.29
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 95 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 69 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 70 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 16 times and obtained a 10!<br/>Total damage dealt: <b>163</b>
Output for 5.3.28
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 14 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 9 times and obtained a 10!<br/>Total damage dealt: <b>69</b>
Output for 5.3.27
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 70 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 8 times and obtained a 10!<br/>Total damage dealt: <b>42</b>
Output for 5.3.26
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 14 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 11 times and obtained a 10!<br/>Total damage dealt: <b>69</b>
Output for 5.3.25
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 85 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 11 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 29---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 30---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 31---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 32---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 33---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 34---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 35---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 36---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 37---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 38---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 39---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 40---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 41---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 42---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 43---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 43 times and obtained a 10!<br/>Total damage dealt: <b>276</b>
Output for 5.3.24
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 1 times and obtained a 10!<br/>Total damage dealt: <b>20</b>
Output for 5.3.23
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 76 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 29---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 30---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 31---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 32---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 33---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 34---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 35---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 36---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 37---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 37 times and obtained a 10!<br/>Total damage dealt: <b>325</b>
Output for 5.3.22
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 2 times and obtained a 10!<br/>Total damage dealt: <b>18</b>
Output for 5.3.21
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 1 times and obtained a 10!<br/>Total damage dealt: <b>20</b>
Output for 5.3.20
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 67 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 52 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 11 times and obtained a 10!<br/>Total damage dealt: <b>102</b>
Output for 5.3.19
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 7 times and obtained a 10!<br/>Total damage dealt: <b>88</b>
Output for 5.3.18
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 7 times and obtained a 10!<br/>Total damage dealt: <b>73</b>
Output for 5.3.17
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 85 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 60 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 4 times and obtained a 10!<br/>Total damage dealt: <b>38</b>
Output for 5.3.16
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 67 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 16 times and obtained a 10!<br/>Total damage dealt: <b>72</b>
Output for 5.3.15
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 14 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 69 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 67 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 70 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 29---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 30---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 31---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 32---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 33---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 34---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 35---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 36---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 37---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 38---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 39---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 40---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 40 times and obtained a 10!<br/>Total damage dealt: <b>348</b>
Output for 5.3.14
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 11 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 53 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 14 times and obtained a 10!<br/>Total damage dealt: <b>79</b>
Output for 5.3.13
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 60 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 6 times and obtained a 10!<br/>Total damage dealt: <b>46</b>
Output for 5.3.12
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 95 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 17 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 24 times and obtained a 10!<br/>Total damage dealt: <b>205</b>
Output for 5.3.11
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 76 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 17 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 16 times and obtained a 10!<br/>Total damage dealt: <b>141</b>
Output for 5.3.10
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 4 times and obtained a 10!<br/>Total damage dealt: <b>23</b>
Output for 5.3.8
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 2 times and obtained a 10!<br/>Total damage dealt: <b>17</b>
Output for 5.3.7
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 2 times and obtained a 10!<br/>Total damage dealt: <b>21</b>
Output for 5.3.6
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 52 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 14 times and obtained a 10!<br/>Total damage dealt: <b>87</b>
Output for 5.3.5
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 1 times and obtained a 10!<br/>Total damage dealt: <b>10</b>
Output for 5.3.4
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 4 times and obtained a 10!<br/>Total damage dealt: <b>31</b>
Output for 5.3.3
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 67 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 14 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 76 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 95 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 24 times and obtained a 10!<br/>Total damage dealt: <b>206</b>
Output for 5.3.2
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 11 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 17 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 29---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 30---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 30 times and obtained a 10!<br/>Total damage dealt: <b>259</b>
Output for 5.3.1
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 53 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 3 times and obtained a 10!<br/>Total damage dealt: <b>42</b>
Output for 5.3.0
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 85 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 18 times and obtained a 10!<br/>Total damage dealt: <b>146</b>
Output for 5.2.17
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 22 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 6 times and obtained a 10!<br/>Total damage dealt: <b>43</b>
Output for 5.2.16
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 2 times and obtained a 10!<br/>Total damage dealt: <b>26</b>
Output for 5.2.15
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 3 times and obtained a 10!<br/>Total damage dealt: <b>22</b>
Output for 5.2.14
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 6 times and obtained a 10!<br/>Total damage dealt: <b>69</b>
Output for 5.2.13
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 22 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 76 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 12 times and obtained a 10!<br/>Total damage dealt: <b>139</b>
Output for 5.2.12
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 69 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 6 times and obtained a 10!<br/>Total damage dealt: <b>57</b>
Output for 5.2.11
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 95 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 7 times and obtained a 10!<br/>Total damage dealt: <b>39</b>
Output for 5.2.10
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 4 times and obtained a 10!<br/>Total damage dealt: <b>62</b>
Output for 5.2.9
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 52 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 69 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 53 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 85 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 29---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 30---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 31---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 32---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 33---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 34---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 35---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 36---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 37---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 38---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 39---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 40---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 41---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 42---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 43---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 44---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 45---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 46---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 47---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 48---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 49---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 49 times and obtained a 10!<br/>Total damage dealt: <b>279</b>
Output for 5.2.8
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 10 times and obtained a 10!<br/>Total damage dealt: <b>82</b>
Output for 5.2.7
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 8 times and obtained a 10!<br/>Total damage dealt: <b>75</b>
Output for 5.2.6
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 76 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 53 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 22 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 11 times and obtained a 10!<br/>Total damage dealt: <b>86</b>
Output for 5.2.5
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 76 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 17 times and obtained a 10!<br/>Total damage dealt: <b>158</b>
Output for 5.2.4
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 8 times and obtained a 10!<br/>Total damage dealt: <b>82</b>
Output for 5.2.3
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 60 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 17 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 11 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 11 times and obtained a 10!<br/>Total damage dealt: <b>73</b>
Output for 5.2.2
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 17 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 5 times and obtained a 10!<br/>Total damage dealt: <b>38</b>
Output for 5.2.1
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 21 times and obtained a 10!<br/>Total damage dealt: <b>162</b>
Output for 5.2.0
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 11 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 22 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 17 times and obtained a 10!<br/>Total damage dealt: <b>131</b>
Output for 5.1.6
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 70 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 21 times and obtained a 10!<br/>Total damage dealt: <b>198</b>
Output for 5.1.5
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 69 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 75 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 67 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 29---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 30---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 31---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 32---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 33---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 33 times and obtained a 10!<br/>Total damage dealt: <b>209</b>
Output for 5.1.4
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 1 times and obtained a 10!<br/>Total damage dealt: <b>10</b>
Output for 5.1.3
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 12 times and obtained a 10!<br/>Total damage dealt: <b>85</b>
Output for 5.1.2
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 17 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 52 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 17 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 22 times and obtained a 10!<br/>Total damage dealt: <b>154</b>
Output for 5.1.1
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 67 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 85 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 10 times and obtained a 10!<br/>Total damage dealt: <b>70</b>
Output for 5.1.0
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 14 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 5 times and obtained a 10!<br/>Total damage dealt: <b>41</b>
Output for 5.0.5
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 17 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 60 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 83 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 17 times and obtained a 10!<br/>Total damage dealt: <b>136</b>
Output for 5.0.4
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 52 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 84 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 13 times and obtained a 10!<br/>Total damage dealt: <b>108</b>
Output for 5.0.3
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 3 times and obtained a 10!<br/>Total damage dealt: <b>34</b>
Output for 5.0.2
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 5 times and obtained a 10!<br/>Total damage dealt: <b>49</b>
Output for 5.0.1
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 76 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 22 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 7 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 60 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 20 times and obtained a 10!<br/>Total damage dealt: <b>150</b>
Output for 5.0.0
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 9 times and obtained a 10!<br/>Total damage dealt: <b>64</b>
Output for 4.4.9
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 93 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 3 times and obtained a 10!<br/>Total damage dealt: <b>25</b>
Output for 4.4.8
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 99 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 25 times and obtained a 10!<br/>Total damage dealt: <b>180</b>
Output for 4.4.7
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 22 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 96 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 5 times and obtained a 10!<br/>Total damage dealt: <b>46</b>
Output for 4.4.6
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 53 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 6 times and obtained a 10!<br/>Total damage dealt: <b>24</b>
Output for 4.4.5
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 61 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 6 times and obtained a 10!<br/>Total damage dealt: <b>59</b>
Output for 4.4.4
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 95 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 3 times and obtained a 10!<br/>Total damage dealt: <b>32</b>
Output for 4.4.3
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 31 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 88 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 52 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 7 times and obtained a 10!<br/>Total damage dealt: <b>43</b>
Output for 4.4.2
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 30 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 12 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 29---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 30---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 31---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 32---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 33---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 34---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 35---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 36---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 37---</i><br/>The crit roll is 10 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 38---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 39---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 40---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 41---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 42---</i><br/>The crit roll is 11 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 43---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 44---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 45---</i><br/>The crit roll is 21 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 46---</i><br/>The crit roll is 94 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 46 times and obtained a 10!<br/>Total damage dealt: <b>330</b>
Output for 4.4.1
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 27 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 3 times and obtained a 10!<br/>Total damage dealt: <b>21</b>
Output for 4.4.0
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 7 times and obtained a 10!<br/>Total damage dealt: <b>43</b>
Output for 4.3.11
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 22 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 12 times and obtained a 10!<br/>Total damage dealt: <b>111</b>
Output for 4.3.10
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 39 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 100 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 2 times and obtained a 10!<br/>Total damage dealt: <b>20</b>
Output for 4.3.9
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 9 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 97 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 74 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 11 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 13 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 17 times and obtained a 10!<br/>Total damage dealt: <b>104</b>
Output for 4.3.8
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 34 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 47 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 89 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 17 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 58 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 8 times and obtained a 10!<br/>Total damage dealt: <b>54</b>
Output for 4.3.7
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 19 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 25 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 14 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 76 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 71 vs 70<br/>Fighter A shoots a critical blast dealing <b>24</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 2 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 60 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 4 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 48 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 29---</i><br/>The crit roll is 16 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 30---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 31---</i><br/>The crit roll is 59 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 32---</i><br/>The crit roll is 37 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 32 times and obtained a 10!<br/>Total damage dealt: <b>257</b>
Output for 4.3.6
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 29 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 91 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 63 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 45 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 73 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 86 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 67 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 13 times and obtained a 10!<br/>Total damage dealt: <b>80</b>
Output for 4.3.5
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 11 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots a glancing blow of 3 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 6 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 18 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 72 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 40 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>10</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 3 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 35 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 20---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 21---</i><br/>The crit roll is 66 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 22---</i><br/>The crit roll is 52 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 23---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 24---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 25---</i><br/>The crit roll is 54 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 26---</i><br/>The crit roll is 44 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 27---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 28---</i><br/>The crit roll is 69 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 28 times and obtained a 10!<br/>Total damage dealt: <b>165</b>
Output for 4.3.4
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 87 vs 70<br/>Fighter A shoots a critical blast dealing <b>2</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 14 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 6 times and obtained a 10!<br/>Total damage dealt: <b>42</b>
Output for 4.3.3
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 32 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 41 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 28 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 24 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 23 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 9 times and obtained a 10!<br/>Total damage dealt: <b>70</b>
Output for 4.3.2
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 85 vs 70<br/>Fighter A shoots a critical blast dealing <b>4</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 36 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 51 vs 70<br/>Fighter A shoots for <b>5</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 78 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 20 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 55 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 92 vs 70<br/>Fighter A shoots a critical blast dealing <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 43 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 50 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots for <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 15 vs 70<br/>Fighter A shoots a glancing blow of 1 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 14---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>14</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 15---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>16</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 16---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 17---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots a glancing blow of 4 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 18---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots for <b>9</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 19---</i><br/>The crit roll is 38 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 19 times and obtained a 10!<br/>Total damage dealt: <b>107</b>
Output for 4.3.1
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 65 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 80 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 77 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 98 vs 70<br/>Fighter A shoots a critical blast dealing <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 82 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 56 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 5 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 26 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 46 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 79 vs 70<br/>Fighter A shoots a critical blast dealing <b>20</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 10 times and obtained a 10!<br/>Total damage dealt: <b>91</b>
Output for 4.3.0
<i>----------------------------</i><br/><i>---Fighter A fires shot 1---</i><br/>The crit roll is 68 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 2---</i><br/>The crit roll is 57 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 3---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>22</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 4---</i><br/>The crit roll is 81 vs 70<br/>Fighter A shoots a critical blast dealing <b>6</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 5---</i><br/>The crit roll is 42 vs 70<br/>Fighter A shoots for <b>8</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 6---</i><br/>The crit roll is 90 vs 70<br/>Fighter A shoots a critical blast dealing <b>18</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 7---</i><br/>The crit roll is 33 vs 70<br/>Fighter A shoots for <b>11</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 8---</i><br/>The crit roll is 64 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 9---</i><br/>The crit roll is 49 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 10---</i><br/>The crit roll is 1 vs 70<br/>Fighter A shoots for <b>12</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 11---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots for <b>7</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 12---</i><br/>The crit roll is 8 vs 70<br/>Fighter A shoots a glancing blow of 2 against the target's 4 armor, dealing <b>0</b>!<br/><i>----------------------------</i><br/><i>----------------------------</i><br/><i>---Fighter A fires shot 13---</i><br/>The crit roll is 62 vs 70<br/>Fighter A shoots for <b>10</b>!<br/><i>----------------------------</i><br/>The round is over. We rolled 13 times and obtained a 10!<br/>Total damage dealt: <b>129</b>

preferences:
177.7 ms | 409 KiB | 217 Q