Skip to content

Commit

Permalink
fixed breeding values for stat-tester. fixed procoptodon level-up-values
Browse files Browse the repository at this point in the history
  • Loading branch information
cadon committed Mar 21, 2016
1 parent 3955087 commit dacfb3b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 12 deletions.
9 changes: 3 additions & 6 deletions ARKBreedingStats/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,7 @@ private double breedingValue(int s, int r)
{
if (r >= 0 && r < results[s].Count)
{
return calculateValue(sE, s, (int)results[s][r][0], 0, true, results[s][r][2]);
return calculateValue(sE, s, (int)results[s][r][0], 0, true, 1);
}
}
return -1;
Expand Down Expand Up @@ -2053,11 +2053,8 @@ private void checkBoxQuickWildCheck_CheckedChanged(object sender, EventArgs e)
/// <param name="sIo"></param>
private void statIOUpdateValue(StatIO sIo)
{
double te = 1;
if (!checkBoxStatTestingBred.Checked)
te = (double)NumericUpDownTestingTE.Value / 100;
sIo.BreedingValue = calculateValue(cbbStatTestingSpecies.SelectedIndex, sIo.statIndex, sIo.LevelWild, 0, true, te);
sIo.Input = calculateValue(cbbStatTestingSpecies.SelectedIndex, sIo.statIndex, sIo.LevelWild, sIo.LevelDom, (checkBoxStatTestingTamed.Checked || checkBoxStatTestingBred.Checked), te);
sIo.BreedingValue = calculateValue(cbbStatTestingSpecies.SelectedIndex, sIo.statIndex, sIo.LevelWild, 0, true, 1);
sIo.Input = calculateValue(cbbStatTestingSpecies.SelectedIndex, sIo.statIndex, sIo.LevelWild, sIo.LevelDom, (checkBoxStatTestingTamed.Checked || checkBoxStatTestingBred.Checked), (double)NumericUpDownTestingTE.Value / 100);

// update Torpor-level if changed value is not from torpor-StatIO
if (updateTorporInTester && sIo != statTestingTorpor)
Expand Down
2 changes: 1 addition & 1 deletion ARKBreedingStats/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("0.17.5.0")]
[assembly: AssemblyFileVersion("0.17.6.0")]
8 changes: 4 additions & 4 deletions ARKBreedingStats/stats.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// if a creature has no oxygen, set basevalue to 0 and the stat will be deactivated
//
// version of this file (is used for update-check)
!2360503
!2360504
Angler
450,0.2,0.27,0.3,0
240,0.1,0.1,0,0
Expand Down Expand Up @@ -313,14 +313,14 @@ Plesiosaur
1,0,0.025,0,0
1600,0.06,0,0.5,0
Procoptodon
400,0.2,0.27,0.5
350,0.1,0.1,0,0
400,0.11,0.27,0.5
350,0.05428571428,0.1,0,0
150,0.1,0.1,0,0
1500,0.1,0.1,0,0
450,0.02,0.04,0,0
1,0.05,0.1,0.2,0.25
1,0,0.02,0,0
350,0.06,0,0.5,0
350,0.034285714,0,0.5,0
Pteranodon
210,0.2,0.27,0.5,0
300,0.1,0.1,0,0
Expand Down
2 changes: 1 addition & 1 deletion ARKBreedingStats/ver.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2360503,2360503
2360504,2360503

0 comments on commit dacfb3b

Please sign in to comment.