Skip to content

Commit

Permalink
glaciela and lasswell update
Browse files Browse the repository at this point in the history
  • Loading branch information
7se7en committed Oct 7, 2020
1 parent c831875 commit 2c678f9
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 38 deletions.
24 changes: 13 additions & 11 deletions damageCalculator.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 10 additions & 7 deletions damageCalculator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ private void button1_Click(object sender, EventArgs e)
break;
}

// Some jobs add other stats into your damage. The follow code sets the values of the multipliers from 1 to whatever it need be.
switch (comboBox1.SelectedItem)
{
case "Assassin":
Expand Down Expand Up @@ -156,6 +157,7 @@ private void button1_Click(object sender, EventArgs e)
varLCK = 0.05;
break;
case "Knight":
case "Knight of Grandshelt (Ice)":
case "Knight of Ruin":
case "Monk":
case "Samurai":
Expand All @@ -165,6 +167,7 @@ private void button1_Click(object sender, EventArgs e)
varMAIN = 1.2;
break;
case "Lancer":
case "Valkyrie":
varDEX = 0.2;
varAGI = 0.1;
varLCK = 0.15;
Expand Down Expand Up @@ -223,7 +226,7 @@ private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
string message = "A simple (for now) damage calculator made by Yurumates\nAll damage results have a margin of error of around 1%.\nPlease join Rage.";
string title = "About";
MessageBoxButtons buttons = MessageBoxButtons.OK;
DialogResult result = MessageBox.Show(message, title, buttons, MessageBoxIcon.Information);
_ = MessageBox.Show(message, title, buttons, MessageBoxIcon.Information);
}

private void accuracyAndEvasionToolStripMenuItem_Click(object sender, EventArgs e)
Expand Down Expand Up @@ -287,7 +290,7 @@ private void directoryMake()
}
catch (Exception e)
{

Console.WriteLine(e);
}
}

Expand Down Expand Up @@ -418,9 +421,9 @@ private void notesListBox_MouseDoubleClick(object sender, MouseEventArgs e)
private void aboutToolStripMenuItem_Click_1(object sender, EventArgs e)
{
string message = "A simple (for now) damage calculator made by Yurumates\nAll damage results have a margin of error of around 1%.";
string title = "About - Version El Grande Sterne 2";
string title = "About - Version MONT, THE BLOODLINE! featuring Lass";
MessageBoxButtons buttons = MessageBoxButtons.OK;
DialogResult result = MessageBox.Show(message, title, buttons, MessageBoxIcon.Information);
_ = MessageBox.Show(message, title, buttons, MessageBoxIcon.Information);
}

private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
Expand All @@ -445,10 +448,10 @@ private void nicheHelp_Click(object sender, EventArgs e)
{
if (comboBox1.SelectedIndex == 0) //Arithmetician
{
string message = "This textbox is mainly for the move 'Height-Based Water'. For Level 3/4 Watera/Waterga and Height 2/3 Holy, see wotv-calc for appropriate skill multipler values. Unlike 'Height-Based Water', they do not get a scaling increase. They get a flat increase. Therefore, you can just input the adjusted number on your own.";
string message = "This textbox is mainly for the move 'Height-Based' magic specifically. For Level 3/4 and Height 2/3 spells, NOT Height-Based, see wotv-calc for appropriate skill multipler values. Unlike 'Height-Based' magic, they do not get a scaling increase. They get a flat increase. Therefore, you can just input the adjusted number on your own.";
string title = "Arithmetician Height Help";
MessageBoxButtons buttons = MessageBoxButtons.OK;
DialogResult result = MessageBox.Show(message, title, buttons, MessageBoxIcon.Information);
_ = MessageBox.Show(message, title, buttons, MessageBoxIcon.Information);
}
}

Expand All @@ -457,7 +460,7 @@ private void emeraldEchoInfoToolStripMenuItem_Click(object sender, EventArgs e)
string message = "If the description of the ability says \"Bestow\", then it doesn't work with Emerald Echo.";
string title = "Emerald Echo Info";
MessageBoxButtons buttons = MessageBoxButtons.OK;
DialogResult result = MessageBox.Show(message, title, buttons, MessageBoxIcon.Information);
_ = MessageBox.Show(message, title, buttons, MessageBoxIcon.Information);
}

private void effectiveHPToolStripMenuItem_Click(object sender, EventArgs e)
Expand Down
40 changes: 20 additions & 20 deletions effectiveHP.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2c678f9

Please sign in to comment.