diff --git a/ARKBreedingStats/CreatureCollection.cs b/ARKBreedingStats/CreatureCollection.cs index 789fb133..8abe185f 100644 --- a/ARKBreedingStats/CreatureCollection.cs +++ b/ARKBreedingStats/CreatureCollection.cs @@ -30,7 +30,7 @@ namespace ARKBreedingStats public int maxWildLevel = 150; public int maxChartLevel = 50; public int maxBreedingSuggestions = 10; - public bool considerWildLevelSteps = true; + public bool considerWildLevelSteps = false; public int wildLevelStep = 5; public double imprintingMultiplier = 1; public double babyCuddleIntervalMultiplier = 1; diff --git a/ARKBreedingStats/Extraction.cs b/ARKBreedingStats/Extraction.cs index 4a1a2a0e..76583523 100644 --- a/ARKBreedingStats/Extraction.cs +++ b/ARKBreedingStats/Extraction.cs @@ -20,6 +20,7 @@ class Extraction public int wildFreeMax = 0, domFreeMin = 0, domFreeMax = 0; // unassigned levels public double imprintingBonus; public bool[] activeStats; + public bool lastTEUnique; public Extraction() { @@ -51,6 +52,7 @@ public void Clear() validResults = false; statsWithEff.Clear(); imprintingBonus = 0; + lastTEUnique = false; } public double uniqueTE() @@ -58,16 +60,29 @@ public double uniqueTE() double eff = -2; if (statsWithEff.Count > 0 && results[statsWithEff[0]].Count > chosenResults[statsWithEff[0]]) { - eff = results[statsWithEff[0]][chosenResults[statsWithEff[0]]].TE; - for (int s = 1; s < statsWithEff.Count; s++) + eff = -1; + for (int s = 0; s < statsWithEff.Count; s++) { - // effectiveness-calculation can be a bit off due to ingame-rounding - if (results[statsWithEff[s]].Count <= chosenResults[statsWithEff[s]] || Math.Abs(results[statsWithEff[s]][chosenResults[statsWithEff[s]]].TE - eff) > 0.0025) + for (int ss = s + 1; ss < statsWithEff.Count; ss++) { - return -1; // no unique TE + // effectiveness-calculation can be a bit off due to ingame-rounding + if (results[statsWithEff[ss]].Count <= chosenResults[statsWithEff[ss]] + || results[statsWithEff[s]][chosenResults[statsWithEff[s]]].TEMin > results[statsWithEff[ss]][chosenResults[statsWithEff[ss]]].TEMax + || results[statsWithEff[s]][chosenResults[statsWithEff[s]]].TEMax < results[statsWithEff[ss]][chosenResults[statsWithEff[ss]]].TEMin) + { + lastTEUnique = false; + return -1; // no unique TE + } } } + // calculate most probable real TE + // TODO do a forward calculation-check instead of just the mean + double effSum = 0; + for (int s = 0; s < statsWithEff.Count; s++) + effSum += results[statsWithEff[s]][chosenResults[statsWithEff[s]]].TE; + eff = Math.Round(effSum / statsWithEff.Count, 3); } + lastTEUnique = eff >= 0; return eff; } @@ -177,9 +192,7 @@ public void extractLevels(int speciesI, int level, List statIOs, double imprintingBonus = 0; if (bred) { - if (imprintingBonusRounded == 1) - imprintingBonus = 1; - else if (Values.V.species[speciesI].breeding != null && Values.V.species[speciesI].breeding.maturationTimeAdjusted > 0) + if (Values.V.species[speciesI].breeding != null && Values.V.species[speciesI].breeding.maturationTimeAdjusted > 0) { imprintingBonus = Math.Round(Math.Round(imprintingBonusRounded * Values.V.species[speciesI].breeding.maturationTimeAdjusted / (14400 * cuddleIntervalMultiplier)) * 14400 * cuddleIntervalMultiplier / Values.V.species[speciesI].breeding.maturationTimeAdjusted, 5); @@ -275,7 +288,7 @@ public void extractLevels(int speciesI, int level, List statIOs, double for (int w = 0; w < maxLW + 1; w++) { - // imprinting bonus is applied to all stats except stamina (s==1) and oxygen (s==2) and speed (s==6)// todo + // imprinting bonus is applied to all stats except stamina (s==1) and oxygen (s==2) and speed (s==6) valueWODom = (postTamed ? statBaseValueTamed : statBaseValueWild) * (1 + Values.V.species[speciesI].stats[s].IncPerWildLevel * w) * (s == 1 || s == 2 || (s == 6 && Values.V.species[speciesI].NoImprintingForSpeed == true) ? 1 : imprintingMultiplier) + (postTamed ? Values.V.species[speciesI].stats[s].AddWhenTamed : 0); for (int d = 0; d < maxLD + 1; d++) { @@ -283,20 +296,23 @@ public void extractLevels(int speciesI, int level, List statIOs, double { // taming bonus is dependant on taming-effectiveness // get tamingEffectiveness-possibility - // rounding errors need to increase error-range tamingEffectiveness = Math.Round((inputValue / (1 + Values.V.species[speciesI].stats[s].IncPerTamedLevel * d) - valueWODom) / (valueWODom * Values.V.species[speciesI].stats[s].MultAffinity), 3, MidpointRounding.AwayFromZero); - if (tamingEffectiveness < 1.005 && tamingEffectiveness > 1) { tamingEffectiveness = 1; } - if (tamingEffectiveness > lowerTEBound - 0.008) + // calculate rounding-error thresholds. Here it's assumed that the ingame value is maximal 0.6 off of the true value + double tamingEffectivenessMax = Math.Round(((inputValue + (Utils.precision(s) == 3 ? 0.0006 : 0.06)) / (1 + Values.V.species[speciesI].stats[s].IncPerTamedLevel * d) - valueWODom) / (valueWODom * Values.V.species[speciesI].stats[s].MultAffinity), 3, MidpointRounding.AwayFromZero); + double tamingEffectivenessMin = Math.Round(((inputValue - (Utils.precision(s) == 3 ? 0.0006 : 0.06)) / (1 + Values.V.species[speciesI].stats[s].IncPerTamedLevel * d) - valueWODom) / (valueWODom * Values.V.species[speciesI].stats[s].MultAffinity), 3, MidpointRounding.AwayFromZero); + + if (tamingEffectivenessMin <= 1 && tamingEffectiveness > 1) tamingEffectiveness = 1; + if (tamingEffectivenessMax >= lowerTEBound) { - if (tamingEffectiveness <= upperTEBound) + if (tamingEffectivenessMin <= upperTEBound) { // test if TE with torpor-level of tamed-creatures results in a valid wild-level if (considerWildLevelSteps && s != 7 && tamingEffectiveness > 0 && (int)Math.Ceiling((trueTorporLevel(tamingEffectiveness) + 1) / (1 + tamingEffectiveness / 2)) % wildLevelSteps != 0) continue; - results[s].Add(new StatResult(w, d, tamingEffectiveness)); + results[s].Add(new StatResult(w, d, tamingEffectiveness, tamingEffectivenessMin, tamingEffectivenessMax)); } else continue; } @@ -306,10 +322,10 @@ public void extractLevels(int speciesI, int level, List statIOs, double break; } } - else if (Math.Abs((valueWODom * (1 + Values.V.species[speciesI].stats[s].IncPerTamedLevel * d) - inputValue) * (Utils.precision(s) == 3 ? 100 : 1)) < 0.2) + else if (Math.Abs((valueWODom * (1 + Values.V.species[speciesI].stats[s].IncPerTamedLevel * d) - inputValue) * (Utils.precision(s) == 3 ? 100 : 1)) < 0.15) { results[s].Add(new StatResult(w, d)); - break; // no other solution possible + break; // no other solution with this w possible } } } @@ -391,7 +407,7 @@ public int removeOutOfBoundsResults() { results[s].Clear(); validResults = false; - return s; + return s; // this stat has an issue (no valid results) } } } @@ -411,12 +427,13 @@ public int removeOutOfBoundsResults() { for (int erf = 0; erf < results[statsWithEff[et]].Count; erf++) { - // effectiveness-calculation can be a bit off due to rounding-ingame, so treat them as equal when diff<0.002 - if (Math.Abs(results[statsWithEff[es]][ere].TE - results[statsWithEff[et]][erf].TE) < 0.003) + // effectiveness-calculation can be a bit off due to rounding-ingame, use the TE-ranges + if (results[statsWithEff[es]][ere].TEMin < results[statsWithEff[et]][erf].TEMax + && results[statsWithEff[es]][ere].TEMax > results[statsWithEff[et]][erf].TEMin) { // if entry is not yet in whitelist, add it - if (equalEffs1.IndexOf(ere) == -1) { equalEffs1.Add(ere); } - if (equalEffs2.IndexOf(erf) == -1) { equalEffs2.Add(erf); } + if (equalEffs1.IndexOf(ere) == -1) equalEffs1.Add(ere); + if (equalEffs2.IndexOf(erf) == -1) equalEffs2.Add(erf); } } } diff --git a/ARKBreedingStats/Form1.Designer.cs b/ARKBreedingStats/Form1.Designer.cs index 415add32..72e18323 100644 --- a/ARKBreedingStats/Form1.Designer.cs +++ b/ARKBreedingStats/Form1.Designer.cs @@ -111,30 +111,51 @@ private void InitializeComponent() this.radioButtonWild = new System.Windows.Forms.RadioButton(); this.tabControlMain = new System.Windows.Forms.TabControl(); this.tabPageStatTesting = new System.Windows.Forms.TabPage(); + this.statPotentials1 = new ARKBreedingStats.uiControls.StatPotentials(); this.groupBox8 = new System.Windows.Forms.GroupBox(); + this.radarChart1 = new ARKBreedingStats.RadarChart(); this.panelWildTamedBredTester = new System.Windows.Forms.Panel(); this.radioButtonTesterBred = new System.Windows.Forms.RadioButton(); this.radioButtonTesterTamed = new System.Windows.Forms.RadioButton(); this.radioButtonTesterWild = new System.Windows.Forms.RadioButton(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.labelTesterTotalLevel = new System.Windows.Forms.Label(); + this.statTestingHealth = new ARKBreedingStats.StatIO(); this.labelDomLevelSum = new System.Windows.Forms.Label(); + this.statTestingStamina = new ARKBreedingStats.StatIO(); + this.statTestingOxygen = new ARKBreedingStats.StatIO(); this.labelNotTamedNoteTesting = new System.Windows.Forms.Label(); + this.statTestingFood = new ARKBreedingStats.StatIO(); this.label10 = new System.Windows.Forms.Label(); + this.statTestingWeight = new ARKBreedingStats.StatIO(); + this.statTestingDamage = new ARKBreedingStats.StatIO(); + this.statTestingSpeed = new ARKBreedingStats.StatIO(); + this.statTestingTorpor = new ARKBreedingStats.StatIO(); this.groupBox5 = new System.Windows.Forms.GroupBox(); this.labelCurrentTesterCreature = new System.Windows.Forms.Label(); this.labelTestingInfo = new System.Windows.Forms.Label(); + this.creatureInfoInputTester = new ARKBreedingStats.CreatureInfoInput(); this.tabPageExtractor = new System.Windows.Forms.TabPage(); this.groupBoxRadarChartExtractor = new System.Windows.Forms.GroupBox(); + this.radarChartExtractor = new ARKBreedingStats.RadarChart(); this.labelImprintingFailInfo = new System.Windows.Forms.Label(); this.groupBoxTamingInfo = new System.Windows.Forms.GroupBox(); this.labelTamingInfo = new System.Windows.Forms.Label(); this.button2TamingCalc = new System.Windows.Forms.Button(); this.groupBox7 = new System.Windows.Forms.GroupBox(); + this.statIOHealth = new ARKBreedingStats.StatIO(); + this.statIODamage = new ARKBreedingStats.StatIO(); + this.statIOTorpor = new ARKBreedingStats.StatIO(); + this.statIOWeight = new ARKBreedingStats.StatIO(); + this.statIOSpeed = new ARKBreedingStats.StatIO(); + this.statIOFood = new ARKBreedingStats.StatIO(); + this.statIOOxygen = new ARKBreedingStats.StatIO(); + this.statIOStamina = new ARKBreedingStats.StatIO(); this.buttonExtract = new System.Windows.Forms.Button(); this.checkBoxQuickWildCheck = new System.Windows.Forms.CheckBox(); this.buttonHelp = new System.Windows.Forms.Button(); this.labelErrorHelp = new System.Windows.Forms.Label(); + this.creatureInfoInputExtractor = new ARKBreedingStats.CreatureInfoInput(); this.tabPageLibrary = new System.Windows.Forms.TabPage(); this.tableLayoutPanelLibrary = new System.Windows.Forms.TableLayoutPanel(); this.tabControlLibFilter = new System.Windows.Forms.TabControl(); @@ -192,14 +213,23 @@ private void InitializeComponent() this.editAllSelectedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator(); this.toolStripMenuItemRemove = new System.Windows.Forms.ToolStripMenuItem(); + this.creatureBoxListView = new ARKBreedingStats.CreatureBox(); this.tabPagePedigree = new System.Windows.Forms.TabPage(); + this.pedigree1 = new ARKBreedingStats.Pedigree(); this.tabPageTaming = new System.Windows.Forms.TabPage(); + this.tamingControl1 = new ARKBreedingStats.TamingControl(); this.tabPageBreedingPlan = new System.Windows.Forms.TabPage(); + this.breedingPlan1 = new ARKBreedingStats.BreedingPlan(); this.tabPageRaising = new System.Windows.Forms.TabPage(); + this.raisingControl1 = new ARKBreedingStats.RaisingControl(); this.tabPageTimer = new System.Windows.Forms.TabPage(); + this.timerList1 = new ARKBreedingStats.TimerControl(); this.tabPagePlayerTribes = new System.Windows.Forms.TabPage(); + this.tribesControl1 = new ARKBreedingStats.TribesControl(); this.tabPageNotes = new System.Windows.Forms.TabPage(); + this.notesControl1 = new ARKBreedingStats.NotesControl(); this.TabPageOCR = new System.Windows.Forms.TabPage(); + this.ocrControl1 = new ARKBreedingStats.ocr.OCRControl(); this.btnReadValuesFromArk = new System.Windows.Forms.Button(); this.cbEventMultipliers = new System.Windows.Forms.CheckBox(); this.statusStrip1 = new System.Windows.Forms.StatusStrip(); @@ -227,36 +257,6 @@ private void InitializeComponent() this.labelListening = new System.Windows.Forms.Label(); this.label9 = new System.Windows.Forms.Label(); this.comboBoxSpeciesGlobal = new System.Windows.Forms.ComboBox(); - this.statPotentials1 = new ARKBreedingStats.uiControls.StatPotentials(); - this.radarChart1 = new ARKBreedingStats.RadarChart(); - this.statTestingHealth = new ARKBreedingStats.StatIO(); - this.statTestingStamina = new ARKBreedingStats.StatIO(); - this.statTestingOxygen = new ARKBreedingStats.StatIO(); - this.statTestingFood = new ARKBreedingStats.StatIO(); - this.statTestingWeight = new ARKBreedingStats.StatIO(); - this.statTestingDamage = new ARKBreedingStats.StatIO(); - this.statTestingSpeed = new ARKBreedingStats.StatIO(); - this.statTestingTorpor = new ARKBreedingStats.StatIO(); - this.creatureInfoInputTester = new ARKBreedingStats.CreatureInfoInput(); - this.radarChartExtractor = new ARKBreedingStats.RadarChart(); - this.statIOHealth = new ARKBreedingStats.StatIO(); - this.statIODamage = new ARKBreedingStats.StatIO(); - this.statIOTorpor = new ARKBreedingStats.StatIO(); - this.statIOWeight = new ARKBreedingStats.StatIO(); - this.statIOSpeed = new ARKBreedingStats.StatIO(); - this.statIOFood = new ARKBreedingStats.StatIO(); - this.statIOOxygen = new ARKBreedingStats.StatIO(); - this.statIOStamina = new ARKBreedingStats.StatIO(); - this.creatureInfoInputExtractor = new ARKBreedingStats.CreatureInfoInput(); - this.creatureBoxListView = new ARKBreedingStats.CreatureBox(); - this.pedigree1 = new ARKBreedingStats.Pedigree(); - this.tamingControl1 = new ARKBreedingStats.TamingControl(); - this.breedingPlan1 = new ARKBreedingStats.BreedingPlan(); - this.raisingControl1 = new ARKBreedingStats.RaisingControl(); - this.timerList1 = new ARKBreedingStats.TimerControl(); - this.tribesControl1 = new ARKBreedingStats.TribesControl(); - this.notesControl1 = new ARKBreedingStats.NotesControl(); - this.ocrControl1 = new ARKBreedingStats.ocr.OCRControl(); this.groupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownImprintingBonusTester)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NumericUpDownTestingTE)).BeginInit(); @@ -274,11 +274,13 @@ private void InitializeComponent() this.tabControlMain.SuspendLayout(); this.tabPageStatTesting.SuspendLayout(); this.groupBox8.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.radarChart1)).BeginInit(); this.panelWildTamedBredTester.SuspendLayout(); this.groupBox2.SuspendLayout(); this.groupBox5.SuspendLayout(); this.tabPageExtractor.SuspendLayout(); this.groupBoxRadarChartExtractor.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.radarChartExtractor)).BeginInit(); this.groupBoxTamingInfo.SuspendLayout(); this.groupBox7.SuspendLayout(); this.tabPageLibrary.SuspendLayout(); @@ -302,8 +304,6 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.statTestingTamingEffectiveness)).BeginInit(); this.toolStrip2.SuspendLayout(); this.panelToolBar.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.radarChart1)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.radarChartExtractor)).BeginInit(); this.SuspendLayout(); // // aboutToolStripMenuItem @@ -1067,6 +1067,13 @@ private void InitializeComponent() this.tabPageStatTesting.Text = "Stat Testing"; this.tabPageStatTesting.UseVisualStyleBackColor = true; // + // statPotentials1 + // + this.statPotentials1.Location = new System.Drawing.Point(556, 243); + this.statPotentials1.Name = "statPotentials1"; + this.statPotentials1.Size = new System.Drawing.Size(293, 361); + this.statPotentials1.TabIndex = 12; + // // groupBox8 // this.groupBox8.Controls.Add(this.radarChart1); @@ -1077,6 +1084,16 @@ private void InitializeComponent() this.groupBox8.TabStop = false; this.groupBox8.Text = "Stat-Chart"; // + // radarChart1 + // + this.radarChart1.Image = ((System.Drawing.Image)(resources.GetObject("radarChart1.Image"))); + this.radarChart1.Location = new System.Drawing.Point(6, 19); + this.radarChart1.Name = "radarChart1"; + this.radarChart1.Size = new System.Drawing.Size(200, 200); + this.radarChart1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage; + this.radarChart1.TabIndex = 10; + this.radarChart1.TabStop = false; + // // panelWildTamedBredTester // this.panelWildTamedBredTester.Controls.Add(this.radioButtonTesterBred); @@ -1155,6 +1172,24 @@ private void InitializeComponent() this.labelTesterTotalLevel.TabIndex = 49; this.labelTesterTotalLevel.Text = "Total Level"; // + // statTestingHealth + // + this.statTestingHealth.BackColor = System.Drawing.Color.Transparent; + this.statTestingHealth.BreedingValue = 0D; + this.statTestingHealth.DomLevelZero = false; + this.statTestingHealth.ForeColor = System.Drawing.SystemColors.ControlText; + this.statTestingHealth.Input = 100D; + this.statTestingHealth.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; + this.statTestingHealth.LevelDom = 0; + this.statTestingHealth.LevelWild = 0; + this.statTestingHealth.Location = new System.Drawing.Point(6, 32); + this.statTestingHealth.Name = "statTestingHealth"; + this.statTestingHealth.Percent = false; + this.statTestingHealth.Size = new System.Drawing.Size(295, 50); + this.statTestingHealth.Status = ARKBreedingStats.StatIOStatus.Neutral; + this.statTestingHealth.TabIndex = 0; + this.statTestingHealth.Unknown = false; + // // labelDomLevelSum // this.labelDomLevelSum.AutoSize = true; @@ -1164,6 +1199,42 @@ private void InitializeComponent() this.labelDomLevelSum.TabIndex = 46; this.labelDomLevelSum.Text = "Dom Levels"; // + // statTestingStamina + // + this.statTestingStamina.BackColor = System.Drawing.Color.Transparent; + this.statTestingStamina.BreedingValue = 0D; + this.statTestingStamina.DomLevelZero = false; + this.statTestingStamina.ForeColor = System.Drawing.SystemColors.ControlText; + this.statTestingStamina.Input = 100D; + this.statTestingStamina.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; + this.statTestingStamina.LevelDom = 0; + this.statTestingStamina.LevelWild = 0; + this.statTestingStamina.Location = new System.Drawing.Point(6, 82); + this.statTestingStamina.Name = "statTestingStamina"; + this.statTestingStamina.Percent = false; + this.statTestingStamina.Size = new System.Drawing.Size(295, 50); + this.statTestingStamina.Status = ARKBreedingStats.StatIOStatus.Neutral; + this.statTestingStamina.TabIndex = 1; + this.statTestingStamina.Unknown = false; + // + // statTestingOxygen + // + this.statTestingOxygen.BackColor = System.Drawing.Color.Transparent; + this.statTestingOxygen.BreedingValue = 0D; + this.statTestingOxygen.DomLevelZero = false; + this.statTestingOxygen.ForeColor = System.Drawing.SystemColors.ControlText; + this.statTestingOxygen.Input = 100D; + this.statTestingOxygen.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; + this.statTestingOxygen.LevelDom = 0; + this.statTestingOxygen.LevelWild = 0; + this.statTestingOxygen.Location = new System.Drawing.Point(6, 132); + this.statTestingOxygen.Name = "statTestingOxygen"; + this.statTestingOxygen.Percent = false; + this.statTestingOxygen.Size = new System.Drawing.Size(295, 50); + this.statTestingOxygen.Status = ARKBreedingStats.StatIOStatus.Neutral; + this.statTestingOxygen.TabIndex = 2; + this.statTestingOxygen.Unknown = false; + // // labelNotTamedNoteTesting // this.labelNotTamedNoteTesting.Location = new System.Drawing.Point(6, 469); @@ -1173,6 +1244,24 @@ private void InitializeComponent() this.labelNotTamedNoteTesting.Text = "*Creature is not yet tamed and may get better values then."; this.labelNotTamedNoteTesting.Visible = false; // + // statTestingFood + // + this.statTestingFood.BackColor = System.Drawing.Color.Transparent; + this.statTestingFood.BreedingValue = 0D; + this.statTestingFood.DomLevelZero = false; + this.statTestingFood.ForeColor = System.Drawing.SystemColors.ControlText; + this.statTestingFood.Input = 100D; + this.statTestingFood.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; + this.statTestingFood.LevelDom = 0; + this.statTestingFood.LevelWild = 0; + this.statTestingFood.Location = new System.Drawing.Point(6, 182); + this.statTestingFood.Name = "statTestingFood"; + this.statTestingFood.Percent = false; + this.statTestingFood.Size = new System.Drawing.Size(295, 50); + this.statTestingFood.Status = ARKBreedingStats.StatIOStatus.Neutral; + this.statTestingFood.TabIndex = 3; + this.statTestingFood.Unknown = false; + // // label10 // this.label10.AutoSize = true; @@ -1182,6 +1271,78 @@ private void InitializeComponent() this.label10.TabIndex = 36; this.label10.Text = "Current Value"; // + // statTestingWeight + // + this.statTestingWeight.BackColor = System.Drawing.Color.Transparent; + this.statTestingWeight.BreedingValue = 0D; + this.statTestingWeight.DomLevelZero = false; + this.statTestingWeight.ForeColor = System.Drawing.SystemColors.ControlText; + this.statTestingWeight.Input = 100D; + this.statTestingWeight.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; + this.statTestingWeight.LevelDom = 0; + this.statTestingWeight.LevelWild = 0; + this.statTestingWeight.Location = new System.Drawing.Point(6, 232); + this.statTestingWeight.Name = "statTestingWeight"; + this.statTestingWeight.Percent = false; + this.statTestingWeight.Size = new System.Drawing.Size(295, 50); + this.statTestingWeight.Status = ARKBreedingStats.StatIOStatus.Neutral; + this.statTestingWeight.TabIndex = 4; + this.statTestingWeight.Unknown = false; + // + // statTestingDamage + // + this.statTestingDamage.BackColor = System.Drawing.Color.Transparent; + this.statTestingDamage.BreedingValue = 0D; + this.statTestingDamage.DomLevelZero = false; + this.statTestingDamage.ForeColor = System.Drawing.SystemColors.ControlText; + this.statTestingDamage.Input = 100D; + this.statTestingDamage.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; + this.statTestingDamage.LevelDom = 0; + this.statTestingDamage.LevelWild = 0; + this.statTestingDamage.Location = new System.Drawing.Point(6, 282); + this.statTestingDamage.Name = "statTestingDamage"; + this.statTestingDamage.Percent = false; + this.statTestingDamage.Size = new System.Drawing.Size(295, 50); + this.statTestingDamage.Status = ARKBreedingStats.StatIOStatus.Neutral; + this.statTestingDamage.TabIndex = 5; + this.statTestingDamage.Unknown = false; + // + // statTestingSpeed + // + this.statTestingSpeed.BackColor = System.Drawing.Color.Transparent; + this.statTestingSpeed.BreedingValue = 0D; + this.statTestingSpeed.DomLevelZero = false; + this.statTestingSpeed.ForeColor = System.Drawing.SystemColors.ControlText; + this.statTestingSpeed.Input = 100D; + this.statTestingSpeed.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; + this.statTestingSpeed.LevelDom = 0; + this.statTestingSpeed.LevelWild = 0; + this.statTestingSpeed.Location = new System.Drawing.Point(6, 332); + this.statTestingSpeed.Name = "statTestingSpeed"; + this.statTestingSpeed.Percent = false; + this.statTestingSpeed.Size = new System.Drawing.Size(295, 50); + this.statTestingSpeed.Status = ARKBreedingStats.StatIOStatus.Neutral; + this.statTestingSpeed.TabIndex = 6; + this.statTestingSpeed.Unknown = false; + // + // statTestingTorpor + // + this.statTestingTorpor.BackColor = System.Drawing.Color.Transparent; + this.statTestingTorpor.BreedingValue = 0D; + this.statTestingTorpor.DomLevelZero = false; + this.statTestingTorpor.ForeColor = System.Drawing.SystemColors.ControlText; + this.statTestingTorpor.Input = 100D; + this.statTestingTorpor.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; + this.statTestingTorpor.LevelDom = 0; + this.statTestingTorpor.LevelWild = 0; + this.statTestingTorpor.Location = new System.Drawing.Point(6, 382); + this.statTestingTorpor.Name = "statTestingTorpor"; + this.statTestingTorpor.Percent = false; + this.statTestingTorpor.Size = new System.Drawing.Size(295, 50); + this.statTestingTorpor.Status = ARKBreedingStats.StatIOStatus.Neutral; + this.statTestingTorpor.TabIndex = 7; + this.statTestingTorpor.Unknown = false; + // // groupBox5 // this.groupBox5.Controls.Add(this.labelCurrentTesterCreature); @@ -1210,6 +1371,29 @@ private void InitializeComponent() this.labelTestingInfo.TabIndex = 37; this.labelTestingInfo.Text = "Preview or edit levels of a creature."; // + // creatureInfoInputTester + // + this.creatureInfoInputTester.Cooldown = new System.DateTime(2017, 6, 3, 12, 49, 58, 749); + this.creatureInfoInputTester.CreatureName = ""; + this.creatureInfoInputTester.CreatureNote = ""; + this.creatureInfoInputTester.CreatureOwner = ""; + this.creatureInfoInputTester.CreatureSex = ARKBreedingStats.Sex.Unknown; + this.creatureInfoInputTester.CreatureStatus = ARKBreedingStats.CreatureStatus.Available; + this.creatureInfoInputTester.CreatureTribe = ""; + this.creatureInfoInputTester.domesticatedAt = new System.DateTime(2016, 7, 5, 13, 11, 41, 997); + this.creatureInfoInputTester.father = null; + this.creatureInfoInputTester.Grown = new System.DateTime(2017, 6, 3, 12, 49, 58, 749); + this.creatureInfoInputTester.Location = new System.Drawing.Point(321, 184); + this.creatureInfoInputTester.mother = null; + this.creatureInfoInputTester.MutationCounter = 0; + this.creatureInfoInputTester.Name = "creatureInfoInputTester"; + this.creatureInfoInputTester.Neutered = false; + this.creatureInfoInputTester.Size = new System.Drawing.Size(229, 383); + this.creatureInfoInputTester.TabIndex = 4; + this.creatureInfoInputTester.Add2Library_Clicked += new ARKBreedingStats.CreatureInfoInput.Add2LibraryClickedEventHandler(this.creatureInfoInputTester_Add2Library_Clicked); + this.creatureInfoInputTester.Save2Library_Clicked += new ARKBreedingStats.CreatureInfoInput.Save2LibraryClickedEventHandler(this.creatureInfoInputTester_Save2Library_Clicked); + this.creatureInfoInputTester.ParentListRequested += new ARKBreedingStats.CreatureInfoInput.RequestParentListEventHandler(this.creatureInfoInput_ParentListRequested); + // // tabPageExtractor // this.tabPageExtractor.AllowDrop = true; @@ -1251,16 +1435,27 @@ private void InitializeComponent() this.groupBoxRadarChartExtractor.TabStop = false; this.groupBoxRadarChartExtractor.Text = "Stat-Chart"; // - // labelImprintingFailInfo + // radarChartExtractor // - this.labelImprintingFailInfo.BackColor = System.Drawing.Color.MistyRose; - this.labelImprintingFailInfo.ForeColor = System.Drawing.Color.Maroon; - this.labelImprintingFailInfo.Location = new System.Drawing.Point(8, 532); - this.labelImprintingFailInfo.Name = "labelImprintingFailInfo"; - this.labelImprintingFailInfo.Size = new System.Drawing.Size(307, 48); - this.labelImprintingFailInfo.TabIndex = 49; - this.labelImprintingFailInfo.Text = "If the creature is imprinted the extraction may fail because the game sometimes \"" + - "forgets\" to increase some stat-values during the imprinting-process. Usually it " + + this.radarChartExtractor.Dock = System.Windows.Forms.DockStyle.Fill; + this.radarChartExtractor.Image = ((System.Drawing.Image)(resources.GetObject("radarChartExtractor.Image"))); + this.radarChartExtractor.Location = new System.Drawing.Point(3, 16); + this.radarChartExtractor.Name = "radarChartExtractor"; + this.radarChartExtractor.Size = new System.Drawing.Size(144, 144); + this.radarChartExtractor.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage; + this.radarChartExtractor.TabIndex = 10; + this.radarChartExtractor.TabStop = false; + // + // labelImprintingFailInfo + // + this.labelImprintingFailInfo.BackColor = System.Drawing.Color.MistyRose; + this.labelImprintingFailInfo.ForeColor = System.Drawing.Color.Maroon; + this.labelImprintingFailInfo.Location = new System.Drawing.Point(8, 532); + this.labelImprintingFailInfo.Name = "labelImprintingFailInfo"; + this.labelImprintingFailInfo.Size = new System.Drawing.Size(307, 48); + this.labelImprintingFailInfo.TabIndex = 49; + this.labelImprintingFailInfo.Text = "If the creature is imprinted the extraction may fail because the game sometimes \"" + + "forgets\" to increase some stat-values during the imprinting-process. Usually it " + "works after a server-restart."; this.labelImprintingFailInfo.Visible = false; // @@ -1315,6 +1510,157 @@ private void InitializeComponent() this.groupBox7.TabStop = false; this.groupBox7.Text = "Stats"; // + // statIOHealth + // + this.statIOHealth.BackColor = System.Drawing.Color.Transparent; + this.statIOHealth.BreedingValue = 0D; + this.statIOHealth.DomLevelZero = false; + this.statIOHealth.ForeColor = System.Drawing.SystemColors.ControlText; + this.statIOHealth.Input = 100D; + this.statIOHealth.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; + this.statIOHealth.LevelDom = 0; + this.statIOHealth.LevelWild = 0; + this.statIOHealth.Location = new System.Drawing.Point(6, 32); + this.statIOHealth.Name = "statIOHealth"; + this.statIOHealth.Percent = false; + this.statIOHealth.Size = new System.Drawing.Size(295, 50); + this.statIOHealth.Status = ARKBreedingStats.StatIOStatus.Neutral; + this.statIOHealth.TabIndex = 0; + this.statIOHealth.Unknown = false; + this.statIOHealth.Click += new System.EventHandler(this.statIO_Click); + // + // statIODamage + // + this.statIODamage.BackColor = System.Drawing.Color.Transparent; + this.statIODamage.BreedingValue = 0D; + this.statIODamage.DomLevelZero = false; + this.statIODamage.ForeColor = System.Drawing.SystemColors.ControlText; + this.statIODamage.Input = 100D; + this.statIODamage.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; + this.statIODamage.LevelDom = 0; + this.statIODamage.LevelWild = 0; + this.statIODamage.Location = new System.Drawing.Point(6, 282); + this.statIODamage.Name = "statIODamage"; + this.statIODamage.Percent = false; + this.statIODamage.Size = new System.Drawing.Size(295, 50); + this.statIODamage.Status = ARKBreedingStats.StatIOStatus.Neutral; + this.statIODamage.TabIndex = 5; + this.statIODamage.Unknown = false; + this.statIODamage.Click += new System.EventHandler(this.statIO_Click); + // + // statIOTorpor + // + this.statIOTorpor.BackColor = System.Drawing.Color.Transparent; + this.statIOTorpor.BreedingValue = 0D; + this.statIOTorpor.DomLevelZero = false; + this.statIOTorpor.ForeColor = System.Drawing.SystemColors.ControlText; + this.statIOTorpor.Input = 100D; + this.statIOTorpor.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; + this.statIOTorpor.LevelDom = 0; + this.statIOTorpor.LevelWild = 0; + this.statIOTorpor.Location = new System.Drawing.Point(6, 382); + this.statIOTorpor.Name = "statIOTorpor"; + this.statIOTorpor.Percent = false; + this.statIOTorpor.Size = new System.Drawing.Size(295, 50); + this.statIOTorpor.Status = ARKBreedingStats.StatIOStatus.Neutral; + this.statIOTorpor.TabIndex = 7; + this.statIOTorpor.Unknown = false; + // + // statIOWeight + // + this.statIOWeight.BackColor = System.Drawing.Color.Transparent; + this.statIOWeight.BreedingValue = 0D; + this.statIOWeight.DomLevelZero = false; + this.statIOWeight.ForeColor = System.Drawing.SystemColors.ControlText; + this.statIOWeight.Input = 100D; + this.statIOWeight.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; + this.statIOWeight.LevelDom = 0; + this.statIOWeight.LevelWild = 0; + this.statIOWeight.Location = new System.Drawing.Point(6, 232); + this.statIOWeight.Name = "statIOWeight"; + this.statIOWeight.Percent = false; + this.statIOWeight.Size = new System.Drawing.Size(295, 50); + this.statIOWeight.Status = ARKBreedingStats.StatIOStatus.Neutral; + this.statIOWeight.TabIndex = 4; + this.statIOWeight.Unknown = false; + this.statIOWeight.Click += new System.EventHandler(this.statIO_Click); + // + // statIOSpeed + // + this.statIOSpeed.BackColor = System.Drawing.Color.Transparent; + this.statIOSpeed.BreedingValue = 0D; + this.statIOSpeed.DomLevelZero = false; + this.statIOSpeed.ForeColor = System.Drawing.SystemColors.ControlText; + this.statIOSpeed.Input = 100D; + this.statIOSpeed.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; + this.statIOSpeed.LevelDom = 0; + this.statIOSpeed.LevelWild = 0; + this.statIOSpeed.Location = new System.Drawing.Point(6, 332); + this.statIOSpeed.Name = "statIOSpeed"; + this.statIOSpeed.Percent = false; + this.statIOSpeed.Size = new System.Drawing.Size(295, 50); + this.statIOSpeed.Status = ARKBreedingStats.StatIOStatus.Neutral; + this.statIOSpeed.TabIndex = 6; + this.statIOSpeed.Unknown = false; + this.statIOSpeed.Click += new System.EventHandler(this.statIO_Click); + // + // statIOFood + // + this.statIOFood.BackColor = System.Drawing.Color.Transparent; + this.statIOFood.BreedingValue = 0D; + this.statIOFood.DomLevelZero = false; + this.statIOFood.ForeColor = System.Drawing.SystemColors.ControlText; + this.statIOFood.Input = 100D; + this.statIOFood.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; + this.statIOFood.LevelDom = 0; + this.statIOFood.LevelWild = 0; + this.statIOFood.Location = new System.Drawing.Point(6, 182); + this.statIOFood.Name = "statIOFood"; + this.statIOFood.Percent = false; + this.statIOFood.Size = new System.Drawing.Size(295, 50); + this.statIOFood.Status = ARKBreedingStats.StatIOStatus.Neutral; + this.statIOFood.TabIndex = 3; + this.statIOFood.Unknown = false; + this.statIOFood.Click += new System.EventHandler(this.statIO_Click); + // + // statIOOxygen + // + this.statIOOxygen.BackColor = System.Drawing.Color.Transparent; + this.statIOOxygen.BreedingValue = 0D; + this.statIOOxygen.DomLevelZero = false; + this.statIOOxygen.ForeColor = System.Drawing.SystemColors.ControlText; + this.statIOOxygen.Input = 100D; + this.statIOOxygen.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; + this.statIOOxygen.LevelDom = 0; + this.statIOOxygen.LevelWild = 0; + this.statIOOxygen.Location = new System.Drawing.Point(6, 132); + this.statIOOxygen.Name = "statIOOxygen"; + this.statIOOxygen.Percent = false; + this.statIOOxygen.Size = new System.Drawing.Size(295, 50); + this.statIOOxygen.Status = ARKBreedingStats.StatIOStatus.Neutral; + this.statIOOxygen.TabIndex = 2; + this.statIOOxygen.Unknown = false; + this.statIOOxygen.Click += new System.EventHandler(this.statIO_Click); + // + // statIOStamina + // + this.statIOStamina.BackColor = System.Drawing.Color.Transparent; + this.statIOStamina.BreedingValue = 0D; + this.statIOStamina.DomLevelZero = false; + this.statIOStamina.ForeColor = System.Drawing.SystemColors.ControlText; + this.statIOStamina.Input = 100D; + this.statIOStamina.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; + this.statIOStamina.LevelDom = 0; + this.statIOStamina.LevelWild = 0; + this.statIOStamina.Location = new System.Drawing.Point(6, 82); + this.statIOStamina.Name = "statIOStamina"; + this.statIOStamina.Percent = false; + this.statIOStamina.Size = new System.Drawing.Size(295, 50); + this.statIOStamina.Status = ARKBreedingStats.StatIOStatus.Neutral; + this.statIOStamina.TabIndex = 1; + this.statIOStamina.Unknown = false; + this.statIOStamina.Click += new System.EventHandler(this.statIO_Click); + // // buttonExtract // this.buttonExtract.Location = new System.Drawing.Point(321, 110); @@ -1338,7 +1684,7 @@ private void InitializeComponent() // // buttonHelp // - this.buttonHelp.Location = new System.Drawing.Point(559, 531); + this.buttonHelp.Location = new System.Drawing.Point(348, 573); this.buttonHelp.Name = "buttonHelp"; this.buttonHelp.Size = new System.Drawing.Size(202, 30); this.buttonHelp.TabIndex = 10; @@ -1351,10 +1697,32 @@ private void InitializeComponent() // this.labelErrorHelp.Location = new System.Drawing.Point(556, 43); this.labelErrorHelp.Name = "labelErrorHelp"; - this.labelErrorHelp.Size = new System.Drawing.Size(205, 485); + this.labelErrorHelp.Size = new System.Drawing.Size(205, 565); this.labelErrorHelp.TabIndex = 40; this.labelErrorHelp.Text = resources.GetString("labelErrorHelp.Text"); // + // creatureInfoInputExtractor + // + this.creatureInfoInputExtractor.Cooldown = new System.DateTime(2017, 6, 3, 12, 49, 58, 788); + this.creatureInfoInputExtractor.CreatureName = ""; + this.creatureInfoInputExtractor.CreatureNote = ""; + this.creatureInfoInputExtractor.CreatureOwner = ""; + this.creatureInfoInputExtractor.CreatureSex = ARKBreedingStats.Sex.Unknown; + this.creatureInfoInputExtractor.CreatureStatus = ARKBreedingStats.CreatureStatus.Available; + this.creatureInfoInputExtractor.CreatureTribe = ""; + this.creatureInfoInputExtractor.domesticatedAt = new System.DateTime(2016, 7, 5, 13, 12, 15, 968); + this.creatureInfoInputExtractor.father = null; + this.creatureInfoInputExtractor.Grown = new System.DateTime(2017, 6, 3, 12, 49, 58, 788); + this.creatureInfoInputExtractor.Location = new System.Drawing.Point(321, 184); + this.creatureInfoInputExtractor.mother = null; + this.creatureInfoInputExtractor.MutationCounter = 0; + this.creatureInfoInputExtractor.Name = "creatureInfoInputExtractor"; + this.creatureInfoInputExtractor.Neutered = false; + this.creatureInfoInputExtractor.Size = new System.Drawing.Size(229, 383); + this.creatureInfoInputExtractor.TabIndex = 7; + this.creatureInfoInputExtractor.Add2Library_Clicked += new ARKBreedingStats.CreatureInfoInput.Add2LibraryClickedEventHandler(this.creatureInfoInput1_Add2Library_Clicked); + this.creatureInfoInputExtractor.ParentListRequested += new ARKBreedingStats.CreatureInfoInput.RequestParentListEventHandler(this.creatureInfoInput_ParentListRequested); + // // tabPageLibrary // this.tabPageLibrary.AutoScroll = true; @@ -1426,7 +1794,7 @@ private void InitializeComponent() this.tabPage2.Location = new System.Drawing.Point(4, 22); this.tabPage2.Name = "tabPage2"; this.tabPage2.Padding = new System.Windows.Forms.Padding(3); - this.tabPage2.Size = new System.Drawing.Size(187, 195); + this.tabPage2.Size = new System.Drawing.Size(187, 0); this.tabPage2.TabIndex = 1; this.tabPage2.Text = "Owner"; this.tabPage2.UseVisualStyleBackColor = true; @@ -1438,7 +1806,7 @@ private void InitializeComponent() this.checkedListBoxOwner.FormattingEnabled = true; this.checkedListBoxOwner.Location = new System.Drawing.Point(3, 3); this.checkedListBoxOwner.Name = "checkedListBoxOwner"; - this.checkedListBoxOwner.Size = new System.Drawing.Size(181, 189); + this.checkedListBoxOwner.Size = new System.Drawing.Size(181, 0); this.checkedListBoxOwner.TabIndex = 0; this.checkedListBoxOwner.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.checkedListBoxOwner_ItemCheck); // @@ -1448,7 +1816,7 @@ private void InitializeComponent() this.tabPage3.Location = new System.Drawing.Point(4, 22); this.tabPage3.Name = "tabPage3"; this.tabPage3.Padding = new System.Windows.Forms.Padding(3); - this.tabPage3.Size = new System.Drawing.Size(187, 195); + this.tabPage3.Size = new System.Drawing.Size(187, 0); this.tabPage3.TabIndex = 2; this.tabPage3.Text = "Stats"; this.tabPage3.UseVisualStyleBackColor = true; @@ -1467,7 +1835,7 @@ private void InitializeComponent() this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 32F)); this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 29F)); - this.tableLayoutPanel2.Size = new System.Drawing.Size(181, 189); + this.tableLayoutPanel2.Size = new System.Drawing.Size(181, 0); this.tableLayoutPanel2.TabIndex = 0; // // checkedListBoxConsiderStatTop @@ -1486,13 +1854,13 @@ private void InitializeComponent() "Torpor"}); this.checkedListBoxConsiderStatTop.Location = new System.Drawing.Point(3, 35); this.checkedListBoxConsiderStatTop.Name = "checkedListBoxConsiderStatTop"; - this.checkedListBoxConsiderStatTop.Size = new System.Drawing.Size(175, 122); + this.checkedListBoxConsiderStatTop.Size = new System.Drawing.Size(175, 1); this.checkedListBoxConsiderStatTop.TabIndex = 3; // // buttonRecalculateTops // this.buttonRecalculateTops.Dock = System.Windows.Forms.DockStyle.Fill; - this.buttonRecalculateTops.Location = new System.Drawing.Point(3, 163); + this.buttonRecalculateTops.Location = new System.Drawing.Point(3, -25); this.buttonRecalculateTops.Name = "buttonRecalculateTops"; this.buttonRecalculateTops.Size = new System.Drawing.Size(175, 23); this.buttonRecalculateTops.TabIndex = 2; @@ -1519,7 +1887,7 @@ private void InitializeComponent() this.tabPage4.Location = new System.Drawing.Point(4, 22); this.tabPage4.Name = "tabPage4"; this.tabPage4.Padding = new System.Windows.Forms.Padding(3); - this.tabPage4.Size = new System.Drawing.Size(187, 195); + this.tabPage4.Size = new System.Drawing.Size(187, 0); this.tabPage4.TabIndex = 3; this.tabPage4.Text = "View"; this.tabPage4.UseVisualStyleBackColor = true; @@ -1886,6 +2254,15 @@ private void InitializeComponent() this.toolStripMenuItemRemove.Text = "Delete creature..."; this.toolStripMenuItemRemove.Click += new System.EventHandler(this.toolStripMenuItemRemove_Click); // + // creatureBoxListView + // + this.creatureBoxListView.Location = new System.Drawing.Point(3, 3); + this.creatureBoxListView.Name = "creatureBoxListView"; + this.creatureBoxListView.Size = new System.Drawing.Size(195, 390); + this.creatureBoxListView.TabIndex = 0; + this.creatureBoxListView.Changed += new ARKBreedingStats.CreatureBox.ChangedEventHandler(this.updateCreatureValues); + this.creatureBoxListView.GiveParents += new ARKBreedingStats.CreatureBox.EventHandler(this.creatureBoxListView_FindParents); + // // tabPagePedigree // this.tabPagePedigree.Controls.Add(this.pedigree1); @@ -1897,6 +2274,15 @@ private void InitializeComponent() this.tabPagePedigree.Text = "Pedigree"; this.tabPagePedigree.UseVisualStyleBackColor = true; // + // pedigree1 + // + this.pedigree1.AutoScroll = true; + this.pedigree1.Dock = System.Windows.Forms.DockStyle.Fill; + this.pedigree1.Location = new System.Drawing.Point(3, 3); + this.pedigree1.Name = "pedigree1"; + this.pedigree1.Size = new System.Drawing.Size(907, 623); + this.pedigree1.TabIndex = 0; + // // tabPageTaming // this.tabPageTaming.Controls.Add(this.tamingControl1); @@ -1908,6 +2294,23 @@ private void InitializeComponent() this.tabPageTaming.Text = "Taming"; this.tabPageTaming.UseVisualStyleBackColor = true; // + // tamingControl1 + // + this.tamingControl1.AutoScroll = true; + this.tamingControl1.Dock = System.Windows.Forms.DockStyle.Fill; + this.tamingControl1.Location = new System.Drawing.Point(3, 3); + this.tamingControl1.Name = "tamingControl1"; + this.tamingControl1.Size = new System.Drawing.Size(907, 623); + this.tamingControl1.TabIndex = 0; + this.tamingControl1.weaponDamages = new double[] { + 100D, + 100D, + 100D, + 100D, + 100D, + 100D}; + this.tamingControl1.weaponDamagesEnabled = 3; + // // tabPageBreedingPlan // this.tabPageBreedingPlan.Controls.Add(this.breedingPlan1); @@ -1919,6 +2322,16 @@ private void InitializeComponent() this.tabPageBreedingPlan.Text = "Breeding Plan"; this.tabPageBreedingPlan.UseVisualStyleBackColor = true; // + // breedingPlan1 + // + this.breedingPlan1.AutoScroll = true; + this.breedingPlan1.CurrentSpecies = null; + this.breedingPlan1.Dock = System.Windows.Forms.DockStyle.Fill; + this.breedingPlan1.Location = new System.Drawing.Point(3, 3); + this.breedingPlan1.Name = "breedingPlan1"; + this.breedingPlan1.Size = new System.Drawing.Size(907, 623); + this.breedingPlan1.TabIndex = 0; + // // tabPageRaising // this.tabPageRaising.Controls.Add(this.raisingControl1); @@ -1930,6 +2343,15 @@ private void InitializeComponent() this.tabPageRaising.Text = "Raising"; this.tabPageRaising.UseVisualStyleBackColor = true; // + // raisingControl1 + // + this.raisingControl1.AutoScroll = true; + this.raisingControl1.Dock = System.Windows.Forms.DockStyle.Fill; + this.raisingControl1.Location = new System.Drawing.Point(3, 3); + this.raisingControl1.Name = "raisingControl1"; + this.raisingControl1.Size = new System.Drawing.Size(907, 623); + this.raisingControl1.TabIndex = 0; + // // tabPageTimer // this.tabPageTimer.Controls.Add(this.timerList1); @@ -1941,6 +2363,14 @@ private void InitializeComponent() this.tabPageTimer.Text = "Timer"; this.tabPageTimer.UseVisualStyleBackColor = true; // + // timerList1 + // + this.timerList1.Dock = System.Windows.Forms.DockStyle.Fill; + this.timerList1.Location = new System.Drawing.Point(3, 3); + this.timerList1.Name = "timerList1"; + this.timerList1.Size = new System.Drawing.Size(907, 623); + this.timerList1.TabIndex = 0; + // // tabPagePlayerTribes // this.tabPagePlayerTribes.Controls.Add(this.tribesControl1); @@ -1952,10 +2382,18 @@ private void InitializeComponent() this.tabPagePlayerTribes.Text = "Player"; this.tabPagePlayerTribes.UseVisualStyleBackColor = true; // - // tabPageNotes + // tribesControl1 // - this.tabPageNotes.Controls.Add(this.notesControl1); - this.tabPageNotes.Location = new System.Drawing.Point(4, 22); + this.tribesControl1.Dock = System.Windows.Forms.DockStyle.Fill; + this.tribesControl1.Location = new System.Drawing.Point(3, 3); + this.tribesControl1.Name = "tribesControl1"; + this.tribesControl1.Size = new System.Drawing.Size(907, 623); + this.tribesControl1.TabIndex = 0; + // + // tabPageNotes + // + this.tabPageNotes.Controls.Add(this.notesControl1); + this.tabPageNotes.Location = new System.Drawing.Point(4, 22); this.tabPageNotes.Name = "tabPageNotes"; this.tabPageNotes.Padding = new System.Windows.Forms.Padding(3); this.tabPageNotes.Size = new System.Drawing.Size(913, 629); @@ -1963,6 +2401,15 @@ private void InitializeComponent() this.tabPageNotes.Text = "Notes"; this.tabPageNotes.UseVisualStyleBackColor = true; // + // notesControl1 + // + this.notesControl1.Dock = System.Windows.Forms.DockStyle.Fill; + this.notesControl1.Location = new System.Drawing.Point(3, 3); + this.notesControl1.Name = "notesControl1"; + this.notesControl1.NoteList = null; + this.notesControl1.Size = new System.Drawing.Size(907, 623); + this.notesControl1.TabIndex = 0; + // // TabPageOCR // this.TabPageOCR.Controls.Add(this.ocrControl1); @@ -1974,6 +2421,14 @@ private void InitializeComponent() this.TabPageOCR.Text = "Experimental OCR"; this.TabPageOCR.UseVisualStyleBackColor = true; // + // ocrControl1 + // + this.ocrControl1.Dock = System.Windows.Forms.DockStyle.Fill; + this.ocrControl1.Location = new System.Drawing.Point(3, 3); + this.ocrControl1.Name = "ocrControl1"; + this.ocrControl1.Size = new System.Drawing.Size(907, 623); + this.ocrControl1.TabIndex = 2; + // // btnReadValuesFromArk // this.btnReadValuesFromArk.Location = new System.Drawing.Point(212, 3); @@ -2265,461 +2720,6 @@ private void InitializeComponent() this.comboBoxSpeciesGlobal.TabIndex = 1; this.comboBoxSpeciesGlobal.SelectedIndexChanged += new System.EventHandler(this.comboBoxSpeciesGlobal_SelectedIndexChanged); // - // statPotentials1 - // - this.statPotentials1.Location = new System.Drawing.Point(556, 243); - this.statPotentials1.Name = "statPotentials1"; - this.statPotentials1.Size = new System.Drawing.Size(293, 361); - this.statPotentials1.TabIndex = 12; - // - // radarChart1 - // - this.radarChart1.Image = ((System.Drawing.Image)(resources.GetObject("radarChart1.Image"))); - this.radarChart1.Location = new System.Drawing.Point(6, 19); - this.radarChart1.Name = "radarChart1"; - this.radarChart1.Size = new System.Drawing.Size(200, 200); - this.radarChart1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage; - this.radarChart1.TabIndex = 10; - this.radarChart1.TabStop = false; - // - // statTestingHealth - // - this.statTestingHealth.BackColor = System.Drawing.Color.Transparent; - this.statTestingHealth.BreedingValue = 0D; - this.statTestingHealth.DomLevelZero = false; - this.statTestingHealth.ForeColor = System.Drawing.SystemColors.ControlText; - this.statTestingHealth.Input = 100D; - this.statTestingHealth.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; - this.statTestingHealth.LevelDom = 0; - this.statTestingHealth.LevelWild = 0; - this.statTestingHealth.Location = new System.Drawing.Point(6, 32); - this.statTestingHealth.Name = "statTestingHealth"; - this.statTestingHealth.Percent = false; - this.statTestingHealth.Size = new System.Drawing.Size(295, 50); - this.statTestingHealth.Status = ARKBreedingStats.StatIOStatus.Neutral; - this.statTestingHealth.TabIndex = 0; - this.statTestingHealth.Unknown = false; - // - // statTestingStamina - // - this.statTestingStamina.BackColor = System.Drawing.Color.Transparent; - this.statTestingStamina.BreedingValue = 0D; - this.statTestingStamina.DomLevelZero = false; - this.statTestingStamina.ForeColor = System.Drawing.SystemColors.ControlText; - this.statTestingStamina.Input = 100D; - this.statTestingStamina.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; - this.statTestingStamina.LevelDom = 0; - this.statTestingStamina.LevelWild = 0; - this.statTestingStamina.Location = new System.Drawing.Point(6, 82); - this.statTestingStamina.Name = "statTestingStamina"; - this.statTestingStamina.Percent = false; - this.statTestingStamina.Size = new System.Drawing.Size(295, 50); - this.statTestingStamina.Status = ARKBreedingStats.StatIOStatus.Neutral; - this.statTestingStamina.TabIndex = 1; - this.statTestingStamina.Unknown = false; - // - // statTestingOxygen - // - this.statTestingOxygen.BackColor = System.Drawing.Color.Transparent; - this.statTestingOxygen.BreedingValue = 0D; - this.statTestingOxygen.DomLevelZero = false; - this.statTestingOxygen.ForeColor = System.Drawing.SystemColors.ControlText; - this.statTestingOxygen.Input = 100D; - this.statTestingOxygen.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; - this.statTestingOxygen.LevelDom = 0; - this.statTestingOxygen.LevelWild = 0; - this.statTestingOxygen.Location = new System.Drawing.Point(6, 132); - this.statTestingOxygen.Name = "statTestingOxygen"; - this.statTestingOxygen.Percent = false; - this.statTestingOxygen.Size = new System.Drawing.Size(295, 50); - this.statTestingOxygen.Status = ARKBreedingStats.StatIOStatus.Neutral; - this.statTestingOxygen.TabIndex = 2; - this.statTestingOxygen.Unknown = false; - // - // statTestingFood - // - this.statTestingFood.BackColor = System.Drawing.Color.Transparent; - this.statTestingFood.BreedingValue = 0D; - this.statTestingFood.DomLevelZero = false; - this.statTestingFood.ForeColor = System.Drawing.SystemColors.ControlText; - this.statTestingFood.Input = 100D; - this.statTestingFood.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; - this.statTestingFood.LevelDom = 0; - this.statTestingFood.LevelWild = 0; - this.statTestingFood.Location = new System.Drawing.Point(6, 182); - this.statTestingFood.Name = "statTestingFood"; - this.statTestingFood.Percent = false; - this.statTestingFood.Size = new System.Drawing.Size(295, 50); - this.statTestingFood.Status = ARKBreedingStats.StatIOStatus.Neutral; - this.statTestingFood.TabIndex = 3; - this.statTestingFood.Unknown = false; - // - // statTestingWeight - // - this.statTestingWeight.BackColor = System.Drawing.Color.Transparent; - this.statTestingWeight.BreedingValue = 0D; - this.statTestingWeight.DomLevelZero = false; - this.statTestingWeight.ForeColor = System.Drawing.SystemColors.ControlText; - this.statTestingWeight.Input = 100D; - this.statTestingWeight.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; - this.statTestingWeight.LevelDom = 0; - this.statTestingWeight.LevelWild = 0; - this.statTestingWeight.Location = new System.Drawing.Point(6, 232); - this.statTestingWeight.Name = "statTestingWeight"; - this.statTestingWeight.Percent = false; - this.statTestingWeight.Size = new System.Drawing.Size(295, 50); - this.statTestingWeight.Status = ARKBreedingStats.StatIOStatus.Neutral; - this.statTestingWeight.TabIndex = 4; - this.statTestingWeight.Unknown = false; - // - // statTestingDamage - // - this.statTestingDamage.BackColor = System.Drawing.Color.Transparent; - this.statTestingDamage.BreedingValue = 0D; - this.statTestingDamage.DomLevelZero = false; - this.statTestingDamage.ForeColor = System.Drawing.SystemColors.ControlText; - this.statTestingDamage.Input = 100D; - this.statTestingDamage.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; - this.statTestingDamage.LevelDom = 0; - this.statTestingDamage.LevelWild = 0; - this.statTestingDamage.Location = new System.Drawing.Point(6, 282); - this.statTestingDamage.Name = "statTestingDamage"; - this.statTestingDamage.Percent = false; - this.statTestingDamage.Size = new System.Drawing.Size(295, 50); - this.statTestingDamage.Status = ARKBreedingStats.StatIOStatus.Neutral; - this.statTestingDamage.TabIndex = 5; - this.statTestingDamage.Unknown = false; - // - // statTestingSpeed - // - this.statTestingSpeed.BackColor = System.Drawing.Color.Transparent; - this.statTestingSpeed.BreedingValue = 0D; - this.statTestingSpeed.DomLevelZero = false; - this.statTestingSpeed.ForeColor = System.Drawing.SystemColors.ControlText; - this.statTestingSpeed.Input = 100D; - this.statTestingSpeed.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; - this.statTestingSpeed.LevelDom = 0; - this.statTestingSpeed.LevelWild = 0; - this.statTestingSpeed.Location = new System.Drawing.Point(6, 332); - this.statTestingSpeed.Name = "statTestingSpeed"; - this.statTestingSpeed.Percent = false; - this.statTestingSpeed.Size = new System.Drawing.Size(295, 50); - this.statTestingSpeed.Status = ARKBreedingStats.StatIOStatus.Neutral; - this.statTestingSpeed.TabIndex = 6; - this.statTestingSpeed.Unknown = false; - // - // statTestingTorpor - // - this.statTestingTorpor.BackColor = System.Drawing.Color.Transparent; - this.statTestingTorpor.BreedingValue = 0D; - this.statTestingTorpor.DomLevelZero = false; - this.statTestingTorpor.ForeColor = System.Drawing.SystemColors.ControlText; - this.statTestingTorpor.Input = 100D; - this.statTestingTorpor.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; - this.statTestingTorpor.LevelDom = 0; - this.statTestingTorpor.LevelWild = 0; - this.statTestingTorpor.Location = new System.Drawing.Point(6, 382); - this.statTestingTorpor.Name = "statTestingTorpor"; - this.statTestingTorpor.Percent = false; - this.statTestingTorpor.Size = new System.Drawing.Size(295, 50); - this.statTestingTorpor.Status = ARKBreedingStats.StatIOStatus.Neutral; - this.statTestingTorpor.TabIndex = 7; - this.statTestingTorpor.Unknown = false; - // - // creatureInfoInputTester - // - this.creatureInfoInputTester.Cooldown = new System.DateTime(2017, 4, 29, 21, 11, 40, 728); - this.creatureInfoInputTester.CreatureName = ""; - this.creatureInfoInputTester.CreatureNote = ""; - this.creatureInfoInputTester.CreatureOwner = ""; - this.creatureInfoInputTester.CreatureSex = ARKBreedingStats.Sex.Unknown; - this.creatureInfoInputTester.CreatureStatus = ARKBreedingStats.CreatureStatus.Available; - this.creatureInfoInputTester.CreatureTribe = ""; - this.creatureInfoInputTester.domesticatedAt = new System.DateTime(2016, 7, 5, 13, 11, 41, 997); - this.creatureInfoInputTester.father = null; - this.creatureInfoInputTester.Grown = new System.DateTime(2017, 4, 29, 21, 11, 40, 728); - this.creatureInfoInputTester.Location = new System.Drawing.Point(321, 184); - this.creatureInfoInputTester.mother = null; - this.creatureInfoInputTester.MutationCounter = 0; - this.creatureInfoInputTester.Name = "creatureInfoInputTester"; - this.creatureInfoInputTester.Neutered = false; - this.creatureInfoInputTester.Size = new System.Drawing.Size(229, 383); - this.creatureInfoInputTester.TabIndex = 4; - this.creatureInfoInputTester.Add2Library_Clicked += new ARKBreedingStats.CreatureInfoInput.Add2LibraryClickedEventHandler(this.creatureInfoInputTester_Add2Library_Clicked); - this.creatureInfoInputTester.Save2Library_Clicked += new ARKBreedingStats.CreatureInfoInput.Save2LibraryClickedEventHandler(this.creatureInfoInputTester_Save2Library_Clicked); - this.creatureInfoInputTester.ParentListRequested += new ARKBreedingStats.CreatureInfoInput.RequestParentListEventHandler(this.creatureInfoInput_ParentListRequested); - // - // radarChartExtractor - // - this.radarChartExtractor.Dock = System.Windows.Forms.DockStyle.Fill; - this.radarChartExtractor.Image = ((System.Drawing.Image)(resources.GetObject("radarChartExtractor.Image"))); - this.radarChartExtractor.Location = new System.Drawing.Point(3, 16); - this.radarChartExtractor.Name = "radarChartExtractor"; - this.radarChartExtractor.Size = new System.Drawing.Size(144, 144); - this.radarChartExtractor.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage; - this.radarChartExtractor.TabIndex = 10; - this.radarChartExtractor.TabStop = false; - // - // statIOHealth - // - this.statIOHealth.BackColor = System.Drawing.Color.Transparent; - this.statIOHealth.BreedingValue = 0D; - this.statIOHealth.DomLevelZero = false; - this.statIOHealth.ForeColor = System.Drawing.SystemColors.ControlText; - this.statIOHealth.Input = 100D; - this.statIOHealth.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; - this.statIOHealth.LevelDom = 0; - this.statIOHealth.LevelWild = 0; - this.statIOHealth.Location = new System.Drawing.Point(6, 32); - this.statIOHealth.Name = "statIOHealth"; - this.statIOHealth.Percent = false; - this.statIOHealth.Size = new System.Drawing.Size(295, 50); - this.statIOHealth.Status = ARKBreedingStats.StatIOStatus.Neutral; - this.statIOHealth.TabIndex = 0; - this.statIOHealth.Unknown = false; - this.statIOHealth.Click += new System.EventHandler(this.statIO_Click); - // - // statIODamage - // - this.statIODamage.BackColor = System.Drawing.Color.Transparent; - this.statIODamage.BreedingValue = 0D; - this.statIODamage.DomLevelZero = false; - this.statIODamage.ForeColor = System.Drawing.SystemColors.ControlText; - this.statIODamage.Input = 100D; - this.statIODamage.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; - this.statIODamage.LevelDom = 0; - this.statIODamage.LevelWild = 0; - this.statIODamage.Location = new System.Drawing.Point(6, 282); - this.statIODamage.Name = "statIODamage"; - this.statIODamage.Percent = false; - this.statIODamage.Size = new System.Drawing.Size(295, 50); - this.statIODamage.Status = ARKBreedingStats.StatIOStatus.Neutral; - this.statIODamage.TabIndex = 5; - this.statIODamage.Unknown = false; - this.statIODamage.Click += new System.EventHandler(this.statIO_Click); - // - // statIOTorpor - // - this.statIOTorpor.BackColor = System.Drawing.Color.Transparent; - this.statIOTorpor.BreedingValue = 0D; - this.statIOTorpor.DomLevelZero = false; - this.statIOTorpor.ForeColor = System.Drawing.SystemColors.ControlText; - this.statIOTorpor.Input = 100D; - this.statIOTorpor.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; - this.statIOTorpor.LevelDom = 0; - this.statIOTorpor.LevelWild = 0; - this.statIOTorpor.Location = new System.Drawing.Point(6, 382); - this.statIOTorpor.Name = "statIOTorpor"; - this.statIOTorpor.Percent = false; - this.statIOTorpor.Size = new System.Drawing.Size(295, 50); - this.statIOTorpor.Status = ARKBreedingStats.StatIOStatus.Neutral; - this.statIOTorpor.TabIndex = 7; - this.statIOTorpor.Unknown = false; - // - // statIOWeight - // - this.statIOWeight.BackColor = System.Drawing.Color.Transparent; - this.statIOWeight.BreedingValue = 0D; - this.statIOWeight.DomLevelZero = false; - this.statIOWeight.ForeColor = System.Drawing.SystemColors.ControlText; - this.statIOWeight.Input = 100D; - this.statIOWeight.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; - this.statIOWeight.LevelDom = 0; - this.statIOWeight.LevelWild = 0; - this.statIOWeight.Location = new System.Drawing.Point(6, 232); - this.statIOWeight.Name = "statIOWeight"; - this.statIOWeight.Percent = false; - this.statIOWeight.Size = new System.Drawing.Size(295, 50); - this.statIOWeight.Status = ARKBreedingStats.StatIOStatus.Neutral; - this.statIOWeight.TabIndex = 4; - this.statIOWeight.Unknown = false; - this.statIOWeight.Click += new System.EventHandler(this.statIO_Click); - // - // statIOSpeed - // - this.statIOSpeed.BackColor = System.Drawing.Color.Transparent; - this.statIOSpeed.BreedingValue = 0D; - this.statIOSpeed.DomLevelZero = false; - this.statIOSpeed.ForeColor = System.Drawing.SystemColors.ControlText; - this.statIOSpeed.Input = 100D; - this.statIOSpeed.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; - this.statIOSpeed.LevelDom = 0; - this.statIOSpeed.LevelWild = 0; - this.statIOSpeed.Location = new System.Drawing.Point(6, 332); - this.statIOSpeed.Name = "statIOSpeed"; - this.statIOSpeed.Percent = false; - this.statIOSpeed.Size = new System.Drawing.Size(295, 50); - this.statIOSpeed.Status = ARKBreedingStats.StatIOStatus.Neutral; - this.statIOSpeed.TabIndex = 6; - this.statIOSpeed.Unknown = false; - this.statIOSpeed.Click += new System.EventHandler(this.statIO_Click); - // - // statIOFood - // - this.statIOFood.BackColor = System.Drawing.Color.Transparent; - this.statIOFood.BreedingValue = 0D; - this.statIOFood.DomLevelZero = false; - this.statIOFood.ForeColor = System.Drawing.SystemColors.ControlText; - this.statIOFood.Input = 100D; - this.statIOFood.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; - this.statIOFood.LevelDom = 0; - this.statIOFood.LevelWild = 0; - this.statIOFood.Location = new System.Drawing.Point(6, 182); - this.statIOFood.Name = "statIOFood"; - this.statIOFood.Percent = false; - this.statIOFood.Size = new System.Drawing.Size(295, 50); - this.statIOFood.Status = ARKBreedingStats.StatIOStatus.Neutral; - this.statIOFood.TabIndex = 3; - this.statIOFood.Unknown = false; - this.statIOFood.Click += new System.EventHandler(this.statIO_Click); - // - // statIOOxygen - // - this.statIOOxygen.BackColor = System.Drawing.Color.Transparent; - this.statIOOxygen.BreedingValue = 0D; - this.statIOOxygen.DomLevelZero = false; - this.statIOOxygen.ForeColor = System.Drawing.SystemColors.ControlText; - this.statIOOxygen.Input = 100D; - this.statIOOxygen.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; - this.statIOOxygen.LevelDom = 0; - this.statIOOxygen.LevelWild = 0; - this.statIOOxygen.Location = new System.Drawing.Point(6, 132); - this.statIOOxygen.Name = "statIOOxygen"; - this.statIOOxygen.Percent = false; - this.statIOOxygen.Size = new System.Drawing.Size(295, 50); - this.statIOOxygen.Status = ARKBreedingStats.StatIOStatus.Neutral; - this.statIOOxygen.TabIndex = 2; - this.statIOOxygen.Unknown = false; - this.statIOOxygen.Click += new System.EventHandler(this.statIO_Click); - // - // statIOStamina - // - this.statIOStamina.BackColor = System.Drawing.Color.Transparent; - this.statIOStamina.BreedingValue = 0D; - this.statIOStamina.DomLevelZero = false; - this.statIOStamina.ForeColor = System.Drawing.SystemColors.ControlText; - this.statIOStamina.Input = 100D; - this.statIOStamina.InputType = ARKBreedingStats.StatIOInputType.FinalValueInputType; - this.statIOStamina.LevelDom = 0; - this.statIOStamina.LevelWild = 0; - this.statIOStamina.Location = new System.Drawing.Point(6, 82); - this.statIOStamina.Name = "statIOStamina"; - this.statIOStamina.Percent = false; - this.statIOStamina.Size = new System.Drawing.Size(295, 50); - this.statIOStamina.Status = ARKBreedingStats.StatIOStatus.Neutral; - this.statIOStamina.TabIndex = 1; - this.statIOStamina.Unknown = false; - this.statIOStamina.Click += new System.EventHandler(this.statIO_Click); - // - // creatureInfoInputExtractor - // - this.creatureInfoInputExtractor.Cooldown = new System.DateTime(2017, 4, 29, 21, 11, 40, 757); - this.creatureInfoInputExtractor.CreatureName = ""; - this.creatureInfoInputExtractor.CreatureNote = ""; - this.creatureInfoInputExtractor.CreatureOwner = ""; - this.creatureInfoInputExtractor.CreatureSex = ARKBreedingStats.Sex.Unknown; - this.creatureInfoInputExtractor.CreatureStatus = ARKBreedingStats.CreatureStatus.Available; - this.creatureInfoInputExtractor.CreatureTribe = ""; - this.creatureInfoInputExtractor.domesticatedAt = new System.DateTime(2016, 7, 5, 13, 12, 15, 968); - this.creatureInfoInputExtractor.father = null; - this.creatureInfoInputExtractor.Grown = new System.DateTime(2017, 4, 29, 21, 11, 40, 758); - this.creatureInfoInputExtractor.Location = new System.Drawing.Point(321, 184); - this.creatureInfoInputExtractor.mother = null; - this.creatureInfoInputExtractor.MutationCounter = 0; - this.creatureInfoInputExtractor.Name = "creatureInfoInputExtractor"; - this.creatureInfoInputExtractor.Neutered = false; - this.creatureInfoInputExtractor.Size = new System.Drawing.Size(229, 383); - this.creatureInfoInputExtractor.TabIndex = 7; - this.creatureInfoInputExtractor.Add2Library_Clicked += new ARKBreedingStats.CreatureInfoInput.Add2LibraryClickedEventHandler(this.creatureInfoInput1_Add2Library_Clicked); - this.creatureInfoInputExtractor.ParentListRequested += new ARKBreedingStats.CreatureInfoInput.RequestParentListEventHandler(this.creatureInfoInput_ParentListRequested); - // - // creatureBoxListView - // - this.creatureBoxListView.Location = new System.Drawing.Point(3, 3); - this.creatureBoxListView.Name = "creatureBoxListView"; - this.creatureBoxListView.Size = new System.Drawing.Size(195, 390); - this.creatureBoxListView.TabIndex = 0; - this.creatureBoxListView.Changed += new ARKBreedingStats.CreatureBox.ChangedEventHandler(this.updateCreatureValues); - this.creatureBoxListView.GiveParents += new ARKBreedingStats.CreatureBox.EventHandler(this.creatureBoxListView_FindParents); - // - // pedigree1 - // - this.pedigree1.AutoScroll = true; - this.pedigree1.Dock = System.Windows.Forms.DockStyle.Fill; - this.pedigree1.Location = new System.Drawing.Point(3, 3); - this.pedigree1.Name = "pedigree1"; - this.pedigree1.Size = new System.Drawing.Size(907, 623); - this.pedigree1.TabIndex = 0; - // - // tamingControl1 - // - this.tamingControl1.AutoScroll = true; - this.tamingControl1.Dock = System.Windows.Forms.DockStyle.Fill; - this.tamingControl1.Location = new System.Drawing.Point(3, 3); - this.tamingControl1.Name = "tamingControl1"; - this.tamingControl1.Size = new System.Drawing.Size(907, 623); - this.tamingControl1.TabIndex = 0; - this.tamingControl1.weaponDamages = new double[] { - 100D, - 100D, - 100D, - 100D, - 100D, - 100D}; - this.tamingControl1.weaponDamagesEnabled = 3; - // - // breedingPlan1 - // - this.breedingPlan1.AutoScroll = true; - this.breedingPlan1.CurrentSpecies = null; - this.breedingPlan1.Dock = System.Windows.Forms.DockStyle.Fill; - this.breedingPlan1.Location = new System.Drawing.Point(3, 3); - this.breedingPlan1.Name = "breedingPlan1"; - this.breedingPlan1.Size = new System.Drawing.Size(907, 623); - this.breedingPlan1.TabIndex = 0; - // - // raisingControl1 - // - this.raisingControl1.AutoScroll = true; - this.raisingControl1.Dock = System.Windows.Forms.DockStyle.Fill; - this.raisingControl1.Location = new System.Drawing.Point(3, 3); - this.raisingControl1.Name = "raisingControl1"; - this.raisingControl1.Size = new System.Drawing.Size(907, 623); - this.raisingControl1.TabIndex = 0; - // - // timerList1 - // - this.timerList1.Dock = System.Windows.Forms.DockStyle.Fill; - this.timerList1.Location = new System.Drawing.Point(3, 3); - this.timerList1.Name = "timerList1"; - this.timerList1.Size = new System.Drawing.Size(907, 623); - this.timerList1.TabIndex = 0; - // - // tribesControl1 - // - this.tribesControl1.Dock = System.Windows.Forms.DockStyle.Fill; - this.tribesControl1.Location = new System.Drawing.Point(3, 3); - this.tribesControl1.Name = "tribesControl1"; - this.tribesControl1.Size = new System.Drawing.Size(907, 623); - this.tribesControl1.TabIndex = 0; - // - // notesControl1 - // - this.notesControl1.Dock = System.Windows.Forms.DockStyle.Fill; - this.notesControl1.Location = new System.Drawing.Point(3, 3); - this.notesControl1.Name = "notesControl1"; - this.notesControl1.NoteList = null; - this.notesControl1.Size = new System.Drawing.Size(907, 623); - this.notesControl1.TabIndex = 0; - // - // ocrControl1 - // - this.ocrControl1.Dock = System.Windows.Forms.DockStyle.Fill; - this.ocrControl1.Location = new System.Drawing.Point(3, 3); - this.ocrControl1.Name = "ocrControl1"; - this.ocrControl1.Size = new System.Drawing.Size(907, 623); - this.ocrControl1.TabIndex = 2; - // // Form1 // this.AcceptButton = this.buttonExtract; @@ -2761,6 +2761,7 @@ private void InitializeComponent() this.tabControlMain.ResumeLayout(false); this.tabPageStatTesting.ResumeLayout(false); this.groupBox8.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.radarChart1)).EndInit(); this.panelWildTamedBredTester.ResumeLayout(false); this.panelWildTamedBredTester.PerformLayout(); this.groupBox2.ResumeLayout(false); @@ -2770,6 +2771,7 @@ private void InitializeComponent() this.tabPageExtractor.ResumeLayout(false); this.tabPageExtractor.PerformLayout(); this.groupBoxRadarChartExtractor.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.radarChartExtractor)).EndInit(); this.groupBoxTamingInfo.ResumeLayout(false); this.groupBox7.ResumeLayout(false); this.groupBox7.PerformLayout(); @@ -2799,8 +2801,6 @@ private void InitializeComponent() this.toolStrip2.PerformLayout(); this.panelToolBar.ResumeLayout(false); this.panelToolBar.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.radarChart1)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.radarChartExtractor)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); diff --git a/ARKBreedingStats/Form1.cs b/ARKBreedingStats/Form1.cs index 84628a21..7be6c822 100644 --- a/ARKBreedingStats/Form1.cs +++ b/ARKBreedingStats/Form1.cs @@ -906,22 +906,24 @@ private void setPossibility(int s, int i, bool validateCombination = false) private void setWildSpeedLevelAccordingToOthers() { /* - * wild speed level is current level - (wild levels + dom levels) - 1. sometimes the oxygenlevel cannot be determined + * wild speed level is wildTotalLevels - determinedWildLevels. sometimes the oxygenlevel cannot be determined + * if TE cannot be determined, speed cannot as well */ - // TODO: take notDetermined Levels from Torpor (with torpor-bug adjustment), then subtract only the wildlevels (this solves Plesio-issue) - //int notDeterminedLevels = (int)numericUpDownLevel.Value - 1 - (Values.V.speciesNames[sE] == "Plesiosaur" ? 34 : 0); - int notDeterminedLevels = statIOs[7].LevelWild; bool unique = true; - for (int s = 0; s < 6; s++) + int notDeterminedLevels = statIOs[7].LevelWild; + if (extractor.lastTEUnique) { - if (activeStats[s]) + for (int s = 0; s < 6; s++) { - //notDeterminedLevels -= statIOs[s].LevelDom; - notDeterminedLevels -= statIOs[s].LevelWild; + if (activeStats[s]) + { + //notDeterminedLevels -= statIOs[s].LevelDom; + notDeterminedLevels -= statIOs[s].LevelWild; + } + else { unique = false; break; } } - else { unique = false; break; } } - if (unique) + if (unique && extractor.lastTEUnique) { // if all other stats are unique, set speedlevel statIOs[6].LevelWild = Math.Max(0, notDeterminedLevels); @@ -3154,7 +3156,11 @@ private void setCreatureValuesToExtractor(Creature c, bool onlyWild = false) for (int s = 0; s < 8; s++) statIOs[s].Input = (onlyWild ? Stats.calculateValue(sI, s, c.levelsWild[s], 0, true, c.tamingEff, c.imprintingBonus) : c.valuesDom[s]); comboBoxSpeciesGlobal.SelectedIndex = sI; - radioButtonBred.Checked = c.isBred; + + if (c.isBred) radioButtonBred.Checked = true; + else if (c.tamingEff >= 0) radioButtonTamed.Checked = true; + else radioButtonWild.Checked = true; + numericUpDownImprintingBonusExtractor.Value = (decimal)c.imprintingBonus * 100; // set total level int level = (onlyWild ? c.levelsWild[7] : c.level); diff --git a/ARKBreedingStats/Form1.resx b/ARKBreedingStats/Form1.resx index 1eb84491..42dc6efb 100644 --- a/ARKBreedingStats/Form1.resx +++ b/ARKBreedingStats/Form1.resx @@ -221,13 +221,15 @@ The TE can differ 0.1% due to ingame-rounding. 5. Uncheck all Lock-to-Zero-buttons in the stats (all lock-symbols should be green and opened) -6. The maximal wild level is set too low, go to the settings and adjust it +6. Uncheck the "Consider Wild-level-steps" in the settings. -7. The multipliers in the Settings (File - Settings) are not set to the multipliers of the server. Ask your admin for the correct multipliers and adjust them in the Settings. +7. The maximal wild level is set too low, go to the settings and adjust it -8. The stats of the creature were changed recently and the game displays the old values. Level up a stat, that should trigger a recalculation of the values. +8. The multipliers in the Settings (File - Settings) are not set to the multipliers of the server. Ask your admin for the correct multipliers and adjust them in the Settings. -9. The stat-values in this tool are wrong or the game does show wrong stats. Send me a screenshot of the stats on reddit or github. +9. The stats of the creature were changed recently and the game displays the old values. Level up a stat, that should trigger a recalculation of the values. + +10. The stat-values in this tool are wrong or the game does show wrong stats. You can via reddit or github send me a screenshot that contains the stats of the creature ingame and the extractor with the typed in values along with the stat-multipliers in the settings. 364, 17 diff --git a/ARKBreedingStats/Properties/AssemblyInfo.cs b/ARKBreedingStats/Properties/AssemblyInfo.cs index 9bca31fe..ae381353 100644 --- a/ARKBreedingStats/Properties/AssemblyInfo.cs +++ b/ARKBreedingStats/Properties/AssemblyInfo.cs @@ -33,4 +33,4 @@ // übernehmen, indem Sie "*" eingeben: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("0.23.4")] +[assembly: AssemblyFileVersion("0.23.5")] diff --git a/ARKBreedingStats/StatResult.cs b/ARKBreedingStats/StatResult.cs index 60c56f90..2c6f2d39 100644 --- a/ARKBreedingStats/StatResult.cs +++ b/ARKBreedingStats/StatResult.cs @@ -1,22 +1,18 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace ARKBreedingStats +namespace ARKBreedingStats { class StatResult { public int levelWild, levelDom; - public double TE; + public double TE, TEMin, TEMax; public bool currentlyNotValid; // set to true if result violates other choosen result - public StatResult(int levelWild, int levelDom, double TE = -1) + public StatResult(int levelWild, int levelDom, double TE = -1, double TEMin = -1, double TEMax = -1) { this.levelWild = levelWild; this.levelDom = levelDom; this.TE = TE; + this.TEMin = TEMin; + this.TEMax = TEMax; currentlyNotValid = false; } } diff --git a/ARKBreedingStats/json/values.json b/ARKBreedingStats/json/values.json index 55b3b377..f6dda70e 100644 --- a/ARKBreedingStats/json/values.json +++ b/ARKBreedingStats/json/values.json @@ -1 +1 @@ -{"ver":"258.0.1","foodData":[{"Key":"Raw Meat","Value":{"d":[50,50]}},{"Key":"Cooked Meat","Value":{"d":[25,25]}},{"Key":"Cooked Meat Jerky","Value":{"d":[25,25]}},{"Key":"Raw Prime Meat","Value":{"d":[50,150]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,75]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,75]}},{"Key":"Raw Fish Meat","Value":{"d":[25,20]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,60]}},{"Key":"Cooked Fish Meat","Value":{"d":[12.5,10]}},{"Key":"Cooked Prime Fish Meat","Value":{"d":[25.7,30]}},{"Key":"Raw Mutton","Value":{"d":[50,375]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,206.25]}},{"Key":"Spoiled Meat","Value":{"d":[50,100]}},{"Key":"Vegetables","Value":{"d":[40,40]}},{"Key":"Mejoberry","Value":{"d":[30,30]}},{"Key":"Berries","Value":{"d":[19.9999995,20]}},{"Key":"Stimberry","Value":{"d":[-15,1.5]}},{"Key":"Kibble","Value":{"d":[79.95,400]}}],"imprintingMultiplier":1,"statMultipliers":[[0.14,0.44,0.2,1],[1,1,1,1],[1,1,1,1],[1,1,1,1],[1,1,1,1],[0.14,0.44,0.17,1],[1,1,1,1],[1,1,1,1]],"tamingMultiplier":1,"species":[{"name":"Achatina","colors":[{"name":"Body","colorIds":[49,22,33,34,42,43]},{"name":"Shell","colorIds":[19,21,22,23,24,28,30,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":"Shell Highlights","colorIds":[19,28,33,30,32,21,43,25,23]},{"name":"Stripe","colorIds":[19,21,32,30,25,23,50]},{"name":"Underside","colorIds":[19,21,33,30,50,25,23]}],"statsRaw":[[75,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0],[150,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[50,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Sweet Vegetable Cake"],"nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[180,450]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":4000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001736,"foodConsumptionMult":864.055298,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":0.5,"Value":"Tail"},{"Key":1,"Value":"Neck"}]},{"name":"Allosaurus","breeding":{"gestationTime":0,"incubationTime":5999.520508,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Spine","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Belly","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]}],"statsRaw":[[630,0.2,0.27,0.5,0],[250,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0.15],[380,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[1000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Diplo","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.875,"affinityNeeded0":2400,"affinityIncreasePL":100,"torporDepletionPS0":0.8,"foodConsumptionBase":0.002052,"foodConsumptionMult":180.063385,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Angler","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":-75,"eggTempMax":75},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36,1,4,3,2]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36]},{"name":"Tail fin and Accents","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36]}],"statsRaw":[[450,0.2,0.27,0.3,0],[240,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0.15],[350,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[900,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Kairuku","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":1800,"affinityIncreasePL":90,"torporDepletionPS0":2.8,"foodConsumptionBase":0.001852,"foodConsumptionMult":149.988007,"violent":true}},{"name":"Ankylosaurus","breeding":{"gestationTime":0,"incubationTime":9472.926758,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":16,"eggTempMax":20},"colors":[{"name":null,"colorIds":[]},{"name":"Spikes","colorIds":[21,23,32,33,8,14]},{"name":"Leg Plates","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Spike Tips","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Head and Back","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Underside","colorIds":[21,23,32,33,8,14]}],"statsRaw":[[700,0.2,0.27,0.5,0],[175,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0.15],[250,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.5,0],[420,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Dilo","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.003156,"foodConsumptionMult":176.03154,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"]},{"name":"Araneo","colors":[{"name":"Thorax and Head","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Lower Abdomen","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Leg","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Scutes","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Upper Abdomen and Markings","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]}],"statsRaw":[[150,0.2,0.135,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[100,0.02,0.08,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.67,0],[80,0.06,0,0.5,0]],"taming":{"eats":["Spoiled Meat","Raw Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Raw Meat","Value":{"d":[15,15]}}],"tamingIneffectiveness":4.166667,"affinityNeeded0":4000,"affinityIncreasePL":120,"foodConsumptionBase":0.001736,"foodConsumptionMult":864.055298,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"name":"Archaeopteryx","breeding":{"gestationTime":0,"incubationTime":9472.926758,"maturationTime":55555.554688,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":16,"eggTempMax":20},"colors":[{"name":"Sides, Tail, Wings and Face","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[21,23,32,33,8,14]},{"name":"Skin","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Top and Wing Tips","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Underside and Accents","colorIds":[19,21,23,25,26,28,30,32,33,8,14]}],"statsRaw":[[125,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[30,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Chitin"],"favoriteKibble":"Pelagornis","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[25,400]}},{"Key":"Chitin","Value":{"d":[50,50]}}],"tamingIneffectiveness":1.333333,"affinityNeeded0":500,"affinityIncreasePL":22.5,"torporDepletionPS0":0.8333,"foodConsumptionBase":0.001302,"foodConsumptionMult":1152.07373,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Argentavis","breeding":{"gestationTime":0,"incubationTime":10587.388672,"maturationTime":196078.421875,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":12,"eggTempMax":13.5},"colors":[{"name":"Main Body","colorIds":[20,22,24,33,34,13,35,14,18]},{"name":null,"colorIds":[]},{"name":"Wing Tips","colorIds":[20,22,24,33,34,13,35,14,18]},{"name":"Legs","colorIds":[20,22,24,33,34,13,35,14,18]},{"name":"Head Feathers","colorIds":[20,22,24,33,34,13,35,14,18]},{"name":"Underside","colorIds":[21,23,32,33,8,14,18]}],"statsRaw":[[365,0.2,0.3375,0.5,0],[400,0.05,0.075,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[400,0.02,0.055,0,0],[1,0.05,0.15,0.5,0.4],[1,0,0,0,0],[600,0.06,0,0.5,0]],"NoImprintingForSpeed":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Stegosaurus","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":2000,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true},"immobilizedBy":["Bola","Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Neck"}]},{"name":"Arthropluera","colors":[{"name":"Segments","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Head","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Sternites","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Legs, Antennae, and Forcipules","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"unknown","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Underside of Head/Segments","colorIds":[19,21,23,25,26,28,30,32,33,8,14]}],"statsRaw":[[500,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[100,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[175,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Broth of Enlightenment","Spoiled Meat","Raw Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Broth of Enlightenment","Value":{"d":[20,1500]}},{"Key":"Raw Meat","Value":{"d":[15,15]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":3000,"affinityIncreasePL":75,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"boneDamageAdjusters":[{"Key":2.5,"Value":"Head"}]},{"name":"Baryonyx","breeding":{"gestationTime":0,"incubationTime":7199.423828,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":29,"eggTempMax":35},"colors":[{"name":"Body","colorIds":[22,24,26,27,33,34,13,35,14]},{"name":"Spines","colorIds":[23,37,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Stripes","colorIds":[32,33,39,34,24,13]},{"name":"Underside","colorIds":[37,32,33,39,38,23,8]}],"statsRaw":[[440,0.2,0.27,0.5,0],[325,0.1,0.1,0,0],[225,0.1,0.1,0,0],[2250,0.1,0.1,0,0],[325,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[400,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Prime Fish Meat","Cooked Prime Fish Meat","Raw Fish Meat"],"favoriteKibble":"Pachyrhino","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":2500,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"]},{"name":"Basilosaurus","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":666666.625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Belly","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[2400,0.2,0.243,0.3,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[8000,0.1,0.1,0,0.15],[700,0.02,0.04,0,0],[1,0.05,0.1,0.9,0.4],[1,0,0.025,0,0],[2000,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Therizinosaurus","nonViolent":true,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[319.679993,500]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":6600,"affinityIncreasePL":250,"foodConsumptionBase":0.002929,"foodConsumptionMult":420,"wakeAffinityMult":1.6,"wakeFoodDeplMult":5,"violent":false}},{"name":"Beelzebufo","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":-75,"eggTempMax":75},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Spikes","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Stripes","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Belly and Accents","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[220,0.2,0.27,0.5,0],[190,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[160,0.02,0.04,0,0],[1,0.05,0.1,0.2,0.25],[1,0,0.025,1,0],[200,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Pulmonoscorpius","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":0.4,"affinityNeeded0":1800,"affinityIncreasePL":75,"torporDepletionPS0":0.6666,"foodConsumptionBase":0.001929,"foodConsumptionMult":648.00415,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"name":"Brontosaurus","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":28,"eggTempMax":31},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spine","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Legs","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[2300,0.2,0.19,0.5,0],[240,0.1,0.1,0,0],[150,0.1,0.1,0,0],[10000,0.1,0.1,0,0],[1600,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[2000,0.06,0,0.5,0]],"TamedBaseHealthMultiplier":0.9,"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Carbonemys","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[53.279999,400]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.06,"affinityNeeded0":10000,"affinityIncreasePL":500,"torporDepletionPS0":0.3,"foodConsumptionBase":0.007716,"foodConsumptionMult":180.001144,"violent":true},"immobilizedBy":["Large Bear Trap"]},{"name":"Carbonemys","breeding":{"gestationTime":0,"incubationTime":4499.640137,"maturationTime":83333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":30,"eggTempMax":34},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Shell Base","colorIds":[19,21,23,28,30,32,33,8,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Shell, Plates, and Claws","colorIds":[20,22,24,29,31,33,34,13,35,14]},{"name":"Body Accent","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[700,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[270,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.7,0],[275,0.06,0,0.5,0]],"TamedBaseHealthMultiplier":0.9,"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Pteranodon","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.003156,"foodConsumptionMult":352.06308,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":0.2,"Value":"Body"},{"Key":0.5,"Value":"Tail"},{"Key":1,"Value":"Neck"}]},{"name":"Carnotaurus","breeding":{"gestationTime":0,"incubationTime":5999.520508,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14,36]},{"name":"Horns","colorIds":[21,23,25,26,28,32,33,8,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Patterning","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[420,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0.15],[300,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Ankylosaurus","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":2000,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Castoroides","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":222222.21875,"matingCooldownMin":64800,"matingCooldownMax":142800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":"Feet","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Stripe","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Tail","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[450,0.2,0.27,0.5,0],[180,0.1,0.1,0,0],[380,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[300,0.02,0.04,0,0],[1,0.04,0.1,0.5,0.4],[1,0,0.025,0.7,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Gallimimus","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.3,"affinityNeeded0":2000,"affinityIncreasePL":100,"torporDepletionPS0":1.5,"foodConsumptionBase":0.002314,"foodConsumptionMult":160.056335,"violent":true},"immobilizedBy":["Bola","Large Bear Trap","Plant Species Y"]},{"name":"Chalicotherium","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":296296.28125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[20,22,39,37,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Fur Highlights","colorIds":[20,33,34,13,35]},{"name":"Stripes and Belly","colorIds":[21,38,32,33,8,14]}],"statsRaw":[[600,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[4000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Beer Jar"],"nonViolent":true,"specialFoodValues":[{"Key":"Beer Jar","Value":{"d":[45,400]}}],"tamingIneffectiveness":0.16,"affinityNeeded0":5000,"affinityIncreasePL":275,"foodConsumptionBase":0.003156,"foodConsumptionMult":352.06308,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"]},{"name":"Compy","breeding":{"gestationTime":0,"incubationTime":2999.760254,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[21,23,25,26,28,32,33,8,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Feathers","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Patterning","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Belly","colorIds":[20,22,24,26,27,33,34,13,35,14]}],"statsRaw":[[50,0.2,0.32,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[25,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,1,0],[25,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Raw Prime Fish Meat"],"nonViolent":false,"specialFoodValues":[{"Key":"Raw Mutton","Value":{"d":[20,1500]}},{"Key":"Raw Prime Meat","Value":{"d":[20,600]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[10,240]}}],"tamingIneffectiveness":8.333333,"affinityNeeded0":500,"affinityIncreasePL":65,"torporDepletionPS0":1.3,"foodConsumptionBase":0.000868,"foodConsumptionMult":1728.110596,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"name":"Daeodon","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Underbelly","colorIds":[32,33,37,39,36,14]},{"name":null,"colorIds":[]},{"name":"Top Highlights","colorIds":[39,34,22,33,35,37,42,56,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Body Main","colorIds":[23,24,42,37,32,33,34,8,13,35,14,36]}],"statsRaw":[[900,0.2,0.27,0.5,0],[250,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2500,0.1,0.1,0,0.15],[400,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[800,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat"],"favoriteKibble":"Iguanodon","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[119.969994,400]}},{"Key":"Raw Mutton","Value":{"d":[50,75]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,41.25]}},{"Key":"Raw Prime Meat","Value":{"d":[50,30]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,15]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,15]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,12]}}],"tamingIneffectiveness":0.0625,"affinityNeeded0":4500,"affinityIncreasePL":245,"torporDepletionPS0":1.8,"foodConsumptionBase":0.01,"foodConsumptionMult":288.039185,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head"}]},{"name":"Dilophosaur","breeding":{"gestationTime":0,"incubationTime":4090.581787,"maturationTime":75757.570313,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":28,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Back and Face","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spike Tips","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Spine and Spike Base","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Frill, Crest and Belly","colorIds":[21,23,25,26,28,32,33,8,14]},{"name":"Legs and Arms","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[130,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[45,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,2,0],[75,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":8.333333,"affinityNeeded0":450,"affinityIncreasePL":22.5,"torporDepletionPS0":0.3,"foodConsumptionBase":0.000868,"foodConsumptionMult":1728.110596,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Dimetrodon","breeding":{"gestationTime":0,"incubationTime":8999.280273,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":30,"eggTempMax":34},"colors":[{"name":"Body","colorIds":[21,23,25,26,32,33,8,14]},{"name":"Side Fin","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"Sail","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"Sail Spines","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"Legs and Belly","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]}],"statsRaw":[[350,0.2,0.27,0.65,0],[300,0.1,0.1,0,0],[500,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[250,0.02,0.04,0,0],[1,0.02,0.04,0.8,0.5],[1,0,0.025,0,0],[750,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Quetzal","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":1500,"affinityIncreasePL":90,"torporDepletionPS0":25,"foodConsumptionBase":0.001736,"foodConsumptionMult":160.010239,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"]},{"name":"Dimorphodon","breeding":{"gestationTime":0,"incubationTime":4864.475586,"maturationTime":90090.085938,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":35,"eggTempMax":38},"colors":[{"name":"Body","colorIds":[20,21,22,23,24,32,33,34,8,13,35,14,36]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Face and Wing Membrane","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Feathers","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[125,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[50,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":4.166666,"affinityNeeded0":900,"affinityIncreasePL":45,"torporDepletionPS0":0.8333,"foodConsumptionBase":0.001302,"foodConsumptionMult":1152.07373,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head"}]},{"name":"Diplocaulus","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":-75,"eggTempMax":75},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Fins","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Body Highlights","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14]},{"name":"Underbelly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[190,0.2,0.27,0.5,0],[165,0.1,0.1,0,0],[1050,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[150,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.25],[1,0,0.025,0,0],[220,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Archaeopteryx","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[119.969994,400]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":2000,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":225,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"name":"Diplodocus","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":29},"colors":[{"name":"Sides, Legs, and Accents","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spines","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Underside","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[1700,0.2,0.27,0.5,0],[550,0.1,0.1,0,0],[300,0.1,0.1,0,0],[10000,0.1,0.1,0,0],[800,0.02,0.04,0,0],[1,0,0,0.5,0.4],[1,0,0.025,0,0],[3000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Lystrosaurus","nonViolent":true,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[53.279999,275]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.08,"affinityNeeded0":7500,"affinityIncreasePL":375,"torporDepletionPS0":0.75,"foodConsumptionBase":0.007716,"foodConsumptionMult":180.001144,"wakeAffinityMult":3,"wakeFoodDeplMult":2,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Direbear","breeding":{"gestationTime":14285.713867,"incubationTime":0,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Back and Head","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Belly and Legs","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[400,0.2,0.27,0.5,0],[500,0.1,0.1,0,0],[270,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[650,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1.226,0],[1000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Giant Bee Honey","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Mejoberry","Cooked Meat","Cooked Meat Jerky","Berries","Vegetables","Raw Fish Meat"],"favoriteKibble":"Carnotaurus","nonViolent":false,"specialFoodValues":[{"Key":"Giant Bee Honey","Value":{"d":[80,400]}},{"Key":"Vegetables","Value":{"d":[20,20]}}],"tamingIneffectiveness":1.25,"affinityNeeded0":4000,"affinityIncreasePL":125,"torporDepletionPS0":0.9,"foodConsumptionBase":0.003156,"foodConsumptionMult":150,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Direwolf","breeding":{"gestationTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[32,33,34,8,8,13,35,14,18,21]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Tail, Back, and Face","colorIds":[32,33,34,8,8,13,35,14,18,21]},{"name":"Feet","colorIds":[32,33,34,8,8,13,35,14,18,21]}],"statsRaw":[[330,0.2,0.27,0.66,0],[260,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[170,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[450,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Carnotaurus","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.5,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":2.5,"Value":"Head"}]},{"name":"Dodo","breeding":{"gestationTime":0,"incubationTime":2999.760254,"maturationTime":55555.554688,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":30},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"Face","colorIds":[21,23,32,33,8,14]},{"name":"Beak","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Forehead, Neck, and Feet","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Head","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Wings and Patterning","colorIds":[19,21,23,25,26,28,30,32,33,8,14]}],"statsRaw":[[40,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[50,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,2,0],[30,0.06,0,0.5,0]],"taming":{"eats":["Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":1.333333,"affinityNeeded0":450,"affinityIncreasePL":22.5,"torporDepletionPS0":0.3,"foodConsumptionBase":0.000868,"foodConsumptionMult":2880.184326,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Doedicurus","breeding":{"gestationTime":17857.142578,"incubationTime":0,"maturationTime":208333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Shell and Plates","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,29]},{"name":"Spikes and Claws","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,29]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Shell Patterning","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,29]},{"name":"Underside","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,29]}],"statsRaw":[[850,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0.15],[250,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,1.25,0],[800,0.06,0,0.5,0]],"TamedBaseHealthMultiplier":0.9,"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Dilo","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":4000,"affinityIncreasePL":150,"torporDepletionPS0":0.75,"foodConsumptionBase":0.003156,"foodConsumptionMult":176.03154,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"]},{"name":"Dragon","statsRaw":[[20000,0.2,0.2,0.3,0],[400,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[2600,0.1,0.1,0,0],[3000,0.02,0.02,0,0],[1,0.05,0.04,0.3,0.3],[1,0,0,0,0],[350,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.5,"affinityNeeded0":8500,"affinityIncreasePL":150,"foodConsumptionBase":0.002066,"foodConsumptionMult":150,"violent":false}},{"name":"Dung Beetle","colors":[{"name":"Shell","colorIds":[20,22,24,26,27,29,31,14]},{"name":"Legs","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Palps and Leg Patterning","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Shell Patterning","colorIds":[20,22,24,26,27,29,31,14]},{"name":"Underside","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]}],"statsRaw":[[200,0.2,0.135,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[5,0.02,0.08,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[200,0.06,0,0.5,0]],"taming":{"eats":["Large Animal Feces","Medium Animal Feces","Spoiled Meat","Small Animal Feces","Human Feces","Raw Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Large Animal Feces","Value":{"d":[37.5,225]}},{"Key":"Medium Animal Feces","Value":{"d":[25,150]}},{"Key":"Small Animal Feces","Value":{"d":[12.5,75]}},{"Key":"Human Feces","Value":{"d":[10,60]}},{"Key":"Raw Meat","Value":{"d":[15,15]}}],"tamingIneffectiveness":4.166667,"affinityNeeded0":900,"affinityIncreasePL":50,"foodConsumptionBase":0.001488,"foodConsumptionMult":336.021515,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"name":"Dunkleosteus","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Spots","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Head","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[710,0.2,0.27,0.3,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0.15],[910,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[1150,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Titanoboa","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.800003,400]}}],"tamingIneffectiveness":3.275,"affinityNeeded0":1300,"affinityIncreasePL":60,"torporDepletionPS0":1,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true}},{"name":"Electrophorus","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":-75,"eggTempMax":75},"colors":[{"name":"Body Main","colorIds":[19,20,21,22,23,24,25,28,29,30,31,14,36]},{"name":"Fins","colorIds":[19,20,21,22,28,30,43,48]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"**Not Used**","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36]},{"name":"Belly","colorIds":[19,43,21,42,23,24,25,28,48,30,49,14,36]}],"statsRaw":[[180,0.2,0.27,-0.2,0],[165,0.1,0.1,0,0],[1050,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[150,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.25],[1,0,0.025,0,0],[175,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Bio Toxin","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Bio Toxin","Value":{"d":[45,200]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":2250,"affinityIncreasePL":90,"foodConsumptionBase":0.002929,"foodConsumptionMult":420,"wakeAffinityMult":1.6,"wakeFoodDeplMult":4,"violent":false}},{"name":"Equus","breeding":{"gestationTime":47619.042969,"incubationTime":0,"maturationTime":208333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"BodyMain","colorIds":[9,32,33,34,8,13,35,14,56,42,55]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Stripes","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,55]},{"name":"Underbelly and Highlights","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,55]}],"statsRaw":[[240,0.2,0.27,0.5,0],[560,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.0175,0.2,0],[420,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Sweet Vegetable Cake"],"favoriteKibble":"Troodon","nonViolent":true,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[13.33,400]}},{"Key":"Vegetables","Value":{"d":[20,210]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.4,"affinityNeeded0":3600,"affinityIncreasePL":180,"foodConsumptionBase":0.001929,"foodConsumptionMult":432.002777,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":2,"Value":"Head"}]},{"name":"Gallimimus","breeding":{"gestationTime":0,"incubationTime":5142.445801,"maturationTime":95238.09375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Feathers","colorIds":[20,22,24,26,27,33,34,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14,36]},{"name":"Spine and Feather Tips","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Lower Body","colorIds":[19,21,23,25,26,32,33,8,14]}],"statsRaw":[[150,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1000,0.1,0.1,0,0],[270,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[420,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Dimetrodon","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.4,"affinityNeeded0":2200,"affinityIncreasePL":95,"torporDepletionPS0":4.175,"foodConsumptionBase":0.001929,"foodConsumptionMult":432.002777,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":2,"Value":"Head"}]},{"name":"Giant Bee","colors":[{"name":"BodyHighlights","colorIds":[19,20,21,22,23,24,28,44,30,43]},{"name":null,"colorIds":[]},{"name":"Legs Highlight","colorIds":[19,20,21,22,23,24,28,44,30,43,35,14,36]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[56,35,34,29,52,31,14]}],"statsRaw":[[80,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0],[150,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[400,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":8.333333,"affinityNeeded0":450,"affinityIncreasePL":22.5,"foodConsumptionBase":0.001736,"foodConsumptionMult":864.055298,"violent":false}},{"name":"Giant Queen Bee","colors":[{"name":"unknown","colorIds":[20,22,33,34,42,43]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[20,22,33,34,42,43]},{"name":"unknown","colorIds":[20,22,33,34,42,43]},{"name":"unknown","colorIds":[20,22,33,34,42,43]},{"name":"unknown","colorIds":[20,22,33,34,42,43]}],"statsRaw":[[80,0,0,0.5,0],[200,0,0,0,0],[150,0,0,0,0],[800,0,0,0,0],[150,0,0,0,0],[1,0,0,0,0],[1,0,0,0,0],[400,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Rare Flower","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Ichthyornis","nonViolent":true,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[13.32,400]}},{"Key":"Rare Flower","Value":{"d":[75,150]}}],"tamingIneffectiveness":1.333333,"affinityNeeded0":2000,"affinityIncreasePL":22.5,"foodConsumptionBase":0.001929,"foodConsumptionMult":420,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2.5,"violent":false}},{"name":"Giganotosaurus","breeding":{"gestationTime":0,"incubationTime":179985.609375,"maturationTime":1010100.875,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":43,"eggTempMax":44},"colors":[{"name":"Body","colorIds":[20,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Back, Hands, and Feet","colorIds":[20,23,25,26,32,33,8,14]},{"name":"Belly","colorIds":[20,26,27,33,34,13,35,14]}],"statsRaw":[[80000,0.0005,0.002,-63000,0],[400,0.0005,0.01,0,0],[150,0.0025,0.025,0,0],[4000,0.0025,0.025,0,0],[700,0.01,0.01,0,0],[1,0.05,0.05,-0.8,0],[1,0,0.0031,0,0],[10000,0.06,0,0,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Quetzal","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.25,"affinityNeeded0":5000,"affinityIncreasePL":160,"torporDepletionPS0":120.000008,"foodConsumptionBase":0.002314,"foodConsumptionMult":160.056335,"violent":true},"immobilizedBy":["Large Bear Trap"]},{"name":"Gigantopithecus","breeding":{"gestationTime":23809.521484,"incubationTime":0,"maturationTime":277777.75,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Fur Mane","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Fur Accent","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Skins","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[640,0.1,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[220,0.02,0.04,0,0],[1,0.04,0.1,0.5,0.4],[1,0,0.025,0.06,0],[1100,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Titanoboa","nonViolent":true,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.979996,300]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":4600,"affinityIncreasePL":75,"foodConsumptionBase":0.004156,"foodConsumptionMult":176.03154,"wakeAffinityMult":1.65,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3.5,"Value":"Head"}]},{"name":"Hesperornis","breeding":{"gestationTime":0,"incubationTime":5454.108887,"maturationTime":101010.101563,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":30},"colors":[{"name":"Body Main","colorIds":[33,22,37,52,34,13,35,14,48,24,36]},{"name":null,"colorIds":[]},{"name":"Feet","colorIds":[42,43,24,47,46,48,50,33,34,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"Back Highlights","colorIds":[56,22,24,35,52,31,34,14,36]},{"name":"Underbelly","colorIds":[37,38,32,30,28,23,21,36]}],"statsRaw":[[95,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0.15],[70,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[300,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Prime Fish Meat","Cooked Prime Fish Meat","Raw Fish Meat"],"favoriteKibble":"Kairuku","nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":4.166667,"affinityNeeded0":1200,"affinityIncreasePL":45,"foodConsumptionBase":0.001389,"foodConsumptionMult":1079.913574,"wakeAffinityMult":1.6,"wakeFoodDeplMult":1.2,"violent":false},"boneDamageAdjusters":[{"Key":3,"Value":"Neck, Head"}]},{"name":"Hyaenodon ","breeding":{"gestationTime":14285.713867,"incubationTime":0,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[37,39,42,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Body Highlights and spots","colorIds":[37,39,42,27,32,33,34,8,13,35,14]},{"name":"Underbelly","colorIds":[37,39,37,21,38,32,33,8,13,14]}],"statsRaw":[[175,0.2,0.27,0.66,0],[260,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[170,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[450,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Carnotaurus","nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":1.875,"affinityNeeded0":6000,"affinityIncreasePL":80,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Ichthyornis","breeding":{"gestationTime":0,"incubationTime":5999.520508,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":29,"eggTempMax":32},"colors":[{"name":"Main Body","colorIds":[22,21,32,33,34,8,13,35,14,36,28]},{"name":"Feet","colorIds":[19,21,23,46,28,30,32,33,8,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Facial Highlights","colorIds":[22,24,33,34,13,35,14]}],"statsRaw":[[100,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1000,0.1,0.1,0,0.15],[55,0.02,0.04,0,0],[1,0.05,0.1,0.65,0.4],[1,0,0.025,0.365,0],[120,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Prime Fish Meat","Cooked Prime Fish Meat","Raw Fish Meat"],"favoriteKibble":"Pegomastax","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1750,"affinityIncreasePL":85,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":216.029373,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Neck"}]},{"name":"Ichthy","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":95238.09375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Back and Fins","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[275,0.05,0.0675,0.3,0],[300,0.2,0.2,0,0],[150,0.1,0.1,0,0],[1000,0.1,0.1,0,0.15],[250,0.02,0.04,0,0],[1,0.05,0.05,1,0.4],[1,0,0.03,0,0],[300,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Dodo","nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":1500,"affinityIncreasePL":75,"foodConsumptionBase":0.001929,"foodConsumptionMult":420,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2.5,"violent":false}},{"name":"Iguanodon","breeding":{"gestationTime":0,"incubationTime":5142.445801,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":"MainBody","colorIds":[42,21,22,23,24,25,45,46,32,33,34,8,13,35,14,52]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Stripes","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Highlights and Belly","colorIds":[43,21,23,25,47,32,37,8,14]}],"statsRaw":[[250,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1800,0.1,0.1,0,0],[375,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.02,0,0],[210,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Microraptor","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[90,400]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.4,"affinityNeeded0":2800,"affinityIncreasePL":140,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001929,"foodConsumptionMult":864.005554,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":2,"Value":"Head"}]},{"name":"Kairuku","breeding":{"gestationTime":0,"incubationTime":5454.108887,"maturationTime":101010.101563,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":30},"colors":[{"name":"Back and Markings","colorIds":[20,22,24,27,34,13,35,14]},{"name":"Beak","colorIds":[19,21,23,28,30,32,33,14,36]},{"name":"Feet","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Osteoderms","colorIds":[20,22,24,27,29,31,34,14]},{"name":null,"colorIds":[]}],"statsRaw":[[95,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0.15],[70,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,2,0],[300,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":4.166667,"affinityNeeded0":900,"affinityIncreasePL":45,"torporDepletionPS0":1,"foodConsumptionBase":0.001389,"foodConsumptionMult":1079.913574,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Neck, Head"}]},{"name":"Kaprosuchus","breeding":{"gestationTime":0,"incubationTime":7199.423828,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":29,"eggTempMax":35},"colors":[{"name":"Body","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":"Top Fins","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Top Scales","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":"Underbelly","colorIds":[23,24,26,27,33,34,13,35,14]}],"statsRaw":[[200,0.2,0.27,0.5,0],[350,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[140,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[200,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Tapejara","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[119.969994,400]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":2000,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"]},{"name":"Kentrosaurus","breeding":{"gestationTime":0,"incubationTime":9999.200195,"maturationTime":185185.171875,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":30},"colors":[{"name":"Body Main","colorIds":[42,22,24,26,45,33,34,13,35,14]},{"name":"Plates Main","colorIds":[42,22,44,45,46,48,43,33,34,13,35,14]},{"name":"Spikes","colorIds":[38,56,47,33,34,13,35,14]},{"name":"Plates Highlights","colorIds":[43,22,44,28,39,33,32,13,25,14]},{"name":"Body Highlights","colorIds":[56,22,42,45,48,52,49,34,33,35,14]},{"name":"Underbelly","colorIds":[21,39,38,37,32,33,8,14]}],"statsRaw":[[650,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[6000,0.1,0.1,0,0],[500,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Sweet Vegetable Cake"],"favoriteKibble":"Compy","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.1,"affinityNeeded0":5500,"affinityIncreasePL":285,"torporDepletionPS0":0.3,"foodConsumptionBase":0.005341,"foodConsumptionMult":208.034286,"violent":true},"immobilizedBy":["Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"]},{"name":"Liopleurodon","colors":[{"name":"Body Main","colorIds":[48,49,34,23,24,28,29,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Body Spots","colorIds":[48,49,24,22,43,53,51,50,48,19]},{"name":"Body Highlights","colorIds":[48,45,52,32,33,8,14,36,56]}],"statsRaw":[[3200,0.2,0.27,0.3,0],[800,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0.15],[1000,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[800,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Giant Bee Honey"],"nonViolent":true,"specialFoodValues":[{"Key":"Giant Bee Honey","Value":{"d":[100,200]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":2000,"affinityIncreasePL":100,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"wakeAffinityMult":1.6,"wakeFoodDeplMult":4,"violent":false}},{"name":"Lystrosaurus","breeding":{"gestationTime":0,"incubationTime":2999.760254,"maturationTime":55555.554688,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Underside","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Spine and Feet","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[90,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[215,0.1,0.1,0,0],[500,0.1,0.1,0,0.15],[90,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,2,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Rare Flower","Vegetables","Mejoberry","Berries"],"nonViolent":true,"specialFoodValues":[{"Key":"Rare Flower","Value":{"d":[34.9995,200]}}],"tamingIneffectiveness":1.333333,"affinityNeeded0":2000,"affinityIncreasePL":22.5,"foodConsumptionBase":0.000868,"foodConsumptionMult":2880.184326,"wakeAffinityMult":1.6,"wakeFoodDeplMult":1.1,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Mammoth","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":296296.28125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Fur Mane","colorIds":[20,21,22,23,24,28,29,32,33,34,8,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"Tusks and Toes","colorIds":[23,28,32,33,8,14]},{"name":null,"colorIds":[]},{"name":"Fur Accent","colorIds":[20,21,22,23,24,28,29,32,33,34,8,13,35,14,36]},{"name":"unknown","colorIds":[20,21,22,23,24,28,29,32,33,34,8,13,35,14,36]}],"statsRaw":[[850,0.2,0.27,0.5,0],[330,0.1,0.1,0,0],[150,0.1,0.1,0,0],[5000,0.1,0.1,0,0],[500,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1.226,0],[550,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Raptor","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.12,"affinityNeeded0":5000,"affinityIncreasePL":250,"torporDepletionPS0":0.3,"foodConsumptionBase":0.004133,"foodConsumptionMult":192.027771,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Manta","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":"Spots","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Patterning","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[320,0.05,0.0675,0.5,0],[270,0.2,0.2,0,0],[150,0.1,0.1,0,0],[1000,0.1,0.1,0,0.15],[200,0.02,0.04,0,0],[1,0.05,0.05,1,0.4],[1,0,0.05,0,0],[700,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["AnglerGel"],"nonViolent":true,"specialFoodValues":[{"Key":"AnglerGel","Value":{"d":[24,50]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":1500,"affinityIncreasePL":75,"foodConsumptionBase":0.001929,"foodConsumptionMult":420,"wakeAffinityMult":1.6,"wakeFoodDeplMult":1,"violent":false}},{"name":"Megalania","breeding":{"gestationTime":0,"incubationTime":7199.423828,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":29,"eggTempMax":35},"colors":[{"name":"Body Main","colorIds":[21,22,23,24,25,26,45,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Stripes","colorIds":[42,21,22,23,24,25,26,46,32,33,34,8,13,35,14,48,50,51]},{"name":"Belly","colorIds":[43,21,22,23,24,25,26,46,32,33,34,8,13,35,14,48,50,52]}],"statsRaw":[[480,0.2,0.27,0.5,0],[400,0.1,0.1,0,0],[200,0.1,0.1,0,0],[1500,0.1,0.1,0,0.15],[400,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[700,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Baryonyx","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[119.969994,400]}}],"tamingIneffectiveness":3.5,"affinityNeeded0":4000,"affinityIncreasePL":85,"torporDepletionPS0":18,"foodConsumptionBase":0.001736,"foodConsumptionMult":160.010239,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"name":"Megaloceros","breeding":{"gestationTime":21978.021484,"incubationTime":0,"maturationTime":256410.25,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[]},{"name":"Antlers","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]},{"name":"Patterning","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]}],"statsRaw":[[300,0.2,0.27,0.5,0],[280,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[220,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[175,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Dimorph","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.5,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.2915,"foodConsumptionBase":0.001543,"foodConsumptionMult":432.058746,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":2.5,"Value":"Neck"}]},{"name":"Megalodon","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Stripes","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[600,0.2,0.27,0.3,0],[320,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0.15],[250,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[800,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Spino","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":2000,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true}},{"name":"Megalosaurus","breeding":{"gestationTime":0,"incubationTime":5999.520508,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":32},"colors":[{"name":"Face, Appendages, Sides","colorIds":[42,21,22,23,24,25,46,45,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Feathers, Osteoderms, Patterning","colorIds":[42,22,24,46,45,33,34,13,35,14]},{"name":"Belly","colorIds":[47,23,25,47,28,32,33,8,14]}],"statsRaw":[[1025,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0.15],[300,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[775,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Oviraptor","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[135,400]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":3450,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Megatherium","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"BodyMain","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Feet and Hands","colorIds":[21,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[740,0.2,0.27,0.5,0],[400,0.1,0.1,0,0],[270,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[725,0.02,0.045,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[1000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Giant Bee Honey","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Mejoberry","Cooked Meat","Cooked Meat Jerky","Berries","Vegetables","Raw Fish Meat"],"favoriteKibble":"Megalania","nonViolent":false,"specialFoodValues":[{"Key":"Giant Bee Honey","Value":{"d":[80,300]}},{"Key":"Vegetables","Value":{"d":[20,20]}}],"tamingIneffectiveness":1.25,"affinityNeeded0":5000,"affinityIncreasePL":130,"torporDepletionPS0":0.9,"foodConsumptionBase":0.003156,"foodConsumptionMult":150,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Mesopithecus","breeding":{"gestationTime":9523.80957,"incubationTime":0,"maturationTime":111111.109375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[]},{"name":"Eye Markings","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,28,28,28,30,30,30]},{"name":null,"colorIds":[]},{"name":"Back, Lower Limbs, and Tail Tip","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Skins","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[115,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[70,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,1.3,0],[60,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Dodo","nonViolent":true,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":2200,"affinityIncreasePL":65,"foodConsumptionBase":0.000868,"foodConsumptionMult":2880.184326,"wakeAffinityMult":1.65,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Microraptor","breeding":{"gestationTime":0,"incubationTime":5142.445801,"maturationTime":196078.421875,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[130,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[45,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,2,0],[75,0.06,0,0.5,0]],"taming":{"eats":["Rare Flower","Rare Mushroom","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky"],"nonViolent":false,"specialFoodValues":[{"Key":"Rare Flower","Value":{"d":[60,3000]}},{"Key":"Rare Mushroom","Value":{"d":[60.000004,200]}},{"Key":"Raw Mutton","Value":{"d":[50,62.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,49.5]}},{"Key":"Raw Prime Meat","Value":{"d":[50,25]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,18]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,18]}}],"tamingIneffectiveness":8.333333,"affinityNeeded0":450,"affinityIncreasePL":22.5,"torporDepletionPS0":0.8,"foodConsumptionBase":0.000868,"foodConsumptionMult":1728.110596,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Mosasaurus","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":1010100.875,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spinal Ridge","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Sides of the Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Underside","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[3600,0.12,0.243,0.3,0],[400,0.1,0.1,0,0],[150,0.1,0.1,0,0],[8000,0.1,0.1,0,0.15],[1300,0.02,0.04,0,0],[1,0.05,0.1,0.9,0.4],[1,0,0.025,0,0],[3000,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Quetzal","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,550]}}],"tamingIneffectiveness":0.06,"affinityNeeded0":11000,"affinityIncreasePL":600,"torporDepletionPS0":12.8,"foodConsumptionBase":0.005,"foodConsumptionMult":180.001144,"violent":true}},{"name":"Moschops","breeding":{"gestationTime":0,"incubationTime":9472.926758,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":16,"eggTempMax":20},"colors":[{"name":"unknown","colorIds":[22,24,42,33,35,14]},{"name":"unknown","colorIds":[22,24,34,33,13,14]},{"name":"unknown","colorIds":[20,22,24,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,33,34,13,35,14]},{"name":"unknown","colorIds":[21,24,42,33,8,14]}],"statsRaw":[[375,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[300,0.1,0.1,0,0.15],[200,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.2,0],[300,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Raw Prime Fish Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Vegetables","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Raw Mutton","Value":{"d":[50,500]}},{"Key":"Raw Prime Meat","Value":{"d":[50,200]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,80]}},{"Key":"Vegetables","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":6000,"affinityIncreasePL":150,"torporDepletionPS0":3,"foodConsumptionBase":0.001736,"foodConsumptionMult":176.03154,"wakeAffinityMult":2.5,"wakeFoodDeplMult":1.2,"violent":true},"immobilizedBy":["Bola","Large Bear Trap","Plant Species Y"]},{"name":"Onyc","colors":[{"name":"Main Body","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Claws","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Membrane Shading","colorIds":[21,23,28,32,33,8,14]},{"name":null,"colorIds":[]},{"name":"Abdomen and Legs","colorIds":[21,23,28,32,33,8,14]},{"name":"Wing Membrane","colorIds":[21,23,28,32,33,8,14]}],"statsRaw":[[250,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[50,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[200,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":3000,"affinityIncreasePL":90,"foodConsumptionBase":0.002893,"foodConsumptionMult":192.034409,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false}},{"name":"Oviraptor","breeding":{"gestationTime":0,"incubationTime":4090.581787,"maturationTime":75757.570313,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":30},"colors":[{"name":"Body","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Crest and Beak","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Feathers","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":"Patterning","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[140,0.2,0.27,0.5,0],[120,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0.15],[100,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,1,0.15],[125,0.06,0,0.5,0]],"taming":{"eats":["Fertilized Giganotosaurus Egg","Giganotosaurus Egg","Fertilized Quetzal Egg","Quetzal Egg","Fertilized Rex Egg","Rex Egg","Fertilized Spino Egg","Spino Egg","Bronto Egg","Fertilized Bronto Egg","Carno Egg","Fertilized Carno Egg"],"nonViolent":false,"specialFoodValues":[{"Key":"Fertilized Giganotosaurus Egg","Value":{"d":[300,1200]}},{"Key":"Giganotosaurus Egg","Value":{"d":[300,1200]}},{"Key":"Fertilized Quetzal Egg","Value":{"d":[200,550]}},{"Key":"Quetzal Egg","Value":{"d":[200,550]}},{"Key":"Fertilized Rex Egg","Value":{"d":[200,100]}},{"Key":"Rex Egg","Value":{"d":[200,100]}},{"Key":"Fertilized Spino Egg","Value":{"d":[137.5,80]}},{"Key":"Spino Egg","Value":{"d":[137.5,80]}},{"Key":"Bronto Egg","Value":{"d":[250,60]}},{"Key":"Fertilized Bronto Egg","Value":{"d":[250,60]}},{"Key":"Carno Egg","Value":{"d":[137.5,30]}},{"Key":"Fertilized Carno Egg","Value":{"d":[137.5,30]}}],"tamingIneffectiveness":16.666668,"affinityNeeded0":960,"affinityIncreasePL":42,"torporDepletionPS0":0.208,"foodConsumptionBase":0.001302,"foodConsumptionMult":768.049133,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Ovis","breeding":{"gestationTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[100,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[90,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[85,0.06,0,0.5,0]],"taming":{"eats":["Sweet Vegetable Cake"],"nonViolent":true,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,200000]}}],"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"foodConsumptionBase":0.003156,"foodConsumptionMult":1584.283936,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"name":"Pachy","breeding":{"gestationTime":0,"incubationTime":5142.445801,"maturationTime":95238.09375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Spikes and Claws","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Beak and Plates","colorIds":[19,21,23,25,26,28,30]},{"name":"Body Accent","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[175,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[150,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[160,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Dilo","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.5,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.2666,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":0.125,"Value":"Head, Neck"}]},{"name":"Pachyrhinosaurus","breeding":{"gestationTime":0,"incubationTime":8999.280273,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":"unknown","colorIds":[42,22,24,46,45,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[20,22,24,46,45,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[20,22,24,46,45,29,31,33,34,13,35,14]},{"name":"unknown","colorIds":[21,23,25,47,32,33,8,14]}],"statsRaw":[[375,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[365,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[250,0.06,0,0.5,0]],"taming":{"eats":["Bug Repellant","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"nonViolent":false,"specialFoodValues":[{"Key":"Bug Repellant","Value":{"d":[25,200]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":4500,"affinityIncreasePL":175,"torporDepletionPS0":3.5,"foodConsumptionBase":0.003156,"foodConsumptionMult":352.06308,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":0.15,"Value":"Head"}]},{"name":"Paracer","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Underside","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[1140,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[6500,0.1,0.1,0,0],[850,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[1300,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Pachy","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.0923,"affinityNeeded0":6500,"affinityIncreasePL":325,"torporDepletionPS0":0.9025,"foodConsumptionBase":0.0035,"foodConsumptionMult":327.6474,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Parasaur","breeding":{"gestationTime":0,"incubationTime":5142.445801,"maturationTime":95238.09375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Beak and Frill","colorIds":[20,22,24,26,27,33,34,13,35,14,36]},{"name":"Frill Edge","colorIds":[19,21,23,25,26,32,33,8,14]},{"name":"Crest","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14,36]},{"name":"Patterning","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[19,21,23,25,26,32,33,8,14]}],"statsRaw":[[200,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[280,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.67,0],[150,0.06,0,0.5,0]],"taming":{"eats":["Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.4,"affinityNeeded0":1500,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001929,"foodConsumptionMult":864.005554,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":2,"Value":"Head"}]},{"name":"Pegomastax","breeding":{"gestationTime":0,"incubationTime":4090.581787,"maturationTime":111111.109375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":28,"eggTempMax":32},"colors":[{"name":"Body Main","colorIds":[34,20,21,22,23,24,28,14,13,33]},{"name":"Quills","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Beak","colorIds":[21,23,33,47,43,28,50]},{"name":null,"colorIds":[]},{"name":"Back Fur","colorIds":[37,39,33,34,13,35,14]},{"name":"Limb Highlights","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[200,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[55,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.5,0],[30,0.06,0,0.5,0]],"taming":{"eats":["Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"nonViolent":true,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":1.333333,"affinityNeeded0":1900,"affinityIncreasePL":35,"foodConsumptionBase":0.000868,"foodConsumptionMult":2880.184326,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Pelagornis","breeding":{"gestationTime":0,"incubationTime":5999.520508,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":29,"eggTempMax":32},"colors":[{"name":"Feathers","colorIds":[19,20,21,22,23,24,25,26,27,32,33,34,8,13,35,14,36]},{"name":"unknown","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":null,"colorIds":[]},{"name":"Skin and Wind/Tail Tips","colorIds":[20,22,24,26,27,33,34,13,35,14]}],"statsRaw":[[240,0.2,0.27,0.5,0],[180,0.05,0.04,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[150,0.02,0.03,0,0],[1,0.05,0.075,0.65,0.4],[1,0,0,0.365,0],[120,0.06,0,0.5,0]],"NoImprintingForSpeed":true,"taming":{"eats":["Kibble","Raw Prime Fish Meat","Cooked Prime Fish Meat","Raw Fish Meat"],"favoriteKibble":"Pegomastax","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":216.029373,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Neck"}]},{"name":"Phiomia","breeding":{"gestationTime":35714.285156,"incubationTime":0,"maturationTime":416666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[23,24,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Spots 1","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Spots 2","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[300,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0.15],[200,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.35,0],[240,0.06,0,0.5,0]],"taming":{"eats":["Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.003156,"foodConsumptionMult":1584.283936,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head"}]},{"name":"Plesiosaur","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":666666.625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":"Facial Fins","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[2400,0.12,0.162,0.15,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[5000,0.1,0.1,0,0.15],[800,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[1600,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Rex","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":0.75,"affinityNeeded0":5000,"affinityIncreasePL":250,"torporDepletionPS0":2.133333,"foodConsumptionBase":0.003858,"foodConsumptionMult":180.001144,"violent":true}},{"name":"Procoptodon","breeding":{"gestationTime":14285.713867,"incubationTime":0,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Back Stripes","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Inner Ear, Snout, Belly, Appendages","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[400,0.2,0.27,0.75,0],[350,0.1,0.1,0.1,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]],"taming":{"eats":["Rare Mushroom","Plant Species X Seed"],"nonViolent":false,"specialFoodValues":[{"Key":"Rare Mushroom","Value":{"d":[75,90]}},{"Key":"Plant Species X Seed","Value":{"d":[50,45]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.6666,"foodConsumptionBase":0.001929,"foodConsumptionMult":648.00415,"violent":true},"immobilizedBy":["Bola","Large Bear Trap","Plant Species Y"]},{"name":"Pteranodon","breeding":{"gestationTime":0,"incubationTime":5999.520508,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":29,"eggTempMax":32},"colors":[{"name":"Patterning","colorIds":[19,20,21,22,23,24,25,26,27,32,33,34,8,13,35,14,36]},{"name":"Wing Base","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Face, Crest, and Hands","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Inner Crest","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Wing Membrane","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]}],"statsRaw":[[210,0.2,0.15,0.5,0],[150,0.05,0.04,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[120,0.02,0.03,0,0],[1,0.05,0.075,0.65,0.4],[1,0,0,0.35,0],[120,0.06,0,0.5,0]],"TamedBaseHealthMultiplier":0.9,"NoImprintingForSpeed":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Dodo","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":216.029373,"violent":true},"immobilizedBy":["Bola","Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head"}]},{"name":"Pulmonoscorpius","colors":[{"name":"Plate Edges","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Claw Stripes, Barb Patterning, Body Joints","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Limb Joints","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Body","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Plates","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Legs","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[280,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[200,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1,0],[150,0.06,0,0.5,0]],"taming":{"eats":["Spoiled Meat","Raw Meat"],"nonViolent":false,"specialFoodValues":[{"Key":"Raw Meat","Value":{"d":[15,15]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":1500,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001929,"foodConsumptionMult":432.002777,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"name":"Purlovia","breeding":{"gestationTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Main Body","colorIds":[20,22,39,37,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Belly","colorIds":[20,33,34,13,35]},{"name":"Highlights","colorIds":[21,38,32,33,8,14]}],"statsRaw":[[275,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[4000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Moschops","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[53.279999,400]}}],"tamingIneffectiveness":3.125,"affinityNeeded0":2250,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"]},{"name":"Quetzal","breeding":{"gestationTime":0,"incubationTime":59995.199219,"maturationTime":666666.625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":5,"eggTempMax":6},"colors":[{"name":"Wing Membrane","colorIds":[19,20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Crest","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Skins","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Freckles","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Beak","colorIds":[21,22,32,33,34,8,13,35,14]},{"name":"Body Feathers","colorIds":[20,22,24,26,27,33,34,13,35,14]}],"statsRaw":[[1200,0.2,0.108,0.5,0],[800,0.05,0.05,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[800,0.02,0.05,0,0],[1,0.04,0.1,0.4,0.4],[1,0,0,0.365,0],[1850,0.06,0,0.5,0]],"TamedBaseHealthMultiplier":0.85,"NoImprintingForSpeed":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Rex","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":0.9375,"affinityNeeded0":6850,"affinityIncreasePL":300,"torporDepletionPS0":3.4,"foodConsumptionBase":0.0035,"foodConsumptionMult":140,"violent":true},"immobilizedBy":["Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head"}]},{"name":"Raptor","breeding":{"gestationTime":0,"incubationTime":7199.423828,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":20,"eggTempMax":28},"colors":[{"name":"Body Accent","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Feather Tips","colorIds":[19,21,23,25,26,28,30]},{"name":null,"colorIds":[]},{"name":"Body","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Feathers","colorIds":[19,21,23,25,26,28,30]},{"name":"Belly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[200,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[140,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[180,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Parasaur","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Rex","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":32,"eggTempMax":34},"colors":[{"name":"Body","colorIds":[20,22,24,27,33,34,13,35,14,36]},{"name":"Spine","colorIds":[20,22,24,27,33,34,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[20,22,24,27,33,34,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"Belly","colorIds":[20,22,24,27,33,34,13,35,14,36]}],"statsRaw":[[1100,0.2,0.27,0.5,0],[420,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[500,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[1550,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Pulmonoscorpius","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.25,"affinityNeeded0":3450,"affinityIncreasePL":150,"torporDepletionPS0":0.725,"foodConsumptionBase":0.002314,"foodConsumptionMult":180.063385,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Sabertooth","breeding":{"gestationTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[22,24,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Mane and Face","colorIds":[21,23,32,33,8,14]},{"name":"Stripes","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[250,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[200,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Brontosaurus","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head"}]},{"name":"Sarco","breeding":{"gestationTime":0,"incubationTime":8999.280273,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":30,"eggTempMax":34},"colors":[{"name":"Body","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Stripe, Face, and Tail","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":"Snout and Tail Tip","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":"Plates","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":"Body Accent","colorIds":[23,24,26,27,33,34,13,35,14]}],"statsRaw":[[400,0.2,0.27,0.65,0],[450,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[300,0.02,0.04,0,0],[1,0.05,0.1,0.8,0.5],[1,0,0.025,0.6,0],[400,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Triceratops","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":2000,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001578,"foodConsumptionMult":211.237854,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"]},{"name":"Spinosaur","breeding":{"gestationTime":0,"incubationTime":13845.046875,"maturationTime":256410.25,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":30,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Sail Edge","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Face, Tail, Inner Sail, and Frill","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36]},{"name":"Belly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[700,0.2,0.27,0.5,0],[350,0.1,0.1,0,0],[650,0.1,0.1,0,0],[2600,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[850,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Argentavis","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.5,"affinityNeeded0":3200,"affinityIncreasePL":150,"torporDepletionPS0":2.133333,"foodConsumptionBase":0.002066,"foodConsumptionMult":150,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Stegosaurus","breeding":{"gestationTime":0,"incubationTime":9999.200195,"maturationTime":185185.171875,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spine","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Plate Base and Spike Base","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Plate Edge and Spike Tips","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Belly","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[650,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[6000,0.1,0.1,0,0],[500,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.964,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Sarco","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.1,"affinityNeeded0":6000,"affinityIncreasePL":300,"torporDepletionPS0":0.3,"foodConsumptionBase":0.005341,"foodConsumptionMult":208.034286,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":1.67,"Value":"Head, Neck"}]},{"name":"Tapejara","breeding":{"gestationTime":0,"incubationTime":5999.520508,"maturationTime":196078.421875,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":29,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,32,33,34,8,13,35,14,36]},{"name":"Wing and Sail Markings","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"unknown","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Wings and Sail","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Back, Beak and Sail Spines","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Sail and Throat","colorIds":[20,22,24,26,27,33,34,13,35,14]}],"statsRaw":[[325,0.2,0.27,0.5,0],[250,0.05,0.06,0,0],[150,0.1,0.1,0,0],[1600,0.1,0.1,0,0.15],[280,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0,0.365,0],[450,0.06,0,0.5,0]],"NoImprintingForSpeed":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Allosaurus","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":2200,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":216.029373,"violent":true},"immobilizedBy":["Bola","Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head"}]},{"name":"Terror Bird","breeding":{"gestationTime":0,"incubationTime":7199.423828,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":20,"eggTempMax":28},"colors":[{"name":"Feathers","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Belly/Wings Accent","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Beak, Skin, Legs","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[270,0.2,0.27,0.5,0],[160,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[120,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[300,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Gallimimus","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":1600,"affinityIncreasePL":85,"torporDepletionPS0":2.25,"foodConsumptionBase":0.001578,"foodConsumptionMult":352.06308,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Therizinosaurus","breeding":{"gestationTime":0,"incubationTime":5999.520508,"maturationTime":416666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":32},"colors":[{"name":"Feathers Main","colorIds":[20,22,24,56,52,33,34,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"Body Highlights","colorIds":[48,23,24,25,32,8,36,50]},{"name":null,"colorIds":[]},{"name":"Feather Highlights","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Body Main","colorIds":[21,23,47,35,52,32,33,8,14]}],"statsRaw":[[870,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[365,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[925,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Megalosaurus","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[119.969994,400]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.06,"affinityNeeded0":6800,"affinityIncreasePL":160,"torporDepletionPS0":2.833333,"foodConsumptionBase":0.002314,"foodConsumptionMult":180.063385,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Thylacoleo","breeding":{"gestationTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Main Body","colorIds":[20,22,33,34,13,14,43,8,42,9,10]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Fur Highlights","colorIds":[20,33,34,13,35,22,56,21,43,42,44]},{"name":"Stripes and Belly","colorIds":[21,38,32,33,8,14]}],"statsRaw":[[700,0.2,0.27,0.5,0],[400,0.1,0.1,0,0],[200,0.1,0.1,0,0],[1500,0.1,0.1,0,0.15],[400,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[700,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Cooked Lamb Chop","Raw Mutton","Cooked Prime Meat","Prime Meat Jerky","Cooked Meat","Cooked Meat Jerky","Raw Prime Meat"],"favoriteKibble":"Titanoboa","nonViolent":false,"specialFoodValues":[{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,96.25]}},{"Key":"Raw Mutton","Value":{"d":[50,50]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,35]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,35]}},{"Key":"Cooked Meat","Value":{"d":[25,20]}},{"Key":"Cooked Meat Jerky","Value":{"d":[25,20]}},{"Key":"Raw Prime Meat","Value":{"d":[50,20]}}],"tamingIneffectiveness":3.125,"affinityNeeded0":2250,"affinityIncreasePL":60,"torporDepletionPS0":1.85,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"violent":true},"immobilizedBy":["Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":1.5,"Value":"Head"}]},{"name":"Titanosaur","colors":[{"name":"Body","colorIds":[21,23,25,26,32,33,8,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Underside","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[230000,0,0,-80000,0],[2000,0,0,0,0],[600,0,0,0,0],[8640,0,0,0,0],[50000,0,0,0,0],[1,0,0,0,0],[1,0,0,0,0],[25000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Carbonemys","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[53.279999,400]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.06,"affinityNeeded0":10000,"affinityIncreasePL":500,"foodConsumptionBase":0.1,"foodConsumptionMult":13,"violent":true}},{"name":"Triceratops","breeding":{"gestationTime":0,"incubationTime":8999.280273,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Face and Feet","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Patterning","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Frill","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Body Accent","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[375,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[365,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1.226,0],[250,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Carnotaurus","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.003156,"foodConsumptionMult":352.06308,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":0.15,"Value":"Head"}]},{"name":"Troodon","breeding":{"gestationTime":0,"incubationTime":4090.581787,"maturationTime":75757.570313,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":28,"eggTempMax":32},"colors":[{"name":"Main Body","colorIds":[20,22,24,48,52,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Body Highlights and Feathers","colorIds":[21,23,42,48,51,32,33,8,14]},{"name":"Belly","colorIds":[21,23,47,13,28,32,33,8,14]}],"statsRaw":[[200,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[100,0.1,0.1,0,0],[140,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[180,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":8.333333,"affinityNeeded0":480,"affinityIncreasePL":45,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Tusoteuthis","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":1010100.875,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":-75,"eggTempMax":75},"colors":[{"name":"Body Highlights","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":"Tentacle Highlights","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Tentacle Main","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Body Main","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[3333,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[215,0.1,0.1,0,0],[3200,0.1,0.1,0,0.15],[800,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1,0],[1800,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Black Pearl","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Black Pearl","Value":{"d":[30,50,50]}},{"Key":"Raw Mutton","Value":{"d":[50,37.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,20.625,30]}},{"Key":"Raw Prime Meat","Value":{"d":[50,15]}}],"tamingIneffectiveness":0.75,"affinityNeeded0":12500,"affinityIncreasePL":125,"foodConsumptionBase":0.005,"foodConsumptionMult":180.001144,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false},"boneDamageAdjusters":[{"Key":3,"Value":"Beak"}]},{"name":"Unicorn","breeding":{"gestationTime":47619.042969,"incubationTime":0,"maturationTime":208333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800},"statsRaw":[[240,0.2,0.27,0.5,0],[560,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.0175,0.2,0],[420,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Sweet Vegetable Cake"],"favoriteKibble":"Troodon","nonViolent":true,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[13.33,400]}},{"Key":"Vegetables","Value":{"d":[20,210]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.4,"affinityNeeded0":3600,"affinityIncreasePL":180,"foodConsumptionBase":0.001929,"foodConsumptionMult":432.002777,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":2,"Value":"Head"}]},{"name":"Woolly Rhino","breeding":{"gestationTime":14285.713867,"incubationTime":0,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Skins","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":"Back","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Underside","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Horn","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[500,0.2,0.27,0.5,0],[120,0.1,0.1,0,0],[100,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[750,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1.226,0],[600,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Terror Bird","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[53.279999,400]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":1.25,"affinityNeeded0":3450,"affinityIncreasePL":125,"torporDepletionPS0":0.9,"foodConsumptionBase":0.003156,"foodConsumptionMult":150,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Yutyrannus","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":666666.625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":32,"eggTempMax":34},"colors":[{"name":"Body Main","colorIds":[37,24,47,33,34,13,35,14,18]},{"name":"Facial crest","colorIds":[42,22,24,33,34,13,35,14,38]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Facial Highlights and Stripes","colorIds":[44,22,43,46,33,34,13,35,14,18,48]},{"name":"Feet and Hands","colorIds":[42,43,24,49,33,34,13,35,14,18]}],"statsRaw":[[1100,0.2,0.27,0.5,0],[420,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[500,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[1550,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Kentrosaurus","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.25,"affinityNeeded0":4250,"affinityIncreasePL":175,"torporDepletionPS0":0.725,"foodConsumptionBase":0.002314,"foodConsumptionMult":180.063385,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Zomdodo","colors":[{"name":"unknown","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[21,23,32,33,8,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"unknown","colorIds":[19,21,23,25,26,28,30,32,33,8,14]}],"statsRaw":[[700,0.2,0.27,0.2,0],[1000,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0,0,0,0.15],[170,0.02,0.04,0,0],[1,0.015,0.1,0.2,0],[1,0,0.025,2,0],[1000,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.333333,"affinityNeeded0":450,"affinityIncreasePL":22.5,"foodConsumptionBase":0,"foodConsumptionMult":0,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":2,"Value":"Head, Neck"}]},{"name":"Fire Wyvern","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":80,"eggTempMax":90},"colors":[{"name":"Body Main","colorIds":[39,38,35,22,13,43]},{"name":null,"colorIds":[]},{"name":"Scales Main","colorIds":[13,21,33,39,42,43,22]},{"name":"Wings Main","colorIds":[39,38,35,22,13,43]},{"name":"Fins Highlight","colorIds":[10,44,20,21,35,42]},{"name":"Body Highlights","colorIds":[10,44,43,21,33,42]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[275,0.05,0.05,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0,0,0],[725,0.06,0,0.5,0]],"NoImprintingForSpeed":true,"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.5,"affinityNeeded0":8500,"affinityIncreasePL":150,"foodConsumptionBase":0.000185,"foodConsumptionMult":199.983994,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Jerboa","breeding":{"gestationTime":9523.80957,"incubationTime":0,"maturationTime":111111.109375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Paws and Back","colorIds":[13,14,15,20,22,34,35,37,39,55,56]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Stripes","colorIds":[8,9,10,13,14,36,20,22,33,31,35,20,17,55,56]},{"name":"Belly and Highlights","colorIds":[13,9,33,39,37,55,56]}],"statsRaw":[[55,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[55,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.5,0],[30,0.06,0,0.5,0]],"taming":{"eats":["Plant Species Y Seed","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"nonViolent":false,"specialFoodValues":[{"Key":"Plant Species Y Seed","Value":{"d":[65,160]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":1.333333,"affinityNeeded0":1350,"affinityIncreasePL":22.5,"torporDepletionPS0":0.3,"foodConsumptionBase":0.000868,"foodConsumptionMult":2880.184326,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Lightning Wyvern","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":80,"eggTempMax":90},"colors":[{"name":"Body Main","colorIds":[30,28,14,51,8,35]},{"name":"Fins","colorIds":[49,50,31,14,30,8,51,52]},{"name":"Wings","colorIds":[49,50,31,35,28,30,8,51]},{"name":"***NOT USED****","colorIds":[1]},{"name":"Scales Top","colorIds":[49,50,31,14,30,8,51,52]},{"name":"Fins","colorIds":[49,50,31,14,30,8,51,52]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[275,0.05,0.05,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0,0,0],[725,0.06,0,0.5,0]],"NoImprintingForSpeed":true,"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.5,"affinityNeeded0":8500,"affinityIncreasePL":150,"foodConsumptionBase":0.000185,"foodConsumptionMult":199.983994,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Lymantria","colors":[{"name":"Facial Highlights","colorIds":[33,21,28,8,32]},{"name":"Wings Main","colorIds":[53,10,11,19,25,28,30,13]},{"name":"Legs","colorIds":[33,21,28,8,32]},{"name":"Wing Highlights","colorIds":[29,4,54,31,16,17,27,8,14]},{"name":"Facial Main","colorIds":[33,21,28,8,32]},{"name":"Stinger and Underbody","colorIds":[33,21,28,8,32]}],"statsRaw":[[260,0.2,0.27,0.5,0],[150,0.05,0.06,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[175,0.02,0.03,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0,0,0],[550,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Thorny Dragon","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":1800,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true},"immobilizedBy":["Bola","Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head"}]},{"name":"Mantis","colors":[{"name":"Body","colorIds":[9,10,16,17,15,11,33,27,26]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[9,10,16,17,15,11,33,27,26]},{"name":"Underneath","colorIds":[9,10,16,17,15,11,33,27,26]}],"statsRaw":[[275,0.2,0.135,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[220,0.02,0.08,0,0],[1,0.025,0.1,0.5,0.4],[1,0,0.025,0.67,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Deathworm Horn","Spoiled Meat","Raw Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Deathworm Horn","Value":{"d":[300,450]}},{"Key":"Raw Meat","Value":{"d":[15,15]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":1800,"affinityIncreasePL":75,"foodConsumptionBase":0.002314,"foodConsumptionMult":360,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Chain Bola","Bear Trap","Plant Species Y"]},{"name":"Morellatops","breeding":{"gestationTime":0,"incubationTime":8999.280273,"maturationTime":111111.109375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[400,0.2,0.27,0.5,0],[220,0.1,0.1,0,0],[150,0.1,0.1,0,0],[6000,0.1,0.1,0,0],[440,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.964,0],[315,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Vulture","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.005341,"foodConsumptionMult":208.034286,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"],"boneDamageAdjusters":[{"Key":0.5,"Value":"Tail"},{"Key":1,"Value":"Head"}]},{"name":"Poison Wyvern","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":80,"eggTempMax":90},"colors":[{"name":"Body Main","colorIds":[45,46,35,27,26,24,8,47,40]},{"name":"Wings Main","colorIds":[45,46,35,27,26,24,8]},{"name":"Scales Main","colorIds":[47,32,25,23,8]},{"name":"Wings Highlight","colorIds":[7,11,23,24,25,26,27,30,45,46]},{"name":"Scale Highlights","colorIds":[47,32,25,23,8,48]},{"name":"Body Highlights","colorIds":[32,25,23,8]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[275,0.05,0.05,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0,0,0],[725,0.06,0,0.5,0]],"NoImprintingForSpeed":true,"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.5,"affinityNeeded0":8500,"affinityIncreasePL":150,"foodConsumptionBase":0.000185,"foodConsumptionMult":199.983994,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Rock Elemental","colors":[{"name":null,"colorIds":[1]},{"name":"Body","colorIds":[1,17,19,23,24,28,36,14]},{"name":null,"colorIds":[1]},{"name":null,"colorIds":[1]},{"name":null,"colorIds":[1]},{"name":null,"colorIds":[1]}],"statsRaw":[[25000,0.0125,0.135,-22000,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[6000,0.1,0.1,0,0],[660,0.02,0.04,0,0],[1,0.05,0.1,0.125,0.4],[1,0,0.025,0,0],[5000,0.02,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Sulfur","Clay"],"favoriteKibble":"Mantis","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[19.9995,400]}},{"Key":"Sulfur","Value":{"d":[25,25]}},{"Key":"Clay","Value":{"d":[25,15]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":6500,"affinityIncreasePL":325,"torporDepletionPS0":0.325,"foodConsumptionBase":0.002543,"foodConsumptionMult":180.063385,"violent":true}},{"name":"Thorny Dragon","breeding":{"gestationTime":0,"incubationTime":8999.280273,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[260,0.2,0.27,0.66,0],[350,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[300,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[450,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Camelsaurus","nonViolent":false,"specialFoodValues":[{"Key":"Raw Mutton","Value":{"d":[50,325]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,165]}},{"Key":"Raw Prime Meat","Value":{"d":[50,130]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,60]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,60]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,52]}},{"Key":"Raw Meat","Value":{"d":[50,40]}},{"Key":"Cooked Prime Fish Meat","Value":{"d":[25.686001,24]}},{"Key":"Cooked Meat","Value":{"d":[25,20]}},{"Key":"Cooked Meat Jerky","Value":{"d":[25,20]}},{"Key":"Raw Fish Meat","Value":{"d":[25,16]}}],"tamingIneffectiveness":1.5,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.5,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"violent":true},"immobilizedBy":["Bola","Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":2.5,"Value":"Head"}]},{"name":"Vulture","breeding":{"gestationTime":0,"incubationTime":4864.475586,"maturationTime":90090.085938,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":35,"eggTempMax":38},"colors":[{"name":"Body Main","colorIds":[33,34,35,22,20,14,13]},{"name":"Head Highlight","colorIds":[19,20,21,22,28,29,30,31,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Head Main","colorIds":[37,32,33,21,35]},{"name":"Body Highlights","colorIds":[33,34,35,22,20,14,13,32,21]}],"statsRaw":[[125,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[50,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Spoiled Meat","Raw Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Raw Meat","Value":{"d":[15,15]}}],"tamingIneffectiveness":4.166666,"affinityNeeded0":655,"affinityIncreasePL":45,"foodConsumptionBase":0.001302,"foodConsumptionMult":1152.07373,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head"}]},{"name":"Zombie Fire Wyvern","breeding":{"gestationTime":0,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[39,38,35,22,13,43]},{"name":null,"colorIds":[]},{"name":"Scales Main","colorIds":[13,21,33,39,42,43,22]},{"name":"Wings Main","colorIds":[39,38,35,22,13,43]},{"name":"Fins Highlight","colorIds":[10,44,20,21,35,42]},{"name":"Body Highlights","colorIds":[10,44,43,21,33,42]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[275,0.05,0.05,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0,0,0],[725,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.5,"affinityNeeded0":8500,"affinityIncreasePL":150,"foodConsumptionBase":0.000185,"foodConsumptionMult":199.983994,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Zombie Lightning Wyvern","breeding":{"gestationTime":0,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[30,28,14,51,8,35]},{"name":"Fins","colorIds":[49,50,31,14,30,8,51,52]},{"name":"Wings","colorIds":[49,50,31,35,28,30,8,51]},{"name":"wings","colorIds":[49,50,30,28,8,51]},{"name":"Scales Top","colorIds":[49,50,31,14,30,8,51,52]},{"name":"Fins","colorIds":[49,50,31,14,30,8,51,52]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[275,0.05,0.05,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0,0,0],[725,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.5,"affinityNeeded0":8500,"affinityIncreasePL":150,"foodConsumptionBase":0.000185,"foodConsumptionMult":199.983994,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Zombie Poison Wyvern","breeding":{"gestationTime":0,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[45,46,35,27,26,24,8,47,40]},{"name":"Wings Main","colorIds":[45,46,35,27,26,24,8]},{"name":"Scales Main","colorIds":[47,32,25,23,8]},{"name":"Wings Highlight","colorIds":[7,11,23,24,25,26,27,30,45,46]},{"name":"Scale Highlights","colorIds":[47,32,25,23,8,48]},{"name":"Body Highlights","colorIds":[32,25,23,8]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[275,0.05,0.05,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0,0,0],[725,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.5,"affinityNeeded0":8500,"affinityIncreasePL":150,"foodConsumptionBase":0.000185,"foodConsumptionMult":199.983994,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"]}]} \ No newline at end of file +{"ver":"258.0.2","foodData":[{"Key":"Raw Meat","Value":{"d":[50,50]}},{"Key":"Cooked Meat","Value":{"d":[25,25]}},{"Key":"Cooked Meat Jerky","Value":{"d":[25,25]}},{"Key":"Raw Prime Meat","Value":{"d":[50,150]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,75]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,75]}},{"Key":"Raw Fish Meat","Value":{"d":[25,20]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,60]}},{"Key":"Cooked Fish Meat","Value":{"d":[12.5,10]}},{"Key":"Cooked Prime Fish Meat","Value":{"d":[25.7,30]}},{"Key":"Raw Mutton","Value":{"d":[50,375]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,206.25]}},{"Key":"Spoiled Meat","Value":{"d":[50,100]}},{"Key":"Vegetables","Value":{"d":[40,40]}},{"Key":"Mejoberry","Value":{"d":[30,30]}},{"Key":"Berries","Value":{"d":[19.9999995,20]}},{"Key":"Stimberry","Value":{"d":[-15,1.5]}},{"Key":"Kibble","Value":{"d":[79.95,400]}}],"imprintingMultiplier":1,"statMultipliers":[[0.14,0.44,0.2,1],[1,1,1,1],[1,1,1,1],[1,1,1,1],[1,1,1,1],[0.14,0.44,0.17,1],[1,1,1,1],[1,1,1,1]],"tamingMultiplier":1,"species":[{"name":"Achatina","colors":[{"name":"Body","colorIds":[49,22,33,34,42,43]},{"name":"Shell","colorIds":[19,21,22,23,24,28,30,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":"Shell Highlights","colorIds":[19,28,33,30,32,21,43,25,23]},{"name":"Stripe","colorIds":[19,21,32,30,25,23,50]},{"name":"Underside","colorIds":[19,21,33,30,50,25,23]}],"statsRaw":[[75,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0],[150,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[50,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Sweet Vegetable Cake"],"nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[180,450]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":4000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001736,"foodConsumptionMult":864.055298,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":0.5,"Value":"Tail"},{"Key":1,"Value":"Neck"}]},{"name":"Allosaurus","breeding":{"gestationTime":0,"incubationTime":5999.520508,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Spine","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Belly","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]}],"statsRaw":[[630,0.2,0.27,0.5,0],[250,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0.15],[380,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[1000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Diplo","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.875,"affinityNeeded0":2400,"affinityIncreasePL":100,"torporDepletionPS0":0.8,"foodConsumptionBase":0.002052,"foodConsumptionMult":180.063385,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Angler","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":-75,"eggTempMax":75},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36,1,4,3,2]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36]},{"name":"Tail fin and Accents","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36]}],"statsRaw":[[450,0.2,0.27,0.3,0],[240,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0.15],[350,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[900,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Kairuku","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":1800,"affinityIncreasePL":90,"torporDepletionPS0":2.8,"foodConsumptionBase":0.001852,"foodConsumptionMult":149.988007,"violent":true}},{"name":"Ankylosaurus","breeding":{"gestationTime":0,"incubationTime":9472.926758,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":16,"eggTempMax":20},"colors":[{"name":null,"colorIds":[]},{"name":"Spikes","colorIds":[21,23,32,33,8,14]},{"name":"Leg Plates","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Spike Tips","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Head and Back","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Underside","colorIds":[21,23,32,33,8,14]}],"statsRaw":[[700,0.2,0.27,0.5,0],[175,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0.15],[250,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.5,0],[420,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Dilo","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.003156,"foodConsumptionMult":176.03154,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"]},{"name":"Araneo","colors":[{"name":"Thorax and Head","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Lower Abdomen","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Leg","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Scutes","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Upper Abdomen and Markings","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]}],"statsRaw":[[150,0.2,0.135,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[100,0.02,0.08,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.67,0],[80,0.06,0,0.5,0]],"taming":{"eats":["Spoiled Meat","Raw Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Raw Meat","Value":{"d":[15,15]}}],"tamingIneffectiveness":4.166667,"affinityNeeded0":4000,"affinityIncreasePL":120,"foodConsumptionBase":0.001736,"foodConsumptionMult":864.055298,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"name":"Archaeopteryx","breeding":{"gestationTime":0,"incubationTime":9472.926758,"maturationTime":55555.554688,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":16,"eggTempMax":20},"colors":[{"name":"Sides, Tail, Wings and Face","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[21,23,32,33,8,14]},{"name":"Skin","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Top and Wing Tips","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Underside and Accents","colorIds":[19,21,23,25,26,28,30,32,33,8,14]}],"statsRaw":[[125,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[30,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Chitin"],"favoriteKibble":"Pelagornis","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[25,400]}},{"Key":"Chitin","Value":{"d":[50,50]}}],"tamingIneffectiveness":1.333333,"affinityNeeded0":500,"affinityIncreasePL":22.5,"torporDepletionPS0":0.8333,"foodConsumptionBase":0.001302,"foodConsumptionMult":1152.07373,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Argentavis","breeding":{"gestationTime":0,"incubationTime":10587.388672,"maturationTime":196078.421875,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":12,"eggTempMax":13.5},"colors":[{"name":"Main Body","colorIds":[20,22,24,33,34,13,35,14,18]},{"name":null,"colorIds":[]},{"name":"Wing Tips","colorIds":[20,22,24,33,34,13,35,14,18]},{"name":"Legs","colorIds":[20,22,24,33,34,13,35,14,18]},{"name":"Head Feathers","colorIds":[20,22,24,33,34,13,35,14,18]},{"name":"Underside","colorIds":[21,23,32,33,8,14,18]}],"statsRaw":[[365,0.2,0.3375,0.5,0],[400,0.05,0.075,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[400,0.02,0.055,0,0],[1,0.05,0.15,0.5,0.4],[1,0,0,0,0],[600,0.06,0,0.5,0]],"NoImprintingForSpeed":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Stegosaurus","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":2000,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true},"immobilizedBy":["Bola","Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Neck"}]},{"name":"Arthropluera","colors":[{"name":"Segments","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Head","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Sternites","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Legs, Antennae, and Forcipules","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"unknown","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Underside of Head/Segments","colorIds":[19,21,23,25,26,28,30,32,33,8,14]}],"statsRaw":[[500,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[100,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[175,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Broth of Enlightenment","Spoiled Meat","Raw Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Broth of Enlightenment","Value":{"d":[20,1500]}},{"Key":"Raw Meat","Value":{"d":[15,15]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":3000,"affinityIncreasePL":75,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"boneDamageAdjusters":[{"Key":2.5,"Value":"Head"}]},{"name":"Baryonyx","breeding":{"gestationTime":0,"incubationTime":7199.423828,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":29,"eggTempMax":35},"colors":[{"name":"Body","colorIds":[22,24,26,27,33,34,13,35,14]},{"name":"Spines","colorIds":[23,37,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Stripes","colorIds":[32,33,39,34,24,13]},{"name":"Underside","colorIds":[37,32,33,39,38,23,8]}],"statsRaw":[[440,0.2,0.27,0.5,0],[325,0.1,0.1,0,0],[225,0.1,0.1,0,0],[2250,0.1,0.1,0,0],[325,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[400,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Prime Fish Meat","Cooked Prime Fish Meat","Raw Fish Meat"],"favoriteKibble":"Pachyrhino","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":2500,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"]},{"name":"Basilosaurus","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":666666.625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Belly","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[2400,0.2,0.243,0.3,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[8000,0.1,0.1,0,0.15],[700,0.02,0.04,0,0],[1,0.05,0.1,0.9,0.4],[1,0,0.025,0,0],[2000,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Therizinosaurus","nonViolent":true,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[319.679993,500]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":6600,"affinityIncreasePL":250,"foodConsumptionBase":0.002929,"foodConsumptionMult":420,"wakeAffinityMult":1.6,"wakeFoodDeplMult":5,"violent":false}},{"name":"Beelzebufo","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":-75,"eggTempMax":75},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Spikes","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Stripes","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Belly and Accents","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[220,0.2,0.27,0.5,0],[190,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[160,0.02,0.04,0,0],[1,0.05,0.1,0.2,0.25],[1,0,0.025,1,0],[200,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Pulmonoscorpius","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":0.4,"affinityNeeded0":1800,"affinityIncreasePL":75,"torporDepletionPS0":0.6666,"foodConsumptionBase":0.001929,"foodConsumptionMult":648.00415,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"name":"Brontosaurus","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":28,"eggTempMax":31},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spine","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Legs","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[2300,0.2,0.19,0.5,0],[240,0.1,0.1,0,0],[150,0.1,0.1,0,0],[10000,0.1,0.1,0,0],[1600,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[2000,0.06,0,0.5,0]],"TamedBaseHealthMultiplier":0.9,"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Carbonemys","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[53.279999,400]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.06,"affinityNeeded0":10000,"affinityIncreasePL":500,"torporDepletionPS0":0.3,"foodConsumptionBase":0.007716,"foodConsumptionMult":180.001144,"violent":true},"immobilizedBy":["Large Bear Trap"]},{"name":"Carbonemys","breeding":{"gestationTime":0,"incubationTime":4499.640137,"maturationTime":83333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":30,"eggTempMax":34},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Shell Base","colorIds":[19,21,23,28,30,32,33,8,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Shell, Plates, and Claws","colorIds":[20,22,24,29,31,33,34,13,35,14]},{"name":"Body Accent","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[700,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[270,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.7,0],[275,0.06,0,0.5,0]],"TamedBaseHealthMultiplier":0.9,"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Pteranodon","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.003156,"foodConsumptionMult":352.06308,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":0.2,"Value":"Body"},{"Key":0.5,"Value":"Tail"},{"Key":1,"Value":"Neck"}]},{"name":"Carnotaurus","breeding":{"gestationTime":0,"incubationTime":5999.520508,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14,36]},{"name":"Horns","colorIds":[21,23,25,26,28,32,33,8,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Patterning","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[420,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0.15],[300,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Ankylosaurus","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":2000,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Castoroides","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":222222.21875,"matingCooldownMin":64800,"matingCooldownMax":142800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":"Feet","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Stripe","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Tail","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[450,0.2,0.27,0.5,0],[180,0.1,0.1,0,0],[380,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[300,0.02,0.04,0,0],[1,0.04,0.1,0.5,0.4],[1,0,0.025,0.7,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Gallimimus","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.3,"affinityNeeded0":2000,"affinityIncreasePL":100,"torporDepletionPS0":1.5,"foodConsumptionBase":0.002314,"foodConsumptionMult":160.056335,"violent":true},"immobilizedBy":["Bola","Large Bear Trap","Plant Species Y"]},{"name":"Chalicotherium","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":296296.28125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[20,22,39,37,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Fur Highlights","colorIds":[20,33,34,13,35]},{"name":"Stripes and Belly","colorIds":[21,38,32,33,8,14]}],"statsRaw":[[600,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[4000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Beer Jar"],"nonViolent":true,"specialFoodValues":[{"Key":"Beer Jar","Value":{"d":[45,400]}}],"tamingIneffectiveness":0.16,"affinityNeeded0":5000,"affinityIncreasePL":275,"foodConsumptionBase":0.003156,"foodConsumptionMult":352.06308,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"]},{"name":"Compy","breeding":{"gestationTime":0,"incubationTime":2999.760254,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[21,23,25,26,28,32,33,8,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Feathers","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Patterning","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Belly","colorIds":[20,22,24,26,27,33,34,13,35,14]}],"statsRaw":[[50,0.2,0.32,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[25,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,1,0],[25,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Raw Prime Fish Meat"],"nonViolent":false,"specialFoodValues":[{"Key":"Raw Mutton","Value":{"d":[20,1500]}},{"Key":"Raw Prime Meat","Value":{"d":[20,600]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[10,240]}}],"tamingIneffectiveness":8.333333,"affinityNeeded0":500,"affinityIncreasePL":65,"torporDepletionPS0":1.3,"foodConsumptionBase":0.000868,"foodConsumptionMult":1728.110596,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"name":"Daeodon","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Underbelly","colorIds":[32,33,37,39,36,14]},{"name":null,"colorIds":[]},{"name":"Top Highlights","colorIds":[39,34,22,33,35,37,42,56,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Body Main","colorIds":[23,24,42,37,32,33,34,8,13,35,14,36]}],"statsRaw":[[900,0.2,0.27,0.5,0],[250,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2500,0.1,0.1,0,0.15],[400,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[800,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat"],"favoriteKibble":"Iguanodon","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[119.969994,400]}},{"Key":"Raw Mutton","Value":{"d":[50,75]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,41.25]}},{"Key":"Raw Prime Meat","Value":{"d":[50,30]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,15]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,15]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,12]}}],"tamingIneffectiveness":0.0625,"affinityNeeded0":4500,"affinityIncreasePL":245,"torporDepletionPS0":1.8,"foodConsumptionBase":0.01,"foodConsumptionMult":288.039185,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head"}]},{"name":"Dilophosaur","breeding":{"gestationTime":0,"incubationTime":4090.581787,"maturationTime":75757.570313,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":28,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Back and Face","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spike Tips","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Spine and Spike Base","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Frill, Crest and Belly","colorIds":[21,23,25,26,28,32,33,8,14]},{"name":"Legs and Arms","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[130,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[45,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,2,0],[75,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":8.333333,"affinityNeeded0":450,"affinityIncreasePL":22.5,"torporDepletionPS0":0.3,"foodConsumptionBase":0.000868,"foodConsumptionMult":1728.110596,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Dimetrodon","breeding":{"gestationTime":0,"incubationTime":8999.280273,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":30,"eggTempMax":34},"colors":[{"name":"Body","colorIds":[21,23,25,26,32,33,8,14]},{"name":"Side Fin","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"Sail","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"Sail Spines","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"Legs and Belly","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]}],"statsRaw":[[350,0.2,0.27,0.65,0],[300,0.1,0.1,0,0],[500,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[250,0.02,0.04,0,0],[1,0.02,0.04,0.8,0.5],[1,0,0.025,0,0],[750,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Quetzal","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":1500,"affinityIncreasePL":90,"torporDepletionPS0":25,"foodConsumptionBase":0.001736,"foodConsumptionMult":160.010239,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"]},{"name":"Dimorphodon","breeding":{"gestationTime":0,"incubationTime":4864.475586,"maturationTime":90090.085938,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":35,"eggTempMax":38},"colors":[{"name":"Body","colorIds":[20,21,22,23,24,32,33,34,8,13,35,14,36]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Face and Wing Membrane","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Feathers","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[125,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[50,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":4.166666,"affinityNeeded0":900,"affinityIncreasePL":45,"torporDepletionPS0":0.8333,"foodConsumptionBase":0.001302,"foodConsumptionMult":1152.07373,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head"}]},{"name":"Diplocaulus","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":-75,"eggTempMax":75},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Fins","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Body Highlights","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14]},{"name":"Underbelly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[190,0.2,0.27,0.5,0],[165,0.1,0.1,0,0],[1050,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[150,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.25],[1,0,0.025,0,0],[220,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Archaeopteryx","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[119.969994,400]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":2000,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":225,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"name":"Diplodocus","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":29},"colors":[{"name":"Sides, Legs, and Accents","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spines","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Underside","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[1700,0.2,0.27,0.5,0],[550,0.1,0.1,0,0],[300,0.1,0.1,0,0],[10000,0.1,0.1,0,0],[800,0.02,0.04,0,0],[1,0,0,0.5,0.4],[1,0,0.025,0,0],[3000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Lystrosaurus","nonViolent":true,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[53.279999,275]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.08,"affinityNeeded0":7500,"affinityIncreasePL":375,"torporDepletionPS0":0.75,"foodConsumptionBase":0.007716,"foodConsumptionMult":180.001144,"wakeAffinityMult":3,"wakeFoodDeplMult":2,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Direbear","breeding":{"gestationTime":14285.713867,"incubationTime":0,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Back and Head","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Belly and Legs","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[400,0.2,0.27,0.5,0],[500,0.1,0.1,0,0],[270,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[650,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1.226,0],[1000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Giant Bee Honey","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Mejoberry","Cooked Meat","Cooked Meat Jerky","Berries","Vegetables","Raw Fish Meat"],"favoriteKibble":"Carnotaurus","nonViolent":false,"specialFoodValues":[{"Key":"Giant Bee Honey","Value":{"d":[80,400]}},{"Key":"Vegetables","Value":{"d":[20,20]}}],"tamingIneffectiveness":1.25,"affinityNeeded0":4000,"affinityIncreasePL":125,"torporDepletionPS0":0.9,"foodConsumptionBase":0.003156,"foodConsumptionMult":150,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Direwolf","breeding":{"gestationTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[32,33,34,8,8,13,35,14,18,21]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Tail, Back, and Face","colorIds":[32,33,34,8,8,13,35,14,18,21]},{"name":"Feet","colorIds":[32,33,34,8,8,13,35,14,18,21]}],"statsRaw":[[330,0.2,0.27,0.66,0],[260,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[170,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[450,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Carnotaurus","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.5,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":2.5,"Value":"Head"}]},{"name":"Dodo","breeding":{"gestationTime":0,"incubationTime":2999.760254,"maturationTime":55555.554688,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":30},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"Face","colorIds":[21,23,32,33,8,14]},{"name":"Beak","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Forehead, Neck, and Feet","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Head","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Wings and Patterning","colorIds":[19,21,23,25,26,28,30,32,33,8,14]}],"statsRaw":[[40,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[50,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,2,0],[30,0.06,0,0.5,0]],"taming":{"eats":["Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":1.333333,"affinityNeeded0":450,"affinityIncreasePL":22.5,"torporDepletionPS0":0.3,"foodConsumptionBase":0.000868,"foodConsumptionMult":2880.184326,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Doedicurus","breeding":{"gestationTime":17857.142578,"incubationTime":0,"maturationTime":208333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Shell and Plates","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,29]},{"name":"Spikes and Claws","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,29]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Shell Patterning","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,29]},{"name":"Underside","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,29]}],"statsRaw":[[850,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0.15],[250,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,1.25,0],[800,0.06,0,0.5,0]],"TamedBaseHealthMultiplier":0.9,"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Dilo","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":4000,"affinityIncreasePL":150,"torporDepletionPS0":0.75,"foodConsumptionBase":0.003156,"foodConsumptionMult":176.03154,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"]},{"name":"Dragon","statsRaw":[[20000,0.2,0.2,0.3,0],[400,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[2600,0.1,0.1,0,0],[3000,0.02,0.02,0,0],[1,0.05,0.04,0.3,0.3],[1,0,0,0,0],[350,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.5,"affinityNeeded0":8500,"affinityIncreasePL":150,"foodConsumptionBase":0.002066,"foodConsumptionMult":150,"violent":false}},{"name":"Dung Beetle","colors":[{"name":"Shell","colorIds":[20,22,24,26,27,29,31,14]},{"name":"Legs","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Palps and Leg Patterning","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Shell Patterning","colorIds":[20,22,24,26,27,29,31,14]},{"name":"Underside","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]}],"statsRaw":[[200,0.2,0.135,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[5,0.02,0.08,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[200,0.06,0,0.5,0]],"taming":{"eats":["Large Animal Feces","Medium Animal Feces","Spoiled Meat","Small Animal Feces","Human Feces","Raw Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Large Animal Feces","Value":{"d":[37.5,225]}},{"Key":"Medium Animal Feces","Value":{"d":[25,150]}},{"Key":"Small Animal Feces","Value":{"d":[12.5,75]}},{"Key":"Human Feces","Value":{"d":[10,60]}},{"Key":"Raw Meat","Value":{"d":[15,15]}}],"tamingIneffectiveness":4.166667,"affinityNeeded0":900,"affinityIncreasePL":50,"foodConsumptionBase":0.001488,"foodConsumptionMult":336.021515,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"name":"Dunkleosteus","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Spots","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Head","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[710,0.2,0.27,0.3,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0.15],[910,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[1150,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Titanoboa","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.800003,400]}}],"tamingIneffectiveness":3.275,"affinityNeeded0":1300,"affinityIncreasePL":60,"torporDepletionPS0":1,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true}},{"name":"Electrophorus","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":-75,"eggTempMax":75},"colors":[{"name":"Body Main","colorIds":[19,20,21,22,23,24,25,28,29,30,31,14,36]},{"name":"Fins","colorIds":[19,20,21,22,28,30,43,48]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"**Not Used**","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36]},{"name":"Belly","colorIds":[19,43,21,42,23,24,25,28,48,30,49,14,36]}],"statsRaw":[[180,0.2,0.27,-0.2,0],[165,0.1,0.1,0,0],[1050,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[150,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.25],[1,0,0.025,0,0],[175,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Bio Toxin","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Bio Toxin","Value":{"d":[45,200]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":2250,"affinityIncreasePL":90,"foodConsumptionBase":0.002929,"foodConsumptionMult":420,"wakeAffinityMult":1.6,"wakeFoodDeplMult":4,"violent":false}},{"name":"Equus","breeding":{"gestationTime":47619.042969,"incubationTime":0,"maturationTime":208333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"BodyMain","colorIds":[9,32,33,34,8,13,35,14,56,42,55]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Stripes","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,55]},{"name":"Underbelly and Highlights","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,55]}],"statsRaw":[[240,0.2,0.27,0.5,0],[560,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.0175,0.2,0],[420,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Sweet Vegetable Cake"],"favoriteKibble":"Troodon","nonViolent":true,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[13.33,400]}},{"Key":"Vegetables","Value":{"d":[20,210]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.4,"affinityNeeded0":3600,"affinityIncreasePL":180,"foodConsumptionBase":0.001929,"foodConsumptionMult":432.002777,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":2,"Value":"Head"}]},{"name":"Gallimimus","breeding":{"gestationTime":0,"incubationTime":5142.445801,"maturationTime":95238.09375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Feathers","colorIds":[20,22,24,26,27,33,34,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14,36]},{"name":"Spine and Feather Tips","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Lower Body","colorIds":[19,21,23,25,26,32,33,8,14]}],"statsRaw":[[150,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1000,0.1,0.1,0,0],[270,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[420,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Dimetrodon","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.4,"affinityNeeded0":2200,"affinityIncreasePL":95,"torporDepletionPS0":4.175,"foodConsumptionBase":0.001929,"foodConsumptionMult":432.002777,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":2,"Value":"Head"}]},{"name":"Giant Bee","colors":[{"name":"BodyHighlights","colorIds":[19,20,21,22,23,24,28,44,30,43]},{"name":null,"colorIds":[]},{"name":"Legs Highlight","colorIds":[19,20,21,22,23,24,28,44,30,43,35,14,36]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[56,35,34,29,52,31,14]}],"statsRaw":[[80,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0],[150,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[400,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":8.333333,"affinityNeeded0":450,"affinityIncreasePL":22.5,"foodConsumptionBase":0.001736,"foodConsumptionMult":864.055298,"violent":false}},{"name":"Giant Queen Bee","colors":[{"name":"unknown","colorIds":[20,22,33,34,42,43]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[20,22,33,34,42,43]},{"name":"unknown","colorIds":[20,22,33,34,42,43]},{"name":"unknown","colorIds":[20,22,33,34,42,43]},{"name":"unknown","colorIds":[20,22,33,34,42,43]}],"statsRaw":[[80,0,0,0.5,0],[200,0,0,0,0],[150,0,0,0,0],[800,0,0,0,0],[150,0,0,0,0],[1,0,0,0,0],[1,0,0,0,0],[400,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Rare Flower","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Ichthyornis","nonViolent":true,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[13.32,400]}},{"Key":"Rare Flower","Value":{"d":[75,150]}}],"tamingIneffectiveness":1.333333,"affinityNeeded0":2000,"affinityIncreasePL":22.5,"foodConsumptionBase":0.001929,"foodConsumptionMult":420,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2.5,"violent":false}},{"name":"Giganotosaurus","breeding":{"gestationTime":0,"incubationTime":179985.609375,"maturationTime":1010100.875,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":43,"eggTempMax":44},"colors":[{"name":"Body","colorIds":[20,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Back, Hands, and Feet","colorIds":[20,23,25,26,32,33,8,14]},{"name":"Belly","colorIds":[20,26,27,33,34,13,35,14]}],"statsRaw":[[80000,0.0005,0.002,-63000,0],[400,0.0005,0.01,0,0],[150,0.0025,0.025,0,0],[4000,0.0025,0.025,0,0],[700,0.01,0.01,0,0],[1,0.05,0.05,-0.8,0],[1,0,0.0031,0,0],[10000,0.06,0,0,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Quetzal","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.25,"affinityNeeded0":5000,"affinityIncreasePL":160,"torporDepletionPS0":120.000008,"foodConsumptionBase":0.002314,"foodConsumptionMult":160.056335,"violent":true},"immobilizedBy":["Large Bear Trap"]},{"name":"Gigantopithecus","breeding":{"gestationTime":23809.521484,"incubationTime":0,"maturationTime":277777.75,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Fur Mane","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Fur Accent","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Skins","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[640,0.1,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[220,0.02,0.04,0,0],[1,0.04,0.1,0.5,0.4],[1,0,0.025,0.06,0],[1100,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Titanoboa","nonViolent":true,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.979996,300]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":4600,"affinityIncreasePL":75,"foodConsumptionBase":0.004156,"foodConsumptionMult":176.03154,"wakeAffinityMult":1.65,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3.5,"Value":"Head"}]},{"name":"Hesperornis","breeding":{"gestationTime":0,"incubationTime":5454.108887,"maturationTime":101010.101563,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":30},"colors":[{"name":"Body Main","colorIds":[33,22,37,52,34,13,35,14,48,24,36]},{"name":null,"colorIds":[]},{"name":"Feet","colorIds":[42,43,24,47,46,48,50,33,34,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"Back Highlights","colorIds":[56,22,24,35,52,31,34,14,36]},{"name":"Underbelly","colorIds":[37,38,32,30,28,23,21,36]}],"statsRaw":[[95,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0.15],[70,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[300,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Prime Fish Meat","Cooked Prime Fish Meat","Raw Fish Meat"],"favoriteKibble":"Kairuku","nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":4.166667,"affinityNeeded0":1200,"affinityIncreasePL":45,"foodConsumptionBase":0.001389,"foodConsumptionMult":1079.913574,"wakeAffinityMult":1.6,"wakeFoodDeplMult":1.2,"violent":false},"boneDamageAdjusters":[{"Key":3,"Value":"Neck, Head"}]},{"name":"Hyaenodon ","breeding":{"gestationTime":14285.713867,"incubationTime":0,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[37,39,42,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Body Highlights and spots","colorIds":[37,39,42,27,32,33,34,8,13,35,14]},{"name":"Underbelly","colorIds":[37,39,37,21,38,32,33,8,13,14]}],"statsRaw":[[175,0.2,0.27,0.66,0],[260,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[170,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[450,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Carnotaurus","nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":1.875,"affinityNeeded0":6000,"affinityIncreasePL":80,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Ichthyornis","breeding":{"gestationTime":0,"incubationTime":5999.520508,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":29,"eggTempMax":32},"colors":[{"name":"Main Body","colorIds":[22,21,32,33,34,8,13,35,14,36,28]},{"name":"Feet","colorIds":[19,21,23,46,28,30,32,33,8,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Facial Highlights","colorIds":[22,24,33,34,13,35,14]}],"statsRaw":[[100,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1000,0.1,0.1,0,0.15],[55,0.02,0.04,0,0],[1,0.05,0.1,0.65,0.4],[1,0,0.025,0.365,0],[120,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Prime Fish Meat","Cooked Prime Fish Meat","Raw Fish Meat"],"favoriteKibble":"Pegomastax","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1750,"affinityIncreasePL":85,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":216.029373,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Neck"}]},{"name":"Ichthy","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":95238.09375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Back and Fins","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[275,0.05,0.0675,0.3,0],[300,0.2,0.2,0,0],[150,0.1,0.1,0,0],[1000,0.1,0.1,0,0.15],[250,0.02,0.04,0,0],[1,0.05,0.05,1,0.4],[1,0,0.03,0,0],[300,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Dodo","nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":1500,"affinityIncreasePL":75,"foodConsumptionBase":0.001929,"foodConsumptionMult":420,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2.5,"violent":false}},{"name":"Iguanodon","breeding":{"gestationTime":0,"incubationTime":5142.445801,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":"MainBody","colorIds":[42,21,22,23,24,25,45,46,32,33,34,8,13,35,14,52]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Stripes","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Highlights and Belly","colorIds":[43,21,23,25,47,32,37,8,14]}],"statsRaw":[[250,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1800,0.1,0.1,0,0],[375,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.02,0,0],[210,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Microraptor","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[90,400]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.4,"affinityNeeded0":2800,"affinityIncreasePL":140,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001929,"foodConsumptionMult":864.005554,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":2,"Value":"Head"}]},{"name":"Kairuku","breeding":{"gestationTime":0,"incubationTime":5454.108887,"maturationTime":101010.101563,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":30},"colors":[{"name":"Back and Markings","colorIds":[20,22,24,27,34,13,35,14]},{"name":"Beak","colorIds":[19,21,23,28,30,32,33,14,36]},{"name":"Feet","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Osteoderms","colorIds":[20,22,24,27,29,31,34,14]},{"name":null,"colorIds":[]}],"statsRaw":[[95,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0.15],[70,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,2,0],[300,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":4.166667,"affinityNeeded0":900,"affinityIncreasePL":45,"torporDepletionPS0":1,"foodConsumptionBase":0.001389,"foodConsumptionMult":1079.913574,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Neck, Head"}]},{"name":"Kaprosuchus","breeding":{"gestationTime":0,"incubationTime":7199.423828,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":29,"eggTempMax":35},"colors":[{"name":"Body","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":"Top Fins","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Top Scales","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":"Underbelly","colorIds":[23,24,26,27,33,34,13,35,14]}],"statsRaw":[[200,0.2,0.27,0.5,0],[350,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[140,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[200,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Tapejara","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[119.969994,400]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":2000,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"]},{"name":"Kentrosaurus","breeding":{"gestationTime":0,"incubationTime":9999.200195,"maturationTime":185185.171875,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":30},"colors":[{"name":"Body Main","colorIds":[42,22,24,26,45,33,34,13,35,14]},{"name":"Plates Main","colorIds":[42,22,44,45,46,48,43,33,34,13,35,14]},{"name":"Spikes","colorIds":[38,56,47,33,34,13,35,14]},{"name":"Plates Highlights","colorIds":[43,22,44,28,39,33,32,13,25,14]},{"name":"Body Highlights","colorIds":[56,22,42,45,48,52,49,34,33,35,14]},{"name":"Underbelly","colorIds":[21,39,38,37,32,33,8,14]}],"statsRaw":[[650,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[6000,0.1,0.1,0,0],[500,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Sweet Vegetable Cake"],"favoriteKibble":"Compy","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.1,"affinityNeeded0":5500,"affinityIncreasePL":285,"torporDepletionPS0":0.3,"foodConsumptionBase":0.005341,"foodConsumptionMult":208.034286,"violent":true},"immobilizedBy":["Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"]},{"name":"Liopleurodon","colors":[{"name":"Body Main","colorIds":[48,49,34,23,24,28,29,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Body Spots","colorIds":[48,49,24,22,43,53,51,50,48,19]},{"name":"Body Highlights","colorIds":[48,45,52,32,33,8,14,36,56]}],"statsRaw":[[3200,0.2,0.27,0.3,0],[800,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0.15],[1000,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[800,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Giant Bee Honey"],"nonViolent":true,"specialFoodValues":[{"Key":"Giant Bee Honey","Value":{"d":[100,200]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":2000,"affinityIncreasePL":100,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"wakeAffinityMult":1.6,"wakeFoodDeplMult":4,"violent":false}},{"name":"Lystrosaurus","breeding":{"gestationTime":0,"incubationTime":2999.760254,"maturationTime":55555.554688,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Underside","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Spine and Feet","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[90,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[215,0.1,0.1,0,0],[500,0.1,0.1,0,0.15],[90,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,2,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Rare Flower","Vegetables","Mejoberry","Berries"],"nonViolent":true,"specialFoodValues":[{"Key":"Rare Flower","Value":{"d":[34.9995,200]}}],"tamingIneffectiveness":1.333333,"affinityNeeded0":2000,"affinityIncreasePL":22.5,"foodConsumptionBase":0.000868,"foodConsumptionMult":2880.184326,"wakeAffinityMult":1.6,"wakeFoodDeplMult":1.1,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Mammoth","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":296296.28125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Fur Mane","colorIds":[20,21,22,23,24,28,29,32,33,34,8,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"Tusks and Toes","colorIds":[23,28,32,33,8,14]},{"name":null,"colorIds":[]},{"name":"Fur Accent","colorIds":[20,21,22,23,24,28,29,32,33,34,8,13,35,14,36]},{"name":"unknown","colorIds":[20,21,22,23,24,28,29,32,33,34,8,13,35,14,36]}],"statsRaw":[[850,0.2,0.27,0.5,0],[330,0.1,0.1,0,0],[150,0.1,0.1,0,0],[5000,0.1,0.1,0,0],[500,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1.226,0],[550,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Raptor","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.12,"affinityNeeded0":5000,"affinityIncreasePL":250,"torporDepletionPS0":0.3,"foodConsumptionBase":0.004133,"foodConsumptionMult":192.027771,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Manta","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":"Spots","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Patterning","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[320,0.05,0.0675,0.5,0],[270,0.2,0.2,0,0],[150,0.1,0.1,0,0],[1000,0.1,0.1,0,0.15],[200,0.02,0.04,0,0],[1,0.05,0.05,1,0.4],[1,0,0.05,0,0],[700,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["AnglerGel"],"nonViolent":true,"specialFoodValues":[{"Key":"AnglerGel","Value":{"d":[24,50]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":1500,"affinityIncreasePL":75,"foodConsumptionBase":0.001929,"foodConsumptionMult":420,"wakeAffinityMult":1.6,"wakeFoodDeplMult":1,"violent":false}},{"name":"Megalania","breeding":{"gestationTime":0,"incubationTime":7199.423828,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":29,"eggTempMax":35},"colors":[{"name":"Body Main","colorIds":[21,22,23,24,25,26,45,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Stripes","colorIds":[42,21,22,23,24,25,26,46,32,33,34,8,13,35,14,48,50,51]},{"name":"Belly","colorIds":[43,21,22,23,24,25,26,46,32,33,34,8,13,35,14,48,50,52]}],"statsRaw":[[480,0.2,0.27,0.5,0],[400,0.1,0.1,0,0],[200,0.1,0.1,0,0],[1500,0.1,0.1,0,0.15],[400,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[700,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Baryonyx","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[119.969994,400]}}],"tamingIneffectiveness":3.5,"affinityNeeded0":4000,"affinityIncreasePL":85,"torporDepletionPS0":18,"foodConsumptionBase":0.001736,"foodConsumptionMult":160.010239,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"name":"Megaloceros","breeding":{"gestationTime":21978.021484,"incubationTime":0,"maturationTime":256410.25,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[]},{"name":"Antlers","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]},{"name":"Patterning","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]}],"statsRaw":[[300,0.2,0.27,0.5,0],[280,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[220,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[175,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Dimorph","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.5,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.2915,"foodConsumptionBase":0.001543,"foodConsumptionMult":432.058746,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":2.5,"Value":"Neck"}]},{"name":"Megalodon","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Stripes","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[600,0.2,0.27,0.3,0],[320,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0.15],[250,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[800,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Spino","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":2000,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true}},{"name":"Megalosaurus","breeding":{"gestationTime":0,"incubationTime":5999.520508,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":32},"colors":[{"name":"Face, Appendages, Sides","colorIds":[42,21,22,23,24,25,46,45,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Feathers, Osteoderms, Patterning","colorIds":[42,22,24,46,45,33,34,13,35,14]},{"name":"Belly","colorIds":[47,23,25,47,28,32,33,8,14]}],"statsRaw":[[1025,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0.15],[300,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[775,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Oviraptor","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[135,400]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":3450,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Megatherium","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"BodyMain","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Feet and Hands","colorIds":[21,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[740,0.2,0.27,0.5,0],[400,0.1,0.1,0,0],[270,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[725,0.02,0.045,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[1000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Giant Bee Honey","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Mejoberry","Cooked Meat","Cooked Meat Jerky","Berries","Vegetables","Raw Fish Meat"],"favoriteKibble":"Megalania","nonViolent":false,"specialFoodValues":[{"Key":"Giant Bee Honey","Value":{"d":[80,300]}},{"Key":"Vegetables","Value":{"d":[20,20]}}],"tamingIneffectiveness":1.25,"affinityNeeded0":5000,"affinityIncreasePL":130,"torporDepletionPS0":0.9,"foodConsumptionBase":0.003156,"foodConsumptionMult":150,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Mesopithecus","breeding":{"gestationTime":9523.80957,"incubationTime":0,"maturationTime":111111.109375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[]},{"name":"Eye Markings","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,28,28,28,30,30,30]},{"name":null,"colorIds":[]},{"name":"Back, Lower Limbs, and Tail Tip","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Skins","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[115,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[70,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,1.3,0],[60,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Dodo","nonViolent":true,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":2200,"affinityIncreasePL":65,"foodConsumptionBase":0.000868,"foodConsumptionMult":2880.184326,"wakeAffinityMult":1.65,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Microraptor","breeding":{"gestationTime":0,"incubationTime":5142.445801,"maturationTime":196078.421875,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[130,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[45,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,2,0],[75,0.06,0,0.5,0]],"taming":{"eats":["Rare Flower","Rare Mushroom","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky"],"nonViolent":false,"specialFoodValues":[{"Key":"Rare Flower","Value":{"d":[60,3000]}},{"Key":"Rare Mushroom","Value":{"d":[60.000004,200]}},{"Key":"Raw Mutton","Value":{"d":[50,62.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,49.5]}},{"Key":"Raw Prime Meat","Value":{"d":[50,25]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,18]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,18]}}],"tamingIneffectiveness":8.333333,"affinityNeeded0":450,"affinityIncreasePL":22.5,"torporDepletionPS0":0.8,"foodConsumptionBase":0.000868,"foodConsumptionMult":1728.110596,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Mosasaurus","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":1010100.875,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spinal Ridge","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Sides of the Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Underside","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[3600,0.12,0.243,0.3,0],[400,0.1,0.1,0,0],[150,0.1,0.1,0,0],[8000,0.1,0.1,0,0.15],[1300,0.02,0.04,0,0],[1,0.05,0.1,0.9,0.4],[1,0,0.025,0,0],[3000,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Quetzal","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,550]}}],"tamingIneffectiveness":0.06,"affinityNeeded0":11000,"affinityIncreasePL":600,"torporDepletionPS0":12.8,"foodConsumptionBase":0.005,"foodConsumptionMult":180.001144,"violent":true}},{"name":"Moschops","breeding":{"gestationTime":0,"incubationTime":9472.926758,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":16,"eggTempMax":20},"colors":[{"name":"unknown","colorIds":[22,24,42,33,35,14]},{"name":"unknown","colorIds":[22,24,34,33,13,14]},{"name":"unknown","colorIds":[20,22,24,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,33,34,13,35,14]},{"name":"unknown","colorIds":[21,24,42,33,8,14]}],"statsRaw":[[375,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[300,0.1,0.1,0,0.15],[200,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.2,0],[300,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Raw Prime Fish Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Vegetables","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Raw Mutton","Value":{"d":[50,500]}},{"Key":"Raw Prime Meat","Value":{"d":[50,200]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,80]}},{"Key":"Vegetables","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":6000,"affinityIncreasePL":150,"torporDepletionPS0":3,"foodConsumptionBase":0.001736,"foodConsumptionMult":176.03154,"wakeAffinityMult":2.5,"wakeFoodDeplMult":1.2,"violent":true},"immobilizedBy":["Bola","Large Bear Trap","Plant Species Y"]},{"name":"Onyc","colors":[{"name":"Main Body","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Claws","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Membrane Shading","colorIds":[21,23,28,32,33,8,14]},{"name":null,"colorIds":[]},{"name":"Abdomen and Legs","colorIds":[21,23,28,32,33,8,14]},{"name":"Wing Membrane","colorIds":[21,23,28,32,33,8,14]}],"statsRaw":[[250,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[50,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[200,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":3000,"affinityIncreasePL":90,"foodConsumptionBase":0.002893,"foodConsumptionMult":192.034409,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false}},{"name":"Oviraptor","breeding":{"gestationTime":0,"incubationTime":4090.581787,"maturationTime":75757.570313,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":30},"colors":[{"name":"Body","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Crest and Beak","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Feathers","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":"Patterning","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[140,0.2,0.27,0.5,0],[120,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0.15],[100,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,1,0.15],[125,0.06,0,0.5,0]],"taming":{"eats":["Fertilized Giganotosaurus Egg","Giganotosaurus Egg","Fertilized Quetzal Egg","Quetzal Egg","Fertilized Rex Egg","Rex Egg","Fertilized Spino Egg","Spino Egg","Bronto Egg","Fertilized Bronto Egg","Carno Egg","Fertilized Carno Egg"],"nonViolent":false,"specialFoodValues":[{"Key":"Fertilized Giganotosaurus Egg","Value":{"d":[300,1200]}},{"Key":"Giganotosaurus Egg","Value":{"d":[300,1200]}},{"Key":"Fertilized Quetzal Egg","Value":{"d":[200,550]}},{"Key":"Quetzal Egg","Value":{"d":[200,550]}},{"Key":"Fertilized Rex Egg","Value":{"d":[200,100]}},{"Key":"Rex Egg","Value":{"d":[200,100]}},{"Key":"Fertilized Spino Egg","Value":{"d":[137.5,80]}},{"Key":"Spino Egg","Value":{"d":[137.5,80]}},{"Key":"Bronto Egg","Value":{"d":[250,60]}},{"Key":"Fertilized Bronto Egg","Value":{"d":[250,60]}},{"Key":"Carno Egg","Value":{"d":[137.5,30]}},{"Key":"Fertilized Carno Egg","Value":{"d":[137.5,30]}}],"tamingIneffectiveness":16.666668,"affinityNeeded0":960,"affinityIncreasePL":42,"torporDepletionPS0":0.208,"foodConsumptionBase":0.001302,"foodConsumptionMult":768.049133,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Ovis","breeding":{"gestationTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[100,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[90,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[85,0.06,0,0.5,0]],"taming":{"eats":["Sweet Vegetable Cake"],"nonViolent":true,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,200000]}}],"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"foodConsumptionBase":0.003156,"foodConsumptionMult":1584.283936,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"name":"Pachy","breeding":{"gestationTime":0,"incubationTime":5142.445801,"maturationTime":95238.09375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Spikes and Claws","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Beak and Plates","colorIds":[19,21,23,25,26,28,30]},{"name":"Body Accent","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[175,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[150,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[160,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Dilo","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.5,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.2666,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":0.125,"Value":"Head, Neck"}]},{"name":"Pachyrhinosaurus","breeding":{"gestationTime":0,"incubationTime":8999.280273,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":"unknown","colorIds":[42,22,24,46,45,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[20,22,24,46,45,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[20,22,24,46,45,29,31,33,34,13,35,14]},{"name":"unknown","colorIds":[21,23,25,47,32,33,8,14]}],"statsRaw":[[375,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[365,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[250,0.06,0,0.5,0]],"taming":{"eats":["Bug Repellant","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"nonViolent":false,"specialFoodValues":[{"Key":"Bug Repellant","Value":{"d":[25,200]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":4500,"affinityIncreasePL":175,"torporDepletionPS0":3.5,"foodConsumptionBase":0.003156,"foodConsumptionMult":352.06308,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":0.15,"Value":"Head"}]},{"name":"Paracer","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Underside","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[1140,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[6500,0.1,0.1,0,0],[850,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[1300,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Pachy","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.0923,"affinityNeeded0":6500,"affinityIncreasePL":325,"torporDepletionPS0":0.9025,"foodConsumptionBase":0.0035,"foodConsumptionMult":327.6474,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Parasaur","breeding":{"gestationTime":0,"incubationTime":5142.445801,"maturationTime":95238.09375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Beak and Frill","colorIds":[20,22,24,26,27,33,34,13,35,14,36]},{"name":"Frill Edge","colorIds":[19,21,23,25,26,32,33,8,14]},{"name":"Crest","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14,36]},{"name":"Patterning","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[19,21,23,25,26,32,33,8,14]}],"statsRaw":[[200,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[280,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.67,0],[150,0.06,0,0.5,0]],"taming":{"eats":["Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.4,"affinityNeeded0":1500,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001929,"foodConsumptionMult":864.005554,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":2,"Value":"Head"}]},{"name":"Pegomastax","breeding":{"gestationTime":0,"incubationTime":4090.581787,"maturationTime":111111.109375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":28,"eggTempMax":32},"colors":[{"name":"Body Main","colorIds":[34,20,21,22,23,24,28,14,13,33]},{"name":"Quills","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Beak","colorIds":[21,23,33,47,43,28,50]},{"name":null,"colorIds":[]},{"name":"Back Fur","colorIds":[37,39,33,34,13,35,14]},{"name":"Limb Highlights","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[200,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[55,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.5,0],[30,0.06,0,0.5,0]],"taming":{"eats":["Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"nonViolent":true,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":1.333333,"affinityNeeded0":1900,"affinityIncreasePL":35,"foodConsumptionBase":0.000868,"foodConsumptionMult":2880.184326,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Pelagornis","breeding":{"gestationTime":0,"incubationTime":5999.520508,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":29,"eggTempMax":32},"colors":[{"name":"Feathers","colorIds":[19,20,21,22,23,24,25,26,27,32,33,34,8,13,35,14,36]},{"name":"unknown","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":null,"colorIds":[]},{"name":"Skin and Wind/Tail Tips","colorIds":[20,22,24,26,27,33,34,13,35,14]}],"statsRaw":[[240,0.2,0.27,0.5,0],[180,0.05,0.04,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[150,0.02,0.03,0,0],[1,0.05,0.075,0.65,0.4],[1,0,0,0.365,0],[120,0.06,0,0.5,0]],"NoImprintingForSpeed":true,"taming":{"eats":["Kibble","Raw Prime Fish Meat","Cooked Prime Fish Meat","Raw Fish Meat"],"favoriteKibble":"Pegomastax","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":216.029373,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Neck"}]},{"name":"Phiomia","breeding":{"gestationTime":35714.285156,"incubationTime":0,"maturationTime":416666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[23,24,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Spots 1","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Spots 2","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[300,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0.15],[200,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.35,0],[240,0.06,0,0.5,0]],"taming":{"eats":["Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.003156,"foodConsumptionMult":1584.283936,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head"}]},{"name":"Plesiosaur","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":666666.625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":"Facial Fins","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[2400,0.12,0.162,0.15,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[5000,0.1,0.1,0,0.15],[800,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[1600,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Rex","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":0.75,"affinityNeeded0":5000,"affinityIncreasePL":250,"torporDepletionPS0":2.133333,"foodConsumptionBase":0.003858,"foodConsumptionMult":180.001144,"violent":true}},{"name":"Procoptodon","breeding":{"gestationTime":14285.713867,"incubationTime":0,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Back Stripes","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Inner Ear, Snout, Belly, Appendages","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[400,0.2,0.27,0.75,0],[350,0.1,0.1,0.1,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]],"taming":{"eats":["Rare Mushroom","Plant Species X Seed"],"nonViolent":false,"specialFoodValues":[{"Key":"Rare Mushroom","Value":{"d":[75,90]}},{"Key":"Plant Species X Seed","Value":{"d":[50,45]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.6666,"foodConsumptionBase":0.001929,"foodConsumptionMult":648.00415,"violent":true},"immobilizedBy":["Bola","Large Bear Trap","Plant Species Y"]},{"name":"Pteranodon","breeding":{"gestationTime":0,"incubationTime":5999.520508,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":29,"eggTempMax":32},"colors":[{"name":"Patterning","colorIds":[19,20,21,22,23,24,25,26,27,32,33,34,8,13,35,14,36]},{"name":"Wing Base","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Face, Crest, and Hands","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Inner Crest","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Wing Membrane","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]}],"statsRaw":[[210,0.2,0.15,0.5,0],[150,0.05,0.04,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[120,0.02,0.03,0,0],[1,0.05,0.075,0.65,0.4],[1,0,0,0.35,0],[120,0.06,0,0.5,0]],"TamedBaseHealthMultiplier":0.9,"NoImprintingForSpeed":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Dodo","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":216.029373,"violent":true},"immobilizedBy":["Bola","Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head"}]},{"name":"Pulmonoscorpius","colors":[{"name":"Plate Edges","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Claw Stripes, Barb Patterning, Body Joints","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Limb Joints","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Body","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Plates","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Legs","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[280,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[200,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1,0],[150,0.06,0,0.5,0]],"taming":{"eats":["Spoiled Meat","Raw Meat"],"nonViolent":false,"specialFoodValues":[{"Key":"Raw Meat","Value":{"d":[15,15]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":1500,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001929,"foodConsumptionMult":432.002777,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"name":"Purlovia","breeding":{"gestationTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Main Body","colorIds":[20,22,39,37,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Belly","colorIds":[20,33,34,13,35]},{"name":"Highlights","colorIds":[21,38,32,33,8,14]}],"statsRaw":[[275,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[4000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Moschops","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[53.279999,400]}}],"tamingIneffectiveness":3.125,"affinityNeeded0":2250,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"]},{"name":"Quetzal","breeding":{"gestationTime":0,"incubationTime":59995.199219,"maturationTime":666666.625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":5,"eggTempMax":6},"colors":[{"name":"Wing Membrane","colorIds":[19,20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Crest","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Skins","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Freckles","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Beak","colorIds":[21,22,32,33,34,8,13,35,14]},{"name":"Body Feathers","colorIds":[20,22,24,26,27,33,34,13,35,14]}],"statsRaw":[[1200,0.2,0.108,0.5,0],[800,0.05,0.05,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[800,0.02,0.05,0,0],[1,0.04,0.1,0.4,0.4],[1,0,0,0.365,0],[1850,0.06,0,0.5,0]],"TamedBaseHealthMultiplier":0.85,"NoImprintingForSpeed":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Rex","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":0.9375,"affinityNeeded0":6850,"affinityIncreasePL":300,"torporDepletionPS0":3.4,"foodConsumptionBase":0.0035,"foodConsumptionMult":140,"violent":true},"immobilizedBy":["Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head"}]},{"name":"Raptor","breeding":{"gestationTime":0,"incubationTime":7199.423828,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":20,"eggTempMax":28},"colors":[{"name":"Body Accent","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Feather Tips","colorIds":[19,21,23,25,26,28,30]},{"name":null,"colorIds":[]},{"name":"Body","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Feathers","colorIds":[19,21,23,25,26,28,30]},{"name":"Belly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[200,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[140,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[180,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Parasaur","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Rex","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":32,"eggTempMax":34},"colors":[{"name":"Body","colorIds":[20,22,24,27,33,34,13,35,14,36]},{"name":"Spine","colorIds":[20,22,24,27,33,34,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[20,22,24,27,33,34,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"Belly","colorIds":[20,22,24,27,33,34,13,35,14,36]}],"statsRaw":[[1100,0.2,0.27,0.5,0],[420,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[500,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[1550,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Pulmonoscorpius","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.25,"affinityNeeded0":3450,"affinityIncreasePL":150,"torporDepletionPS0":0.725,"foodConsumptionBase":0.002314,"foodConsumptionMult":180.063385,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Sabertooth","breeding":{"gestationTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[22,24,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Mane and Face","colorIds":[21,23,32,33,8,14]},{"name":"Stripes","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[250,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[200,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Brontosaurus","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head"}]},{"name":"Sarco","breeding":{"gestationTime":0,"incubationTime":8999.280273,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":30,"eggTempMax":34},"colors":[{"name":"Body","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Stripe, Face, and Tail","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":"Snout and Tail Tip","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":"Plates","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":"Body Accent","colorIds":[23,24,26,27,33,34,13,35,14]}],"statsRaw":[[400,0.2,0.27,0.65,0],[450,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[300,0.02,0.04,0,0],[1,0.05,0.1,0.8,0.5],[1,0,0.025,0.6,0],[400,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Triceratops","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":2000,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001578,"foodConsumptionMult":211.237854,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"]},{"name":"Spinosaur","breeding":{"gestationTime":0,"incubationTime":13845.046875,"maturationTime":256410.25,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":30,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Sail Edge","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Face, Tail, Inner Sail, and Frill","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36]},{"name":"Belly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[700,0.2,0.27,0.5,0],[350,0.1,0.1,0,0],[650,0.1,0.1,0,0],[2600,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[850,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Argentavis","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.5,"affinityNeeded0":3200,"affinityIncreasePL":150,"torporDepletionPS0":2.133333,"foodConsumptionBase":0.002066,"foodConsumptionMult":150,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Stegosaurus","breeding":{"gestationTime":0,"incubationTime":9999.200195,"maturationTime":185185.171875,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spine","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Plate Base and Spike Base","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Plate Edge and Spike Tips","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Belly","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[650,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[6000,0.1,0.1,0,0],[500,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.964,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Sarco","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.1,"affinityNeeded0":6000,"affinityIncreasePL":300,"torporDepletionPS0":0.3,"foodConsumptionBase":0.005341,"foodConsumptionMult":208.034286,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":1.67,"Value":"Head, Neck"}]},{"name":"Tapejara","breeding":{"gestationTime":0,"incubationTime":5999.520508,"maturationTime":196078.421875,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":29,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,32,33,34,8,13,35,14,36]},{"name":"Wing and Sail Markings","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"unknown","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Wings and Sail","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Back, Beak and Sail Spines","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Sail and Throat","colorIds":[20,22,24,26,27,33,34,13,35,14]}],"statsRaw":[[325,0.2,0.27,0.5,0],[250,0.05,0.06,0,0],[150,0.1,0.1,0,0],[1600,0.1,0.1,0,0.15],[280,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0,0.365,0],[450,0.06,0,0.5,0]],"NoImprintingForSpeed":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Allosaurus","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":2200,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":216.029373,"violent":true},"immobilizedBy":["Bola","Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head"}]},{"name":"Terror Bird","breeding":{"gestationTime":0,"incubationTime":7199.423828,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":20,"eggTempMax":28},"colors":[{"name":"Feathers","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Belly/Wings Accent","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Beak, Skin, Legs","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[270,0.2,0.27,0.5,0],[160,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[120,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[300,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Gallimimus","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":1600,"affinityIncreasePL":85,"torporDepletionPS0":2.25,"foodConsumptionBase":0.001578,"foodConsumptionMult":352.06308,"violent":true},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Therizinosaurus","breeding":{"gestationTime":0,"incubationTime":5999.520508,"maturationTime":416666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":32},"colors":[{"name":"Feathers Main","colorIds":[20,22,24,56,52,33,34,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"Body Highlights","colorIds":[48,23,24,25,32,8,36,50]},{"name":null,"colorIds":[]},{"name":"Feather Highlights","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Body Main","colorIds":[21,23,47,35,52,32,33,8,14]}],"statsRaw":[[870,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[365,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[925,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Megalosaurus","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[119.969994,400]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.06,"affinityNeeded0":6800,"affinityIncreasePL":160,"torporDepletionPS0":2.833333,"foodConsumptionBase":0.002314,"foodConsumptionMult":180.063385,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Thylacoleo","breeding":{"gestationTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Main Body","colorIds":[20,22,33,34,13,14,43,8,42,9,10]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Fur Highlights","colorIds":[20,33,34,13,35,22,56,21,43,42,44]},{"name":"Stripes and Belly","colorIds":[21,38,32,33,8,14]}],"statsRaw":[[700,0.2,0.27,0.5,0],[400,0.1,0.1,0,0],[200,0.1,0.1,0,0],[1500,0.1,0.1,0,0.15],[400,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[700,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Cooked Lamb Chop","Raw Mutton","Cooked Prime Meat","Prime Meat Jerky","Cooked Meat","Cooked Meat Jerky","Raw Prime Meat"],"favoriteKibble":"Titanoboa","nonViolent":false,"specialFoodValues":[{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,96.25]}},{"Key":"Raw Mutton","Value":{"d":[50,50]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,35]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,35]}},{"Key":"Cooked Meat","Value":{"d":[25,20]}},{"Key":"Cooked Meat Jerky","Value":{"d":[25,20]}},{"Key":"Raw Prime Meat","Value":{"d":[50,20]}}],"tamingIneffectiveness":3.125,"affinityNeeded0":2250,"affinityIncreasePL":60,"torporDepletionPS0":1.85,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"violent":true},"immobilizedBy":["Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":1.5,"Value":"Head"}]},{"name":"Titanosaur","colors":[{"name":"Body","colorIds":[21,23,25,26,32,33,8,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Underside","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[230000,0,0,-80000,0],[2000,0,0,0,0],[600,0,0,0,0],[8640,0,0,0,0],[50000,0,0,0,0],[1,0,0,0,0],[1,0,0,0,0],[25000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Carbonemys","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[53.279999,400]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.06,"affinityNeeded0":10000,"affinityIncreasePL":500,"foodConsumptionBase":0.1,"foodConsumptionMult":13,"violent":true}},{"name":"Triceratops","breeding":{"gestationTime":0,"incubationTime":8999.280273,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Face and Feet","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Patterning","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Frill","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Body Accent","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[375,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[365,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1.226,0],[250,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Carnotaurus","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.003156,"foodConsumptionMult":352.06308,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":0.15,"Value":"Head"}]},{"name":"Troodon","breeding":{"gestationTime":0,"incubationTime":4090.581787,"maturationTime":75757.570313,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":28,"eggTempMax":32},"colors":[{"name":"Main Body","colorIds":[20,22,24,48,52,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Body Highlights and Feathers","colorIds":[21,23,42,48,51,32,33,8,14]},{"name":"Belly","colorIds":[21,23,47,13,28,32,33,8,14]}],"statsRaw":[[200,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[100,0.1,0.1,0,0],[140,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[180,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":8.333333,"affinityNeeded0":480,"affinityIncreasePL":45,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Tusoteuthis","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":1010100.875,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":-75,"eggTempMax":75},"colors":[{"name":"Body Highlights","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":"Tentacle Highlights","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Tentacle Main","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Body Main","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[3333,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[215,0.1,0.1,0,0],[3200,0.1,0.1,0,0.15],[800,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1,0],[1800,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Black Pearl","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Black Pearl","Value":{"d":[30,50,50]}},{"Key":"Raw Mutton","Value":{"d":[50,37.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,20.625,30]}},{"Key":"Raw Prime Meat","Value":{"d":[50,15]}}],"tamingIneffectiveness":0.75,"affinityNeeded0":12500,"affinityIncreasePL":125,"foodConsumptionBase":0.005,"foodConsumptionMult":180.001144,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false},"boneDamageAdjusters":[{"Key":3,"Value":"Beak"}]},{"name":"Unicorn","breeding":{"gestationTime":47619.042969,"incubationTime":0,"maturationTime":208333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800},"statsRaw":[[240,0.2,0.27,0.5,0],[560,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.0175,0.2,0],[420,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Sweet Vegetable Cake"],"favoriteKibble":"Troodon","nonViolent":true,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[13.33,400]}},{"Key":"Vegetables","Value":{"d":[20,210]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.4,"affinityNeeded0":3600,"affinityIncreasePL":180,"foodConsumptionBase":0.001929,"foodConsumptionMult":432.002777,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":2,"Value":"Head"}]},{"name":"Woolly Rhino","breeding":{"gestationTime":14285.713867,"incubationTime":0,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Skins","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":"Back","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Underside","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Horn","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[500,0.2,0.27,0.5,0],[120,0.1,0.1,0,0],[100,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[750,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1.226,0],[600,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Terror Bird","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[53.279999,400]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":1.25,"affinityNeeded0":3450,"affinityIncreasePL":125,"torporDepletionPS0":0.9,"foodConsumptionBase":0.003156,"foodConsumptionMult":150,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Yutyrannus","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":666666.625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":32,"eggTempMax":34},"colors":[{"name":"Body Main","colorIds":[37,24,47,33,34,13,35,14,18]},{"name":"Facial crest","colorIds":[42,22,24,33,34,13,35,14,38]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Facial Highlights and Stripes","colorIds":[44,22,43,46,33,34,13,35,14,18,48]},{"name":"Feet and Hands","colorIds":[42,43,24,49,33,34,13,35,14,18]}],"statsRaw":[[1100,0.2,0.27,0.5,0],[420,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[500,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[1550,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Kentrosaurus","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.25,"affinityNeeded0":4250,"affinityIncreasePL":175,"torporDepletionPS0":0.725,"foodConsumptionBase":0.002314,"foodConsumptionMult":180.063385,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Zomdodo","colors":[{"name":"unknown","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[21,23,32,33,8,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"unknown","colorIds":[19,21,23,25,26,28,30,32,33,8,14]}],"statsRaw":[[700,0.2,0.27,0.2,0],[1000,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0,0,0,0.15],[170,0.02,0.04,0,0],[1,0.015,0.1,0.2,0],[1,0,0.025,2,0],[1000,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.333333,"affinityNeeded0":450,"affinityIncreasePL":22.5,"foodConsumptionBase":0,"foodConsumptionMult":0,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":2,"Value":"Head, Neck"}]},{"name":"Fire Wyvern","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":80,"eggTempMax":90},"colors":[{"name":"Body Main","colorIds":[39,38,35,22,13,43]},{"name":null,"colorIds":[]},{"name":"Scales Main","colorIds":[13,21,33,39,42,43,22]},{"name":"Wings Main","colorIds":[39,38,35,22,13,43]},{"name":"Fins Highlight","colorIds":[10,44,20,21,35,42]},{"name":"Body Highlights","colorIds":[10,44,43,21,33,42]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[275,0.05,0.05,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0,0,0],[725,0.06,0,0.5,0]],"NoImprintingForSpeed":true,"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.5,"affinityNeeded0":8500,"affinityIncreasePL":150,"foodConsumptionBase":0.000185,"foodConsumptionMult":199.983994,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Jerboa","breeding":{"gestationTime":9523.80957,"incubationTime":0,"maturationTime":111111.109375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Paws and Back","colorIds":[13,14,15,20,22,34,35,37,39,55,56]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Stripes","colorIds":[8,9,10,13,14,36,20,22,33,31,35,20,17,55,56]},{"name":"Belly and Highlights","colorIds":[13,9,33,39,37,55,56]}],"statsRaw":[[55,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[55,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.5,0],[30,0.06,0,0.5,0]],"taming":{"eats":["Plant Species Y Seed","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"nonViolent":false,"specialFoodValues":[{"Key":"Plant Species Y Seed","Value":{"d":[65,160]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":1.333333,"affinityNeeded0":1350,"affinityIncreasePL":22.5,"torporDepletionPS0":0.3,"foodConsumptionBase":0.000868,"foodConsumptionMult":2880.184326,"violent":true},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Lightning Wyvern","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":80,"eggTempMax":90},"colors":[{"name":"Body Main","colorIds":[30,28,14,51,8,35]},{"name":"Fins","colorIds":[49,50,31,14,30,8,51,52]},{"name":"Wings","colorIds":[49,50,31,35,28,30,8,51]},{"name":"***NOT USED****","colorIds":[1]},{"name":"Scales Top","colorIds":[49,50,31,14,30,8,51,52]},{"name":"Fins","colorIds":[49,50,31,14,30,8,51,52]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[275,0.05,0.05,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0,0,0],[725,0.06,0,0.5,0]],"NoImprintingForSpeed":true,"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.5,"affinityNeeded0":8500,"affinityIncreasePL":150,"foodConsumptionBase":0.000185,"foodConsumptionMult":199.983994,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Lymantria","colors":[{"name":"Facial Highlights","colorIds":[33,21,28,8,32]},{"name":"Wings Main","colorIds":[53,10,11,19,25,28,30,13]},{"name":"Legs","colorIds":[33,21,28,8,32]},{"name":"Wing Highlights","colorIds":[29,4,54,31,16,17,27,8,14]},{"name":"Facial Main","colorIds":[33,21,28,8,32]},{"name":"Stinger and Underbody","colorIds":[33,21,28,8,32]}],"statsRaw":[[260,0.2,0.27,0.5,0],[150,0.05,0.06,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[175,0.02,0.03,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0,0,0],[550,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Thorny Dragon","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":1800,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true},"immobilizedBy":["Bola","Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head"}]},{"name":"Mantis","colors":[{"name":"Body","colorIds":[9,10,16,17,15,11,33,27,26]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[9,10,16,17,15,11,33,27,26]},{"name":"Underneath","colorIds":[9,10,16,17,15,11,33,27,26]}],"statsRaw":[[275,0.2,0.135,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[220,0.02,0.08,0,0],[1,0.025,0.1,0.5,0.4],[1,0,0.025,0.67,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Deathworm Horn","Spoiled Meat","Raw Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Deathworm Horn","Value":{"d":[300,450]}},{"Key":"Raw Meat","Value":{"d":[15,15]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":1800,"affinityIncreasePL":75,"foodConsumptionBase":0.002314,"foodConsumptionMult":360,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Chain Bola","Bear Trap","Plant Species Y"]},{"name":"Morellatops","breeding":{"gestationTime":0,"incubationTime":8999.280273,"maturationTime":111111.109375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[400,0.2,0.27,0.5,0],[220,0.1,0.1,0,0],[150,0.1,0.1,0,0],[6000,0.1,0.1,0,0],[440,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.964,0],[315,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Sweet Vegetable Cake"],"favoriteKibble":"Vulture","nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.005341,"foodConsumptionMult":208.034286,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"],"boneDamageAdjusters":[{"Key":0.5,"Value":"Tail"},{"Key":1,"Value":"Head"}]},{"name":"Poison Wyvern","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":80,"eggTempMax":90},"colors":[{"name":"Body Main","colorIds":[45,46,35,27,26,24,8,47,40]},{"name":"Wings Main","colorIds":[45,46,35,27,26,24,8]},{"name":"Scales Main","colorIds":[47,32,25,23,8]},{"name":"Wings Highlight","colorIds":[7,11,23,24,25,26,27,30,45,46]},{"name":"Scale Highlights","colorIds":[47,32,25,23,8,48]},{"name":"Body Highlights","colorIds":[32,25,23,8]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[275,0.05,0.05,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0,0,0],[725,0.06,0,0.5,0]],"NoImprintingForSpeed":true,"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.5,"affinityNeeded0":8500,"affinityIncreasePL":150,"foodConsumptionBase":0.000185,"foodConsumptionMult":199.983994,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Rock Elemental","colors":[{"name":null,"colorIds":[1]},{"name":"Body","colorIds":[1,17,19,23,24,28,36,14]},{"name":null,"colorIds":[1]},{"name":null,"colorIds":[1]},{"name":null,"colorIds":[1]},{"name":null,"colorIds":[1]}],"statsRaw":[[25000,0.0125,0.135,-22000,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[6000,0.1,0.1,0,0],[660,0.02,0.04,0,0],[1,0.05,0.1,0.125,0.4],[1,0,0.025,0,0],[5000,0.02,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Sulfur","Clay"],"favoriteKibble":"Mantis","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[19.9995,400]}},{"Key":"Sulfur","Value":{"d":[25,25]}},{"Key":"Clay","Value":{"d":[25,15]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":6500,"affinityIncreasePL":325,"torporDepletionPS0":0.325,"foodConsumptionBase":0.002543,"foodConsumptionMult":180.063385,"violent":true}},{"name":"Thorny Dragon","breeding":{"gestationTime":0,"incubationTime":8999.280273,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[260,0.2,0.27,0.66,0],[350,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[300,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[450,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky","Raw Fish Meat"],"favoriteKibble":"Camelsaurus","nonViolent":false,"specialFoodValues":[{"Key":"Raw Mutton","Value":{"d":[50,325]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,165]}},{"Key":"Raw Prime Meat","Value":{"d":[50,130]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,60]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,60]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,52]}},{"Key":"Raw Meat","Value":{"d":[50,40]}},{"Key":"Cooked Prime Fish Meat","Value":{"d":[25.686001,24]}},{"Key":"Cooked Meat","Value":{"d":[25,20]}},{"Key":"Cooked Meat Jerky","Value":{"d":[25,20]}},{"Key":"Raw Fish Meat","Value":{"d":[25,16]}}],"tamingIneffectiveness":1.5,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.5,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"violent":true},"immobilizedBy":["Bola","Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":2.5,"Value":"Head"}]},{"name":"Vulture","breeding":{"gestationTime":0,"incubationTime":4864.475586,"maturationTime":90090.085938,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":35,"eggTempMax":38},"colors":[{"name":"Body Main","colorIds":[33,34,35,22,20,14,13]},{"name":"Head Highlight","colorIds":[19,20,21,22,28,29,30,31,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Head Main","colorIds":[37,32,33,21,35]},{"name":"Body Highlights","colorIds":[33,34,35,22,20,14,13,32,21]}],"statsRaw":[[125,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[50,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Spoiled Meat","Raw Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Raw Meat","Value":{"d":[15,15]}}],"tamingIneffectiveness":4.166666,"affinityNeeded0":655,"affinityIncreasePL":45,"foodConsumptionBase":0.001302,"foodConsumptionMult":1152.07373,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"],"boneDamageAdjusters":[{"Key":3,"Value":"Head"}]},{"name":"Zombie Fire Wyvern","breeding":{"gestationTime":0,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[39,38,35,22,13,43]},{"name":null,"colorIds":[]},{"name":"Scales Main","colorIds":[13,21,33,39,42,43,22]},{"name":"Wings Main","colorIds":[39,38,35,22,13,43]},{"name":"Fins Highlight","colorIds":[10,44,20,21,35,42]},{"name":"Body Highlights","colorIds":[10,44,43,21,33,42]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[275,0.05,0.05,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0,0,0],[725,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.5,"affinityNeeded0":8500,"affinityIncreasePL":150,"foodConsumptionBase":0.000185,"foodConsumptionMult":199.983994,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Zombie Lightning Wyvern","breeding":{"gestationTime":0,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[30,28,14,51,8,35]},{"name":"Fins","colorIds":[49,50,31,14,30,8,51,52]},{"name":"Wings","colorIds":[49,50,31,35,28,30,8,51]},{"name":"wings","colorIds":[49,50,30,28,8,51]},{"name":"Scales Top","colorIds":[49,50,31,14,30,8,51,52]},{"name":"Fins","colorIds":[49,50,31,14,30,8,51,52]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[275,0.05,0.05,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0,0,0],[725,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.5,"affinityNeeded0":8500,"affinityIncreasePL":150,"foodConsumptionBase":0.000185,"foodConsumptionMult":199.983994,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Zombie Poison Wyvern","breeding":{"gestationTime":0,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[45,46,35,27,26,24,8,47,40]},{"name":"Wings Main","colorIds":[45,46,35,27,26,24,8]},{"name":"Scales Main","colorIds":[47,32,25,23,8]},{"name":"Wings Highlight","colorIds":[7,11,23,24,25,26,27,30,45,46]},{"name":"Scale Highlights","colorIds":[47,32,25,23,8,48]},{"name":"Body Highlights","colorIds":[32,25,23,8]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[275,0.05,0.05,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0,0,0],[725,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.5,"affinityNeeded0":8500,"affinityIncreasePL":150,"foodConsumptionBase":0.000185,"foodConsumptionMult":199.983994,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"]}]} \ No newline at end of file diff --git a/ARKBreedingStats/ver.txt b/ARKBreedingStats/ver.txt index dcd8579c..2f8cdb55 100644 --- a/ARKBreedingStats/ver.txt +++ b/ARKBreedingStats/ver.txt @@ -1 +1 @@ -258.0.1,0.23.4 \ No newline at end of file +258.0.2,0.23.5 \ No newline at end of file