From ee6f3e4dca158014ccff1fb76bdb8b92de6ed392 Mon Sep 17 00:00:00 2001 From: cadaei Date: Sun, 7 Jan 2018 22:08:57 +0100 Subject: [PATCH] fixed extraction-issue for HP of aberrant species. fix for crash in raising-tab if one parent was not declared. changed stat-names for glow-species in tester and extractor. fixed visual if creature in library is set to mature. fixed recalculation of breeding plan after a creature is set to ready-to-mate. fixed edit-timer-control in raising-tab. updated reaper-king values. --- ARKBreedingStats/BreedingPlan.Designer.cs | 8 +-- ARKBreedingStats/Extraction.cs | 12 +++- ARKBreedingStats/Form1.Designer.cs | 8 +-- ARKBreedingStats/Form1.cs | 10 ++- ARKBreedingStats/Properties/AssemblyInfo.cs | 2 +- ARKBreedingStats/RaisingControl.Designer.cs | 1 + ARKBreedingStats/RaisingControl.cs | 5 ++ ARKBreedingStats/Stats.cs | 1 + ARKBreedingStats/Utils.cs | 14 +++- ARKBreedingStats/Values.cs | 4 ++ ARKBreedingStats/json/ocr_2560x1440_100.json | 2 +- ARKBreedingStats/json/values.json | 2 +- ARKBreedingStats/raising/ParentStats.cs | 4 +- .../settings/Settings.Designer.cs | 64 +++++++++---------- ARKBreedingStats/ver.txt | 2 +- 15 files changed, 86 insertions(+), 53 deletions(-) diff --git a/ARKBreedingStats/BreedingPlan.Designer.cs b/ARKBreedingStats/BreedingPlan.Designer.cs index 51fbde6b..7cc66ee9 100644 --- a/ARKBreedingStats/BreedingPlan.Designer.cs +++ b/ARKBreedingStats/BreedingPlan.Designer.cs @@ -364,19 +364,19 @@ private void InitializeComponent() // tagSelectorList1 // this.tagSelectorList1.AutoScroll = true; - this.tagSelectorList1.Location = new System.Drawing.Point(6, 66); + this.tagSelectorList1.Location = new System.Drawing.Point(6, 75); this.tagSelectorList1.Name = "tagSelectorList1"; - this.tagSelectorList1.Size = new System.Drawing.Size(174, 341); + this.tagSelectorList1.Size = new System.Drawing.Size(174, 332); this.tagSelectorList1.TabIndex = 3; // // label1 // this.label1.Location = new System.Drawing.Point(6, 3); this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(174, 60); + this.label1.Size = new System.Drawing.Size(174, 69); this.label1.TabIndex = 2; this.label1.Text = "Consider creatures by tag. \r\n✕ excludes creatures, ✓ includes creatures (even if " + - "they have an exclusive tag)."; + "they have an exclusive tag). Add tags in the library with F3."; // // buttonApplyNewWeights // diff --git a/ARKBreedingStats/Extraction.cs b/ARKBreedingStats/Extraction.cs index e3f1157c..8d5bb328 100644 --- a/ARKBreedingStats/Extraction.cs +++ b/ARKBreedingStats/Extraction.cs @@ -282,7 +282,17 @@ public void extractLevels(int speciesI, int level, List statIOs, double double maxLW = 0; if (Values.V.species[speciesI].stats[s].BaseValue > 0 && Values.V.species[speciesI].stats[s].IncPerWildLevel > 0) { - maxLW = Math.Round(((inputValue / (postTamed ? 1 + lowerTEBound * Values.V.species[speciesI].stats[s].MultAffinity : 1) - (postTamed ? Values.V.species[speciesI].stats[s].AddWhenTamed : 0)) / (postTamed ? statBaseValueTamed : statBaseValueWild) - 1) / Values.V.species[speciesI].stats[s].IncPerWildLevel); // floor is too unprecise + double multAffinityFactor = Values.V.species[speciesI].stats[s].MultAffinity; + if (postTamed) + { + // the multiplicative bonus is only multiplied with the TE if it is positive (i.e. negative boni won't get less bad if the TE is low) + if (multAffinityFactor > 0) + multAffinityFactor *= lowerTEBound; + multAffinityFactor += 1; + } + else + multAffinityFactor = 1; + maxLW = Math.Round(((inputValue / multAffinityFactor - (postTamed ? Values.V.species[speciesI].stats[s].AddWhenTamed : 0)) / (postTamed ? statBaseValueTamed : statBaseValueWild) - 1) / Values.V.species[speciesI].stats[s].IncPerWildLevel); // floor is too unprecise } if (s != 7 && maxLW > levelWildFromTorporRange[1]) { maxLW = levelWildFromTorporRange[1]; } // torpor level can be too high right after taming (torpor bug in the game) diff --git a/ARKBreedingStats/Form1.Designer.cs b/ARKBreedingStats/Form1.Designer.cs index 999b4bc6..29a71103 100644 --- a/ARKBreedingStats/Form1.Designer.cs +++ b/ARKBreedingStats/Form1.Designer.cs @@ -1483,7 +1483,7 @@ private void InitializeComponent() // // creatureInfoInputTester // - this.creatureInfoInputTester.Cooldown = new System.DateTime(2017, 12, 22, 23, 7, 23, 659); + this.creatureInfoInputTester.Cooldown = new System.DateTime(2018, 1, 7, 21, 0, 14, 449); this.creatureInfoInputTester.CreatureName = ""; this.creatureInfoInputTester.CreatureNote = ""; this.creatureInfoInputTester.CreatureOwner = ""; @@ -1493,7 +1493,7 @@ private void InitializeComponent() 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, 12, 22, 23, 7, 23, 660); + this.creatureInfoInputTester.Grown = new System.DateTime(2018, 1, 7, 21, 0, 14, 450); this.creatureInfoInputTester.Location = new System.Drawing.Point(321, 184); this.creatureInfoInputTester.mother = null; this.creatureInfoInputTester.MutationCounter = 0; @@ -1825,7 +1825,7 @@ private void InitializeComponent() // // creatureInfoInputExtractor // - this.creatureInfoInputExtractor.Cooldown = new System.DateTime(2017, 12, 22, 23, 7, 23, 693); + this.creatureInfoInputExtractor.Cooldown = new System.DateTime(2018, 1, 7, 21, 0, 14, 480); this.creatureInfoInputExtractor.CreatureName = ""; this.creatureInfoInputExtractor.CreatureNote = ""; this.creatureInfoInputExtractor.CreatureOwner = ""; @@ -1835,7 +1835,7 @@ private void InitializeComponent() 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, 12, 22, 23, 7, 23, 693); + this.creatureInfoInputExtractor.Grown = new System.DateTime(2018, 1, 7, 21, 0, 14, 481); this.creatureInfoInputExtractor.Location = new System.Drawing.Point(321, 184); this.creatureInfoInputExtractor.mother = null; this.creatureInfoInputExtractor.MutationCounter = 0; diff --git a/ARKBreedingStats/Form1.cs b/ARKBreedingStats/Form1.cs index f178ada3..99114bfa 100644 --- a/ARKBreedingStats/Form1.cs +++ b/ARKBreedingStats/Form1.cs @@ -897,10 +897,13 @@ private void comboBoxSpeciesGlobal_SelectedIndexChanged(object sender, EventArgs speciesIndex = comboBoxSpeciesGlobal.SelectedIndex; creatureInfoInputExtractor.SpeciesIndex = speciesIndex; creatureInfoInputTester.SpeciesIndex = speciesIndex; + bool isglowSpecies = (Values.V.glowSpecies.IndexOf(Values.V.species[speciesIndex].name) != -1); for (int s = 0; s < 8; s++) { activeStats[s] = (Values.V.species[speciesIndex].stats[s].BaseValue > 0) && (s != 2 || !Values.V.species[speciesIndex].doesNotUseOxygen || oxygenForAll); statIOs[s].Enabled = activeStats[s]; + statIOs[s].Title = Utils.statName(s, false, isglowSpecies); + testingIOs[s].Title = Utils.statName(s, false, isglowSpecies); } if (tabControlMain.SelectedTab == tabPageExtractor) { @@ -3070,13 +3073,14 @@ private void removeCooldownGrowingToolStripMenuItem_Click(object sender, EventAr if (c.growingUntil > DateTime.Now) c.growingUntil = DateTime.Now; - i.SubItems[9].Text = "-"; + i.SubItems[10].Text = "-"; // color for cooldown Color forecolor, backcolor; cooldownColors(c, out forecolor, out backcolor); - i.SubItems[9].ForeColor = forecolor; - i.SubItems[9].BackColor = backcolor; + i.SubItems[10].ForeColor = forecolor; + i.SubItems[10].BackColor = backcolor; } + breedingPlan1.breedingPlanNeedsUpdate = true; listViewLibrary.EndUpdate(); } diff --git a/ARKBreedingStats/Properties/AssemblyInfo.cs b/ARKBreedingStats/Properties/AssemblyInfo.cs index 6e761425..459e2deb 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.24.3")] +[assembly: AssemblyFileVersion("0.24.4")] diff --git a/ARKBreedingStats/RaisingControl.Designer.cs b/ARKBreedingStats/RaisingControl.Designer.cs index 71298c6d..eceb9dd9 100644 --- a/ARKBreedingStats/RaisingControl.Designer.cs +++ b/ARKBreedingStats/RaisingControl.Designer.cs @@ -471,6 +471,7 @@ private void InitializeComponent() this.dhmsInputTimerEditTimer.Size = new System.Drawing.Size(136, 26); this.dhmsInputTimerEditTimer.TabIndex = 15; this.dhmsInputTimerEditTimer.Timespan = System.TimeSpan.Parse("00:00:00"); + this.dhmsInputTimerEditTimer.ValueChanged += new ARKBreedingStats.uiControls.dhmsInput.ValueChangedEventHandler(this.dhmsInputTimerEditTimer_ValueChanged); this.dhmsInputTimerEditTimer.TextChanged += new System.EventHandler(this.dhmsInputTimerEditTimer_TextChanged); // // label7 diff --git a/ARKBreedingStats/RaisingControl.cs b/ARKBreedingStats/RaisingControl.cs index 49087a25..c6e149b0 100644 --- a/ARKBreedingStats/RaisingControl.cs +++ b/ARKBreedingStats/RaisingControl.cs @@ -450,6 +450,11 @@ private void dateTimePickerEditTimerFinish_ValueChanged(object sender, EventArgs dhmsInputTimerEditTimer.Timespan = dateTimePickerEditTimerFinish.Value.Subtract(DateTime.Now); } + private void dhmsInputTimerEditTimer_ValueChanged(uiControls.dhmsInput sender, TimeSpan timespan) + { + dateTimePickerEditTimerFinish.Value = DateTime.Now.Add(timespan); + } + private void bSaveTimerEdit_Click(object sender, EventArgs e) { if (iteEdit != null) diff --git a/ARKBreedingStats/Stats.cs b/ARKBreedingStats/Stats.cs index 3d3083db..d9b9e9f1 100644 --- a/ARKBreedingStats/Stats.cs +++ b/ARKBreedingStats/Stats.cs @@ -17,6 +17,7 @@ public static double calculateValue(int speciesIndex, int stat, int levelWild, i { add = Values.V.species[speciesIndex].stats[stat].AddWhenTamed; domMultAffinity = Values.V.species[speciesIndex].stats[stat].MultAffinity; + // the multiplicative bonus is only multiplied with the TE if it is positive (i.e. negative boni won't get less bad if the TE is low) if (domMultAffinity >= 0) domMultAffinity *= tamingEff; domMult = (tamingEff >= 0 ? (1 + domMultAffinity) : 1) * (1 + levelDom * Values.V.species[speciesIndex].stats[stat].IncPerTamedLevel); diff --git a/ARKBreedingStats/Utils.cs b/ARKBreedingStats/Utils.cs index f4e67526..3ab4db26 100644 --- a/ARKBreedingStats/Utils.cs +++ b/ARKBreedingStats/Utils.cs @@ -139,13 +139,21 @@ public static string levelPercentile(int l) return "This level is in the top " + prb[l].ToString("N2") + "% of what you can find."; } - public static string statName(int s, bool abr = false) + public static string statName(int s, bool abr = false, bool glow=false) { if (s >= 0 && s < 8) { string[] statNames; - if (abr) statNames = new string[] { "HP", "St", "Ox", "Fo", "We", "Dm", "Sp", "To" }; - else statNames = new string[] { "Health", "Stamina", "Oxygen", "Food", "Weight", "Damage", "Speed", "Torpidity" }; + if (glow) + { + if (abr) statNames = new string[] { "HP", "CC", "CRe", "Fo", "We", "CRa", "Sp", "To" }; + else statNames = new string[] { "Health", "Ch Capacity", "Ch Regen", "Food", "Weight", "Ch Emission Range", "Speed", "Torpidity" }; + } + else + { + if (abr) statNames = new string[] { "HP", "St", "Ox", "Fo", "We", "Dm", "Sp", "To" }; + else statNames = new string[] { "Health", "Stamina", "Oxygen", "Food", "Weight", "Damage", "Speed", "Torpidity" }; + } return statNames[s]; } return ""; diff --git a/ARKBreedingStats/Values.cs b/ARKBreedingStats/Values.cs index ebdf1e7c..87124501 100644 --- a/ARKBreedingStats/Values.cs +++ b/ARKBreedingStats/Values.cs @@ -45,6 +45,8 @@ public class Values public double tamingSpeedMultiplierSP = 1; public bool celsius = true; + public List glowSpecies = new List(); + public Values() { } @@ -105,6 +107,8 @@ public bool loadValues() sp.initialize(); _V.speciesNames.Add(sp.name); } + + _V.glowSpecies = new List { "Bulbdog", "Featherlight", "Glowbug", "Glowtail", "Shinehorn" }; } //saveJSON(); diff --git a/ARKBreedingStats/json/ocr_2560x1440_100.json b/ARKBreedingStats/json/ocr_2560x1440_100.json index 2708f993..e65986d9 100644 --- a/ARKBreedingStats/json/ocr_2560x1440_100.json +++ b/ARKBreedingStats/json/ocr_2560x1440_100.json @@ -1 +1 @@ -{"description":"","fontSizes":[13,15,21,16],"guiZoom":100,"labelRectangles":[{"height":15,"width":268,"x":1220,"y":679},{"height":15,"width":268,"x":1220,"y":736},{"height":15,"width":268,"x":1220,"y":793},{"height":15,"width":268,"x":1220,"y":851},{"height":15,"width":268,"x":1220,"y":908},{"height":15,"width":200,"x":1288,"y":966},{"height":15,"width":200,"x":1288,"y":1023},{"height":15,"width":250,"x":1238,"y":1080},{"height":16,"width":164,"x":1324,"y":1120},{"height":15,"width":132,"x":1219,"y":266},{"height":21,"width":270,"x":1144,"y":218},{"height":16,"width":202,"x":1178,"y":311},{"height":13,"width":92,"x":1238,"y":291}],"letterArrays":[[[2,0,3,3,3,3,1,1,0,3,3],[8,0,72,40,40,254,36,127,20,20,18],[5,4,30,7,5,7,28,20,28,15,4],[9,0,71,69,37,501,341,335,328,324,452],[8,0,30,50,18,30,142,155,113,115,158],[1,0,1,1,1],[2,0,2,3,1,1,1,1,1,1,1,3,2],[2,0,1,3,2,2,2,2,2,2,2,3,1],[5,4,4,31,14,10,10],[5,0,0,4,4,4,31,4,4,4],[1,0,0,0,0,0,0,0,0,0,1,1,1],[2,0,0,0,0,0,0,3],[2,0,0,0,0,0,0,0,0,3,3],[5,0,24,8,8,12,4,6,2,2,3],[5,0,14,27,17,17,17,17,17,27,14],[4,0,12,14,13,12,12,12,12,12,12],[5,0,14,25,16,24,8,4,2,3,31],[5,0,15,25,16,24,14,24,16,24,15],[7,0,48,56,56,52,54,50,127,48,48],[5,0,31,3,1,15,24,16,16,24,15],[5,0,28,2,1,13,19,17,17,27,14],[5,0,31,16,24,8,8,12,4,6,2],[5,0,14,25,17,27,14,27,17,17,14],[5,0,14,27,17,17,27,22,16,24,7],[2,0,0,0,3,3,0,0,0,3,3],[2,0,0,0,3,3,0,0,0,0,3,1,1],[5,0,0,0,24,6,3,7,28],[5,0,0,0,31,0,0,31],[5,0,0,0,3,12,24,28,7],[4,0,15,8,8,12,6,2,0,2,2],[10,0,248,390,626,585,589,581,585,441,6,124],[9,0,16,56,40,108,68,254,198,130,387],[7,0,63,99,99,99,63,99,67,99,63],[6,0,60,38,3,1,1,1,3,6,60],[8,0,63,99,195,195,131,195,195,99,63],[5,0,31,3,3,3,31,3,3,3,31],[5,0,31,3,3,3,31,3,3,3,3],[7,0,60,6,3,1,113,97,67,102,124],[8,0,195,195,195,195,255,195,195,195,195],[2,0,3,3,3,3,3,3,3,3,3],[3,0,0,4,4,4,4,4,4,4,4,4,6,3],[7,0,35,51,27,15,15,27,19,51,99],[6,0,3,3,3,3,3,3,3,3,63],[10,0,771,903,903,975,843,843,827,819,819],[8,0,195,199,207,203,219,211,243,227,195],[8,0,60,102,195,129,129,129,195,102,60],[6,0,31,51,35,51,31,3,3,3,3],[8,0,60,102,195,129,129,129,195,102,60,96,64],[6,0,31,63,49,49,29,25,25,49],[5,0,30,19,1,3,14,24,16,25,15],[7,0,127,8,8,8,8,8,8,8,8],[8,0,195,195,195,195,195,195,195,102,60],[8,0,195,66,66,102,36,36,60,24,24],[12,0,3171,1122,1122,1266,1686,660,924,780,780],[8,0,66,102,36,24,24,60,36,102,195],[8,0,195,66,38,60,24,24,24,24,24],[5,0,31,24,24,12,4,6,3,3,31],[3,0,7,1,1,1,1,1,1,1,1,1,7],[5,0,3,2,2,6,4,12,8,8,24],[3,0,7,4,4,4,4,4,4,4,4,4,7],[5,0,4,6,10,9,17,17],[6,0,0,0,0,0,0,0,0,0,0,0,63],[2,1,2],[6,0,0,0,30,48,48,62,49,49,47],[6,1,1,1,31,51,35,35,35,51,29],[4,0,0,0,14,3,1,1,1,3,14],[6,32,32,32,62,51,49,33,49,51,46],[5,0,0,0,14,31,19,31,3,31,4],[4,14,2,2,15,3,2,2,2,2,2],[7,0,0,0,124,50,34,50,28,2,62,99,35,30],[6,1,1,1,31,51,35,33,33,33,33],[2,0,3,0,3,3,3,3,3,3],[3,6,6,0,6,6,6,6,6,6,6,6,6,3],[5,1,1,1,17,9,13,7,11,25,17],[2,3,3,3,3,3,3,3,3,3,3],[9,0,0,0,0,511,307,273,273,273,273,273],[6,0,0,0,29,51,35,33,33,33,33],[6,0,0,0,30,51,33,33,33,51,30],[6,0,0,0,29,51,35,35,35,51,31,1,1,1],[6,0,0,0,46,51,49,33,49,51,62,32,32,32],[5,0,0,0,25,7,3,3,3,3,3],[4,0,0,0,15,1,3,14,8,8,15],[3,0,2,3,7,3,3,3,3,3,6],[6,0,0,0,33,33,33,33,49,51,46],[7,0,0,0,99,34,34,54,20,28,8],[11,0,0,0,1571,626,594,854,476,396,396],[5,0,0,0,17,27,14,14,14,27,17],[7,0,0,0,99,34,34,54,20,28,8,8,12,7],[4,0,0,0,15,12,4,6,2,1,15],[5,0,24,12,4,4,4,3,6,4,4,12,24],[2,3,3,3,3,3,3,3,3,3,3,3,3,3],[5,0,3,6,4,4,4,24,12,4,4,14,7],[2,0,0,0,0,3,1]],[[3,0,0,7,7,7,7,7,7,7,0,7,7],[12,0,0,952,408,4095,4095,460,204,2047,204,230,102],[7,0,0,28,63,55,3,63,126,112,127,31,28],[10,0,14,991,219,251,127,48,56,1020,894,886,487],[10,0,0,127,7,3,199,1022,199,195,231,255,126],[2,0,0,3,3,3],[4,0,0,14,7,7,7,7,3,3,3,7,7,7,6,14],[4,0,0,7,7,7,6,14,14,14,14,14,6,7,7,3],[5,0,0,23,31,15,11],[6,0,0,0,0,0,12,12,63,63,12,12],[3,0,0,0,0,0,0,0,0,0,0,0,7,3,3],[4,0,0,0,0,0,0,0,15,15],[3,0,0,0,0,0,0,0,0,0,0,0,7,7,7],[9,480,224,240,112,120,56,60,28,30,14,15,7,7,3],[13,1016,4092,3870,7694,7183,7175,7175,7175,7175,7183,3598,4094,2044,1016],[5,30,31,28,28,28,28,28,28,28,28,28,28,28,12],[10,510,511,967,896,896,896,448,480,240,120,60,927,1023,1023],[10,254,511,963,896,896,448,508,508,896,896,896,963,511,254],[11,480,224,112,120,952,924,926,910,975,2047,2047,896,896,896],[10,1022,510,6,7,7,255,1023,962,896,896,896,511,511,126],[11,240,248,60,30,207,1023,2047,1799,1799,1799,1927,1023,510,248],[10,1023,1023,896,384,448,192,224,96,112,56,56,28,28,14],[11,1022,2047,1799,1799,1935,1022,510,2047,1799,1799,1799,2047,1022,248],[11,1022,1935,1799,1799,1799,1807,2046,2046,896,960,496,248,56,16],[3,0,0,0,0,7,7,0,0,0,0,0,0,0,7,7],[4,0,0,0,0,14,14,0,0,0,0,0,15,7,7],[7,0,0,0,0,0,112,124,31,15,62,112,64],[6,0,0,0,0,0,0,63,63,0,63],[7,0,0,0,0,0,3,31,124,120,63,7,1],[7,0,0,127,112,96,112,126,30,14,0,14,14],[15,0,480,4092,7710,14823,16375,30471,30691,30707,30527,14335,16375,7694,124,112],[11,0,0,120,120,252,252,462,510,502,911,903,1795],[9,0,0,255,455,455,231,127,487,455,455,511,255],[9,0,112,510,271,7,7,7,7,7,15,510,508],[10,0,0,511,455,903,903,903,903,903,967,511,255],[11,2047,2047,7,7,7,7,2047,2047,1023,7,7,7,7,2047,2047],[8,0,0,255,7,7,7,127,127,7,7,7,7],[9,0,112,510,271,7,7,7,455,455,455,510,508],[10,0,0,903,903,903,903,1023,1023,903,903,903,903],[3,0,0,7,7,7,7,7,7,7,7,7,7],[4,0,0,14,14,14,14,14,14,14,14,15,7],[11,0,0,967,231,119,127,63,127,247,231,455,1927],[9,7,7,7,7,7,7,7,7,7,7,7,7,7,511,511],[12,0,0,3591,3855,3855,3999,3999,4095,4095,3831,3831,3687],[10,0,0,903,911,927,959,951,1015,999,967,967,903],[11,0,112,510,911,1799,1799,1799,1799,1799,903,1022,508],[9,0,0,255,487,455,455,247,127,7,7,7,7],[11,0,112,510,911,1799,1799,1799,1799,1799,903,1022,508,224,448,384],[10,0,0,255,455,455,455,255,63,119,231,487,967],[9,0,56,255,135,3,7,255,254,448,448,255,127],[8,0,0,255,28,28,28,28,28,28,28,28,28],[10,0,0,903,903,903,903,903,903,903,903,510,252],[16,61447,28687,30735,30750,14366,15388,7228,7740,3704,3704,3952,2032,2016,992,992],[13,0,0,7395,7411,7667,7671,3519,3999,3999,3855,3854,1550],[11,0,0,1927,462,254,252,120,120,252,494,463,1927],[10,0,0,967,455,238,238,124,56,56,56,56,56],[8,0,0,255,224,96,112,56,28,14,6,255,255],[4,0,0,15,3,3,3,3,3,3,3,3,3,3,15,15],[7,0,0,7,7,14,14,28,28,56,56,112,112],[5,0,0,31,28,28,28,28,28,28,28,28,28,28,31,31],[7,0,0,28,30,62,51,115],[7,0,0,0,0,0,0,0,0,0,0,0,0,127,127],[4,0,0,15],[7,0,0,0,0,30,127,112,126,127,115,127,127],[8,0,0,7,7,63,127,231,231,231,231,127,63],[6,0,0,0,0,60,63,7,3,3,7,63,62],[7,0,0,96,96,124,127,103,99,99,103,127,126],[7,0,0,0,0,28,127,119,127,127,3,127,126],[6,0,62,63,7,31,31,7,7,7,7,7,7],[8,0,0,0,0,124,255,231,227,227,231,255,254,96,127,31],[8,0,0,7,7,63,127,231,231,231,231,231,231],[3,0,0,7,0,7,7,7,7,7,7,7,7],[3,0,0,7,0,7,7,7,7,7,7,7,7,7,3,3],[8,0,0,7,7,127,255,231,231,127,63,119,231],[3,0,0,7,7,7,7,7,7,7,7,7,7],[12,0,0,0,0,1979,4095,3703,3703,3703,3703,3703,3703],[8,0,0,0,0,59,127,231,231,231,231,231,231],[8,0,0,0,0,60,127,231,227,227,227,127,62],[8,0,0,0,0,30,127,231,231,231,231,127,63,7,7,7],[8,0,0,0,0,124,255,231,227,227,227,255,254,224,224,224],[5,0,0,0,0,27,31,7,7,7,7,7,7],[7,0,0,0,0,62,63,3,31,127,112,127,63],[4,0,0,0,3,15,15,7,7,7,7,15,15],[8,0,0,0,0,231,231,231,231,231,231,255,254],[8,0,0,0,0,227,115,119,55,62,62,30,28],[11,0,0,0,0,1843,1907,1915,1023,1023,991,974,462],[8,0,0,0,0,227,119,62,30,28,62,119,243],[8,0,0,0,0,227,115,119,55,62,62,30,28,12,14,7],[7,0,0,0,0,127,127,56,28,14,6,7,63],[5,0,0,28,14,14,14,14,7,7,14,14,14,14,14,28],[3,0,0,7,7,7,7,7,7,7,7,7,7,7,7,7],[5,0,0,7,7,7,7,7,30,30,7,7,7,7,7,3],[6,0,0,0,0,0,0,0,47,63],[11,136,260,260,260,136,112,32,32,2047,32,32,32,32],[13,6144,5120,4608,4352,4224,4188,34,65,65,65,34,28]],[[4,0,0,15,15,15,15,15,15,15,15,15,15,15,0,15,15,15],[15,0,0,14528,14560,14560,6368,32767,32767,7281,3184,3632,3640,32767,1592,1816,1820,1820],[10,0,0,56,56,252,511,463,7,15,511,510,960,961,511,255,56,56],[14,0,0,15420,7295,3703,3943,2039,1022,988,480,224,8176,16376,14780,14748,16286,7951],[13,0,0,248,1022,1023,15,15,1807,8190,8188,8190,3855,3855,3855,1935,2046,508],[3,0,0,7,7,7,7,7],[6,0,0,60,28,30,14,14,15,15,15,15,15,15,15,15,15,14,14,30,30,60],[4,0,0,3,7,7,7,15,15,15,14,14,14,14,14,14,15,15,7,7,7,3],[6,0,0,14,14,63,46,31,27],[7,0,0,0,0,0,0,0,0,28,28,28,127,127,28,28],[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,7,7,7],[5,0,0,0,0,0,0,0,0,0,0,0,31,31],[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7],[10,0,0,896,960,448,480,240,240,120,120,60,60,30,30,15,15,7],[14,0,0,496,2044,4094,7710,7695,7183,15375,15375,15375,15375,7183,7695,7998,4092,1016],[4,0,0,12,15,15,15,15,15,15,15,15,15,15,15,15,15,15],[11,0,0,252,1023,1023,1923,1920,1920,896,960,480,496,248,60,30,2047,2047],[11,0,0,126,511,1023,1920,1920,896,1022,510,1022,896,1920,1920,963,1023,255],[12,0,0,480,480,240,112,120,956,924,926,911,911,2047,4095,896,896,896],[11,0,0,1022,1022,14,14,15,15,511,1023,1985,1920,1920,1920,963,1023,511],[12,0,0,192,496,504,124,30,14,1023,2047,3847,3847,3591,3855,3998,2046,1020],[10,0,0,1023,1023,1023,960,448,480,240,240,120,120,60,28,30,14,15],[12,0,0,504,2046,2047,3855,3855,1807,2046,1022,2047,3855,3591,3847,3999,2046,1020],[12,0,0,504,2046,1950,3855,3847,3591,3599,3999,4094,2040,1920,960,496,248,112],[4,0,0,0,0,0,0,15,15,15,0,0,0,0,0,15,15,15],[4,0,0,0,0,0,0,15,15,15,0,0,0,0,0,0,15,15,7,7,7],[9,0,0,0,0,0,0,0,448,496,508,63,15,31,254,504,448],[8,0,0,0,0,0,0,0,0,0,255,255,0,255,255,255],[10,0,0,0,0,0,0,0,7,31,127,1016,992,1008,254,31,7],[9,0,0,62,255,503,448,448,448,496,255,63,15,15,0,15,15,15],[16,0,0,16256,65520,63996,49212,8094,32718,31183,61455,65039,65487,61935,61935,61935,65487,65438,57406,33020,1016,960],[16,0,0,480,992,1008,2032,2032,1912,3896,3644,7708,8156,16382,15406,14351,30727,61447],[13,0,0,1023,4095,4095,3599,3599,3855,1999,1007,4079,3855,7695,3599,3855,4095,2047],[13,0,0,2016,8184,8190,30,15,15,15,15,15,15,15,30,7294,8188,8176],[14,0,0,511,4095,8191,15887,15375,14351,14351,14351,14351,14351,15375,15887,7951,4095,1023],[12,0,4095,2047,15,7,7,7,2047,2047,2047,7,7,7,7,4095,4095,4095],[11,0,2047,2047,7,7,7,7,1023,1023,1023,7,7,7,7,7,7,7],[13,0,0,2016,8184,8190,30,15,15,15,15,7695,7695,7695,7710,7806,8188,8176],[14,0,0,15375,15375,15375,15375,15375,15375,16383,16383,16383,15375,15375,15375,15375,15375,15375],[4,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15],[6,0,0,60,60,60,60,60,60,60,60,60,60,60,60,30,31,7],[15,0,0,15375,7695,3855,1935,1999,975,495,239,495,975,1935,3983,7951,15887,31759],[10,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,1023,1023],[16,0,0,57359,57375,61471,61503,63551,63551,64639,64639,64767,61167,61423,61391,59343,59343,58255],[14,0,0,14351,14367,14399,14399,14463,14591,14575,14831,15311,16271,16143,16143,15887,15375,15375],[15,0,0,2016,8184,16382,31774,30735,30735,28687,28687,28687,28687,30735,30750,15934,8188,4080],[13,0,2047,4095,7695,7695,7183,7695,3855,4047,1999,463,15,15,15,15,15,15],[15,0,0,2016,8184,16382,31774,30735,30735,28687,28687,28687,28687,30735,30750,15934,16380,4080,1920,3840,7680,7168],[13,0,2047,4095,3855,7687,7687,3591,3847,2023,999,455,967,1927,1799,3847,7687,7175],[12,0,0,1016,4094,4095,15,7,7,511,2046,4092,3840,3584,3840,3975,2047,1022],[11,0,0,2047,2047,2047,120,120,120,120,120,120,120,120,120,120,120,120],[14,0,0,15375,15375,15375,15375,15375,15375,15375,15375,15375,15375,15374,15390,7998,4092,2040],[15,0,0,30727,30727,15375,15375,7198,7710,7708,3900,3900,1912,2040,1008,1008,496,480],[16,0,0,34695,34695,36743,36807,36807,57295,56559,56559,64766,63614,63614,63550,61502,61502,61468],[15,0,0,30735,15375,7710,7996,3964,2040,1008,480,1008,2032,2040,3900,7710,15391,31759],[14,0,0,15367,7695,7695,3870,1820,1980,1016,1016,496,480,224,224,224,224,224],[12,0,0,4095,4095,4095,1792,896,960,480,240,112,120,60,30,15,4095,4095],[6,0,0,63,63,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,63,63],[10,0,0,7,15,15,30,30,60,60,120,120,240,240,480,480,960,960],[6,0,0,63,63,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,63,63],[10,0,0,56,120,124,252,238,462,455,903],[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1023,1023],[5,0,0,7,15,30],[11,0,0,0,0,0,508,1022,1934,1792,1824,2044,2046,1807,1807,1998,2046,1660],[11,0,0,15,15,15,15,255,1023,2047,1935,1935,1807,1935,1935,975,1023,255],[9,0,0,0,0,0,0,504,510,415,15,7,7,7,15,31,510,508],[11,0,0,1920,1920,1920,1920,2040,2046,2047,1935,1927,1927,1927,1935,1951,2046,1020],[11,0,0,0,0,0,504,1020,1950,1806,1807,2047,2047,7,14,1022,2044,1008],[8,0,0,252,254,15,15,127,127,15,15,15,15,15,15,15,15,15],[11,0,0,0,0,0,0,1016,2046,2015,1935,1927,1927,1927,1935,2047,2046,2044,1920,962,510,254],[11,0,0,15,15,15,15,495,1023,2047,1935,1935,1935,1935,1935,1935,1935,1935],[4,0,0,15,15,0,0,15,15,15,15,15,15,15,15,15,15,15],[4,0,15,15,0,0,15,15,15,15,15,15,15,15,15,15,15,15,7,7,7,3],[12,0,0,15,15,15,15,511,2047,1983,1807,1807,1999,495,495,975,1935,3983],[4,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15],[16,0,0,0,0,0,0,30951,65535,65503,58255,58255,58255,58255,58255,58255,58255,58255],[11,0,0,0,0,0,0,487,1023,2047,1935,1935,1935,1935,1935,1935,1935,1935],[11,0,0,0,0,0,0,248,1022,2015,1935,1799,1799,1799,1935,1935,1022,508],[11,0,0,0,0,0,0,254,1023,975,1935,1935,1807,1935,1935,975,1023,511,15,15,15,15],[11,0,0,0,0,0,0,1016,2046,2015,1935,1927,1927,1927,1935,2015,2046,2044,1920,1920,1920,1920],[6,0,0,0,0,0,0,55,63,63,15,15,15,15,15,15,15,15],[10,0,0,0,0,0,0,252,511,399,7,127,511,510,960,963,511,255],[6,0,0,0,0,7,7,63,63,15,15,15,15,15,15,15,63,62],[11,0,0,0,0,0,0,1935,1935,1935,1935,1935,1935,1935,1935,1999,2046,1916],[11,0,0,0,0,0,0,1927,903,967,975,462,494,254,252,124,124,120],[16,0,0,0,0,0,0,61895,29671,29671,29671,32767,16254,16254,16254,15934,7740,7708],[11,0,0,0,0,0,0,1927,975,494,254,252,120,124,252,510,975,1927],[11,0,0,0,0,0,0,1927,903,967,975,462,494,254,252,124,124,120,56,60,30,15],[9,0,0,0,0,0,0,511,511,480,224,240,120,60,30,15,511,511],[6,0,0,60,28,30,30,30,30,30,14,15,3,15,15,30,30,30,30,30,28,60],[3,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7],[6,0,0,7,15,15,14,14,14,14,30,62,60,60,30,14,14,14,14,15,15,7],[7,0,0,0,0,0,0,0,0,0,0,71,127,124],[28,130023486,260046879,260046879,260046879,251658255,251658255,251658271,260046879,260046879,260046879,130023486,132120702,66060540,66585084,33492984,16777200,8388544,2097024,261120,129024,129024],[29,532676480,536870848,268435440,134154232,66585592,132120828,130023548,264241214,260046910,260046911,260046879,520093727,520093727,260046879,260046911,260046910,260046910,130023548,132120828,66585080,66848760]],[[3,0,7,7,7,7,7,7,7,7,0,7,7],[13,0,816,824,792,8191,409,412,396,4095,204,206,230],[7,0,28,62,127,67,7,127,112,113,127,30,28],[11,0,1951,507,507,255,126,112,1016,2044,1902,1902,999],[10,0,126,111,7,199,463,1022,455,455,455,255,126],[1,0,1,1,1],[4,0,14,14,7,7,7,7,7,7,7,7,7,7,14,14],[4,0,7,7,7,14,14,14,14,14,14,14,14,7,7,7],[4,0,7,15,15,15],[5,0,0,0,0,0,6,6,31,31,6,6],[3,0,0,0,0,0,0,0,0,0,0,0,7,7,3],[3,0,0,0,0,0,0,0,7,7],[2,0,0,0,0,0,0,0,0,0,0,3,3],[8,0,240,112,56,56,28,28,14,14,7,7,3],[10,0,252,510,903,903,903,903,903,903,903,510,252],[3,0,7,7,7,7,7,7,7,7,7,7,7],[8,0,127,255,224,224,224,112,120,60,30,255,255],[8,0,127,255,224,224,254,126,224,224,224,255,127],[9,0,112,56,28,252,238,231,231,511,511,224,224],[8,0,255,7,7,7,127,255,224,224,224,255,127],[9,32,120,124,30,14,255,495,455,455,455,511,254],[8,0,255,127,112,56,56,28,28,14,14,7,7],[9,0,254,511,455,455,255,254,455,451,455,511,254],[9,0,254,495,455,455,455,511,510,224,112,60,28],[3,0,0,0,0,7,7,0,0,0,0,7,7],[3,0,0,0,0,7,7,0,0,0,0,0,7,3,3],[7,0,0,0,0,96,120,63,7,15,62,120,96],[5,0,0,0,0,0,0,31,0,31,31],[8,0,0,0,0,1,15,62,248,248,63,7,1],[7,0,63,63,112,112,56,63,7,7,0,7,7],[16,0,4088,16252,30734,30711,32631,60935,61415,61047,61047,32759,32751,15886,252,240],[12,0,112,248,248,476,476,462,1022,1014,1815,1799,3843],[9,0,511,511,455,455,231,247,455,455,455,511,255],[10,0,1020,1022,15,7,7,7,7,7,15,1022,1016],[11,0,511,1023,903,1799,1799,1799,1799,1799,903,511,255],[9,0,511,511,7,7,255,255,7,7,7,511,511],[8,0,255,255,7,7,255,255,7,7,7,7,7],[10,0,1020,1022,15,7,7,7,903,903,911,1022,1016],[11,0,1799,1799,1799,1799,2047,2047,1799,1799,1799,1799,1799],[3,0,7,7,7,7,7,7,7,7,7,7,7],[4,0,14,14,14,14,14,14,14,14,14,15,7],[11,0,1927,455,231,119,127,127,119,231,455,967,1927],[7,0,7,7,7,7,7,7,7,7,7,127,127],[13,0,7687,7695,7695,7967,7967,8127,7615,7671,7671,7399,7399],[11,0,1799,1807,1823,1855,1855,1911,2023,2023,1991,1927,1799],[12,0,508,2046,1807,1799,3591,3591,3591,1799,1807,1022,508],[9,0,255,511,455,455,455,247,119,7,7,7,7],[12,0,508,2046,1807,1799,3591,3591,3591,1799,1807,2046,508,480,960,896],[10,0,255,511,455,455,487,255,119,247,231,455,903],[9,0,510,511,7,3,63,511,448,448,448,511,255],[8,0,255,255,28,28,28,28,28,28,28,28,28],[11,0,1799,1799,1799,1799,1799,1799,1799,775,911,1022,508],[12,0,3843,1799,903,911,974,478,476,252,248,120,120],[14,0,14563,14819,14839,15351,7095,8127,7999,7967,7966,3598,3598],[11,0,1927,911,478,252,248,120,248,508,462,911,1799],[10,0,903,391,462,238,252,124,120,56,56,56,56],[9,0,511,511,224,224,112,56,28,14,15,511,511],[5,0,31,7,7,7,7,7,7,7,7,7,7,7,31,31],[8,0,7,7,15,14,30,28,60,56,112,112,224],[4,0,15,14,14,14,14,14,14,14,14,14,14,14,15,15],[8,0,28,28,62,55,115,227],[8,0,0,0,0,0,0,0,0,0,0,0,0,255,255],[3,0,3,7],[8,0,0,0,0,127,119,224,254,247,227,255,255],[8,0,7,7,7,127,255,231,231,231,231,255,127],[7,0,0,0,0,126,111,7,3,3,7,127,126],[8,0,224,224,224,254,255,231,227,227,231,255,254],[9,0,0,0,0,252,510,390,391,511,511,6,510,508],[6,24,62,7,7,31,7,7,7,7,7,7,7],[9,0,0,0,0,510,511,455,451,451,451,455,511,510,448,224,255],[8,0,7,7,7,127,255,231,231,231,231,231,231],[3,0,7,0,0,7,7,7,7,7,7,7,7],[3,0,7,0,0,7,7,7,7,7,7,7,7,7,3,3],[9,0,7,7,7,255,495,455,231,127,119,231,487],[3,0,7,7,7,7,7,7,7,7,7,7,7],[13,0,0,0,0,4095,8191,7399,7399,7399,7399,7399,7399],[8,0,0,0,0,127,255,231,231,231,231,231,231],[8,0,0,0,0,126,255,231,195,195,231,255,126],[8,0,0,0,0,127,247,231,231,231,231,255,127,7,7,7],[8,0,0,0,0,254,255,231,227,227,231,255,254,224,224,224],[5,0,0,0,0,31,15,7,7,7,7,7,7],[8,0,0,0,0,127,127,3,7,127,252,224,247,127,8],[5,0,0,3,3,31,7,7,7,7,7,31,31],[8,0,0,0,0,231,231,231,231,231,231,255,222],[9,0,0,0,0,391,455,198,206,238,108,124,56,56],[12,0,0,0,0,3699,3699,1791,2047,2015,990,926,910],[8,0,0,0,0,231,119,62,28,60,62,119,227],[8,0,0,0,0,227,231,119,119,62,62,30,28,28,14,7],[7,0,0,0,0,127,112,56,28,14,15,127,127],[4,0,14,6,7,7,7,7,3,3,7,7,7,7,14,14],[3,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7],[5,0,7,7,7,7,7,14,30,30,14,7,7,7,7,7],[5,0,0,0,0,0,0,0,31,30],[13,520,1028,1028,1028,520,272,224,64,64,8191,64,64,64,64],[15,20480,18432,17408,16896,16696,196,130,257,257,257,130,68,56]]],"letters":[["!","#","$","%","&","'","(",")","*","+",",","-",".","\/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~"],["!","#","$","%","&","'","(",")","*","+",",","-",".","\/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","♀","♂"],["!","#","$","%","&","'","(",")","*","+",",","-",".","\/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","♀","♂"],["!","#","$","%","&","'","(",")","*","+",",","-",".","\/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","♀","♂"]],"resolutionHeight":1440,"resolutionWidth":2560,"statDistance":0} \ No newline at end of file +{"description":"","fontSizes":[13,15,21,16],"guiZoom":100,"labelRectangles":[{"height":15,"width":268,"x":1220,"y":679},{"height":15,"width":268,"x":1220,"y":736},{"height":15,"width":268,"x":1220,"y":793},{"height":15,"width":268,"x":1220,"y":851},{"height":15,"width":268,"x":1220,"y":908},{"height":15,"width":200,"x":1288,"y":966},{"height":15,"width":200,"x":1288,"y":1023},{"height":15,"width":250,"x":1238,"y":1080},{"height":16,"width":164,"x":1324,"y":1137},{"height":15,"width":132,"x":1219,"y":266},{"height":21,"width":270,"x":1144,"y":218},{"height":16,"width":202,"x":1178,"y":311},{"height":13,"width":92,"x":1238,"y":291}],"letterArrays":[[[2,0,3,3,3,3,1,1,0,3,3],[8,0,72,40,40,254,36,127,20,20,18],[5,4,30,7,5,7,28,20,28,15,4],[9,0,71,69,37,501,341,335,328,324,452],[8,0,30,50,18,30,142,155,113,115,158],[1,0,1,1,1],[2,0,2,3,1,1,1,1,1,1,1,3,2],[2,0,1,3,2,2,2,2,2,2,2,3,1],[5,4,4,31,14,10,10],[5,0,0,4,4,4,31,4,4,4],[1,0,0,0,0,0,0,0,0,0,1,1,1],[2,0,0,0,0,0,0,3],[2,0,0,0,0,0,0,0,0,3,3],[5,0,24,8,8,12,4,6,2,2,3],[5,0,14,27,17,17,17,17,17,27,14],[4,0,12,14,13,12,12,12,12,12,12],[5,0,14,25,16,24,8,4,2,3,31],[5,0,15,25,16,24,14,24,16,24,15],[7,0,48,56,56,52,54,50,127,48,48],[5,0,31,3,1,15,24,16,16,24,15],[5,0,28,2,1,13,19,17,17,27,14],[5,0,31,16,24,8,8,12,4,6,2],[5,0,14,25,17,27,14,27,17,17,14],[5,0,14,27,17,17,27,22,16,24,7],[2,0,0,0,3,3,0,0,0,3,3],[2,0,0,0,3,3,0,0,0,0,3,1,1],[5,0,0,0,24,6,3,7,28],[5,0,0,0,31,0,0,31],[5,0,0,0,3,12,24,28,7],[4,0,15,8,8,12,6,2,0,2,2],[10,0,248,390,626,585,589,581,585,441,6,124],[9,0,16,56,40,108,68,254,198,130,387],[7,0,63,99,99,99,63,99,67,99,63],[6,0,60,38,3,1,1,1,3,6,60],[8,0,63,99,195,195,131,195,195,99,63],[5,0,31,3,3,3,31,3,3,3,31],[5,0,31,3,3,3,31,3,3,3,3],[7,0,60,6,3,1,113,97,67,102,124],[8,0,195,195,195,195,255,195,195,195,195],[2,0,3,3,3,3,3,3,3,3,3],[3,0,0,4,4,4,4,4,4,4,4,4,6,3],[7,0,35,51,27,15,15,27,19,51,99],[6,0,3,3,3,3,3,3,3,3,63],[10,0,771,903,903,975,843,843,827,819,819],[8,0,195,199,207,203,219,211,243,227,195],[8,0,60,102,195,129,129,129,195,102,60],[6,0,31,51,35,51,31,3,3,3,3],[8,0,60,102,195,129,129,129,195,102,60,96,64],[6,0,31,63,49,49,29,25,25,49],[5,0,30,19,1,3,14,24,16,25,15],[7,0,127,8,8,8,8,8,8,8,8],[8,0,195,195,195,195,195,195,195,102,60],[8,0,195,66,66,102,36,36,60,24,24],[12,0,3171,1122,1122,1266,1686,660,924,780,780],[8,0,66,102,36,24,24,60,36,102,195],[8,0,195,66,38,60,24,24,24,24,24],[5,0,31,24,24,12,4,6,3,3,31],[3,0,7,1,1,1,1,1,1,1,1,1,7],[5,0,3,2,2,6,4,12,8,8,24],[3,0,7,4,4,4,4,4,4,4,4,4,7],[5,0,4,6,10,9,17,17],[6,0,0,0,0,0,0,0,0,0,0,0,63],[2,1,2],[6,0,0,0,30,48,48,62,49,49,47],[6,1,1,1,31,51,35,35,35,51,29],[4,0,0,0,14,3,1,1,1,3,14],[6,32,32,32,62,51,49,33,49,51,46],[5,0,0,0,14,31,19,31,3,31,4],[4,14,2,2,15,3,2,2,2,2,2],[7,0,0,0,124,50,34,50,28,2,62,99,35,30],[6,1,1,1,31,51,35,33,33,33,33],[2,0,3,0,3,3,3,3,3,3],[3,6,6,0,6,6,6,6,6,6,6,6,6,3],[5,1,1,1,17,9,13,7,11,25,17],[2,3,3,3,3,3,3,3,3,3,3],[9,0,0,0,0,511,307,273,273,273,273,273],[6,0,0,0,29,51,35,33,33,33,33],[6,0,0,0,30,51,33,33,33,51,30],[6,0,0,0,29,51,35,35,35,51,31,1,1,1],[6,0,0,0,46,51,49,33,49,51,62,32,32,32],[5,0,0,0,25,7,3,3,3,3,3],[4,0,0,0,15,1,3,14,8,8,15],[3,0,2,3,7,3,3,3,3,3,6],[6,0,0,0,33,33,33,33,49,51,46],[7,0,0,0,99,34,34,54,20,28,8],[11,0,0,0,1571,626,594,854,476,396,396],[5,0,0,0,17,27,14,14,14,27,17],[7,0,0,0,99,34,34,54,20,28,8,8,12,7],[4,0,0,0,15,12,4,6,2,1,15],[5,0,24,12,4,4,4,3,6,4,4,12,24],[2,3,3,3,3,3,3,3,3,3,3,3,3,3],[5,0,3,6,4,4,4,24,12,4,4,14,7],[2,0,0,0,0,3,1]],[[3,0,0,7,7,7,7,7,7,7,0,7,7],[12,0,0,952,408,4095,4095,460,204,2047,204,230,102],[7,0,0,28,63,55,3,63,126,112,127,31,28],[10,0,14,991,219,251,127,48,56,1020,894,886,487],[10,0,0,127,7,3,199,1022,199,195,231,255,126],[2,0,0,3,3,3],[4,0,0,14,7,7,7,7,3,3,3,7,7,7,6,14],[4,0,0,7,7,7,6,14,14,14,14,14,6,7,7,3],[5,0,0,23,31,15,11],[6,0,0,0,0,0,12,12,63,63,12,12],[3,0,0,0,0,0,0,0,0,0,0,0,7,3,3],[4,0,0,0,0,0,0,0,15,15],[3,0,0,0,0,0,0,0,0,0,0,0,7,7,7],[9,480,224,240,112,120,56,60,28,30,14,15,7,7,3],[13,1016,4092,3870,7694,7183,7175,7175,7175,7175,7183,3598,4094,2044,1016],[5,30,31,28,28,28,28,28,28,28,28,28,28,28,12],[10,510,511,967,896,896,896,448,480,240,120,60,927,1023,1023],[10,254,511,963,896,896,448,508,508,896,896,896,963,511,254],[11,480,224,112,120,952,924,926,910,975,2047,2047,896,896,896],[10,1022,510,6,7,7,255,1023,962,896,896,896,511,511,126],[11,240,248,60,30,207,1023,2047,1799,1799,1799,1927,1023,510,248],[10,1023,1023,896,384,448,192,224,96,112,56,56,28,28,14],[11,1022,2047,1799,1799,1935,1022,510,2047,1799,1799,1799,2047,1022,248],[11,1022,1935,1799,1799,1799,1807,2046,2046,896,960,496,248,56,16],[3,0,0,0,0,7,7,0,0,0,0,0,0,0,7,7],[4,0,0,0,0,14,14,0,0,0,0,0,15,7,7],[7,0,0,0,0,0,112,124,31,15,62,112,64],[6,0,0,0,0,0,0,63,63,0,63],[7,0,0,0,0,0,3,31,124,120,63,7,1],[7,0,0,127,112,96,112,126,30,14,0,14,14],[15,0,480,4092,7710,14823,16375,30471,30691,30707,30527,14335,16375,7694,124,112],[11,0,0,120,120,252,252,462,510,502,911,903,1795],[9,0,0,255,455,455,231,127,487,455,455,511,255],[9,0,112,510,271,7,7,7,7,7,15,510,508],[10,0,0,511,455,903,903,903,903,903,967,511,255],[11,2047,2047,7,7,7,7,2047,2047,1023,7,7,7,7,2047,2047],[8,0,0,255,7,7,7,127,127,7,7,7,7],[9,0,112,510,271,7,7,7,455,455,455,510,508],[10,0,0,903,903,903,903,1023,1023,903,903,903,903],[3,0,0,7,7,7,7,7,7,7,7,7,7],[4,0,0,14,14,14,14,14,14,14,14,15,7],[11,0,0,967,231,119,127,63,127,247,231,455,1927],[9,7,7,7,7,7,7,7,7,7,7,7,7,7,511,511],[12,0,0,3591,3855,3855,3999,3999,4095,4095,3831,3831,3687],[10,0,0,903,911,927,959,951,1015,999,967,967,903],[11,0,112,510,911,1799,1799,1799,1799,1799,903,1022,508],[9,0,0,255,487,455,455,247,127,7,7,7,7],[11,0,112,510,911,1799,1799,1799,1799,1799,903,1022,508,224,448,384],[10,0,0,255,455,455,455,255,63,119,231,487,967],[9,0,56,255,135,3,7,255,254,448,448,255,127],[8,0,0,255,28,28,28,28,28,28,28,28,28],[10,0,0,903,903,903,903,903,903,903,903,510,252],[16,61447,28687,30735,30750,14366,15388,7228,7740,3704,3704,3952,2032,2016,992,992],[13,0,0,7395,7411,7667,7671,3519,3999,3999,3855,3854,1550],[11,0,0,1927,462,254,252,120,120,252,494,463,1927],[10,0,0,967,455,238,238,124,56,56,56,56,56],[8,0,0,255,224,96,112,56,28,14,6,255,255],[4,0,0,15,3,3,3,3,3,3,3,3,3,3,15,15],[7,0,0,7,7,14,14,28,28,56,56,112,112],[5,0,0,31,28,28,28,28,28,28,28,28,28,28,31,31],[7,0,0,28,30,62,51,115],[7,0,0,0,0,0,0,0,0,0,0,0,0,127,127],[4,0,0,15],[7,0,0,0,0,30,127,112,126,127,115,127,127],[8,0,0,7,7,63,127,231,231,231,231,127,63],[6,0,0,0,0,60,63,7,3,3,7,63,62],[7,0,0,96,96,124,127,103,99,99,103,127,126],[7,0,0,0,0,28,127,119,127,127,3,127,126],[6,0,62,63,7,31,31,7,7,7,7,7,7],[8,0,0,0,0,124,255,231,227,227,231,255,254,96,127,31],[8,0,0,7,7,63,127,231,231,231,231,231,231],[3,0,0,7,0,7,7,7,7,7,7,7,7],[3,0,0,7,0,7,7,7,7,7,7,7,7,7,3,3],[8,0,0,7,7,127,255,231,231,127,63,119,231],[3,0,0,7,7,7,7,7,7,7,7,7,7],[12,0,0,0,0,1979,4095,3703,3703,3703,3703,3703,3703],[8,0,0,0,0,59,127,231,231,231,231,231,231],[8,0,0,0,0,60,127,231,227,227,227,127,62],[8,0,0,0,0,30,127,231,231,231,231,127,63,7,7,7],[8,0,0,0,0,124,255,231,227,227,227,255,254,224,224,224],[5,0,0,0,0,27,31,7,7,7,7,7,7],[7,0,0,0,0,62,63,3,31,127,112,127,63],[4,0,0,0,3,15,15,7,7,7,7,15,15],[8,0,0,0,0,231,231,231,231,231,231,255,254],[8,0,0,0,0,227,115,119,55,62,62,30,28],[11,0,0,0,0,1843,1907,1915,1023,1023,991,974,462],[8,0,0,0,0,227,119,62,30,28,62,119,243],[8,0,0,0,0,227,115,119,55,62,62,30,28,12,14,7],[7,0,0,0,0,127,127,56,28,14,6,7,63],[5,0,0,28,14,14,14,14,7,7,14,14,14,14,14,28],[3,0,0,7,7,7,7,7,7,7,7,7,7,7,7,7],[5,0,0,7,7,7,7,7,30,30,7,7,7,7,7,3],[6,0,0,0,0,0,0,0,47,63],[11,136,260,260,260,136,112,32,32,2047,32,32,32,32],[13,6144,5120,4608,4352,4224,4188,34,65,65,65,34,28]],[[4,0,0,15,15,15,15,15,15,15,15,15,15,15,0,15,15,15],[15,0,0,14528,14560,14560,6368,32767,32767,7281,3184,3632,3640,32767,1592,1816,1820,1820],[10,0,0,56,56,252,511,463,7,15,511,510,960,961,511,255,56,56],[14,0,0,15420,7295,3703,3943,2039,1022,988,480,224,8176,16376,14780,14748,16286,7951],[13,0,0,248,1022,1023,15,15,1807,8190,8188,8190,3855,3855,3855,1935,2046,508],[3,0,0,7,7,7,7,7],[6,0,0,60,28,30,14,14,15,15,15,15,15,15,15,15,15,14,14,30,30,60],[4,0,0,3,7,7,7,15,15,15,14,14,14,14,14,14,15,15,7,7,7,3],[6,0,0,14,14,63,46,31,27],[7,0,0,0,0,0,0,0,0,28,28,28,127,127,28,28],[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,15,7,7,7],[5,0,0,0,0,0,0,0,0,0,0,0,31,31],[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7],[10,0,0,896,960,448,480,240,240,120,120,60,60,30,30,15,15,7],[14,0,0,496,2044,4094,7710,7695,7183,15375,15375,15375,15375,7183,7695,7998,4092,1016],[4,0,0,12,15,15,15,15,15,15,15,15,15,15,15,15,15,15],[11,0,0,252,1023,1023,1923,1920,1920,896,960,480,496,248,60,30,2047,2047],[11,0,0,126,511,1023,1920,1920,896,1022,510,1022,896,1920,1920,963,1023,255],[12,0,0,480,480,240,112,120,956,924,926,911,911,2047,4095,896,896,896],[11,0,0,1022,1022,14,14,15,15,511,1023,1985,1920,1920,1920,963,1023,511],[12,0,0,192,496,504,124,30,14,1023,2047,3847,3847,3591,3855,3998,2046,1020],[10,0,0,1023,1023,1023,960,448,480,240,240,120,120,60,28,30,14,15],[12,0,0,504,2046,2047,3855,3855,1807,2046,1022,2047,3855,3591,3847,3999,2046,1020],[12,0,0,504,2046,1950,3855,3847,3591,3599,3999,4094,2040,1920,960,496,248,112],[4,0,0,0,0,0,0,15,15,15,0,0,0,0,0,15,15,15],[4,0,0,0,0,0,0,15,15,15,0,0,0,0,0,0,15,15,7,7,7],[9,0,0,0,0,0,0,0,448,496,508,63,15,31,254,504,448],[8,0,0,0,0,0,0,0,0,0,255,255,0,255,255,255],[10,0,0,0,0,0,0,0,7,31,127,1016,992,1008,254,31,7],[9,0,0,62,255,503,448,448,448,496,255,63,15,15,0,15,15,15],[16,0,0,16256,65520,63996,49212,8094,32718,31183,61455,65039,65487,61935,61935,61935,65487,65438,57406,33020,1016,960],[16,0,0,480,992,1008,2032,2032,1912,3896,3644,7708,8156,16382,15406,14351,30727,61447],[13,0,0,1023,4095,4095,3599,3599,3855,1999,1007,4079,3855,7695,3599,3855,4095,2047],[13,0,0,2016,8184,8190,30,15,15,15,15,15,15,15,30,7294,8188,8176],[14,0,0,511,4095,8191,15887,15375,14351,14351,14351,14351,14351,15375,15887,7951,4095,1023],[12,0,4095,2047,15,7,7,7,2047,2047,2047,7,7,7,7,4095,4095,4095],[11,0,2047,2047,7,7,7,7,1023,1023,1023,7,7,7,7,7,7,7],[13,0,0,2016,8184,8190,30,15,15,15,15,7695,7695,7695,7710,7806,8188,8176],[14,0,0,15375,15375,15375,15375,15375,15375,16383,16383,16383,15375,15375,15375,15375,15375,15375],[4,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15],[6,0,0,60,60,60,60,60,60,60,60,60,60,60,60,30,31,7],[15,0,0,15375,7695,3855,1935,1999,975,495,239,495,975,1935,3983,7951,15887,31759],[10,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,1023,1023],[16,0,0,57359,57375,61471,61503,63551,63551,64639,64639,64767,61167,61423,61391,59343,59343,58255],[14,0,0,14351,14367,14399,14399,14463,14591,14575,14831,15311,16271,16143,16143,15887,15375,15375],[15,0,0,2016,8184,16382,31774,30735,30735,28687,28687,28687,28687,30735,30750,15934,8188,4080],[13,0,2047,4095,7695,7695,7183,7695,3855,4047,1999,463,15,15,15,15,15,15],[15,0,0,2016,8184,16382,31774,30735,30735,28687,28687,28687,28687,30735,30750,15934,16380,4080,1920,3840,7680,7168],[13,0,2047,4095,3855,7687,7687,3591,3847,2023,999,455,967,1927,1799,3847,7687,7175],[12,0,0,1016,4094,4095,15,7,7,511,2046,4092,3840,3584,3840,3975,2047,1022],[11,0,0,2047,2047,2047,120,120,120,120,120,120,120,120,120,120,120,120],[14,0,0,15375,15375,15375,15375,15375,15375,15375,15375,15375,15375,15374,15390,7998,4092,2040],[15,0,0,30727,30727,15375,15375,7198,7710,7708,3900,3900,1912,2040,1008,1008,496,480],[16,0,0,34695,34695,36743,36807,36807,57295,56559,56559,64766,63614,63614,63550,61502,61502,61468],[15,0,0,30735,15375,7710,7996,3964,2040,1008,480,1008,2032,2040,3900,7710,15391,31759],[14,0,0,15367,7695,7695,3870,1820,1980,1016,1016,496,480,224,224,224,224,224],[12,0,0,4095,4095,4095,1792,896,960,480,240,112,120,60,30,15,4095,4095],[6,0,0,63,63,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,63,63],[10,0,0,7,15,15,30,30,60,60,120,120,240,240,480,480,960,960],[6,0,0,63,63,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,63,63],[10,0,0,56,120,124,252,238,462,455,903],[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1023,1023],[5,0,0,7,15,30],[11,0,0,0,0,0,508,1022,1934,1792,1824,2044,2046,1807,1807,1998,2046,1660],[11,0,0,15,15,15,15,255,1023,2047,1935,1935,1807,1935,1935,975,1023,255],[9,0,0,0,0,0,0,504,510,415,15,7,7,7,15,31,510,508],[11,0,0,1920,1920,1920,1920,2040,2046,2047,1935,1927,1927,1927,1935,1951,2046,1020],[11,0,0,0,0,0,504,1020,1950,1806,1807,2047,2047,7,14,1022,2044,1008],[8,0,0,252,254,15,15,127,127,15,15,15,15,15,15,15,15,15],[11,0,0,0,0,0,0,1016,2046,2015,1935,1927,1927,1927,1935,2047,2046,2044,1920,962,510,254],[11,0,0,15,15,15,15,495,1023,2047,1935,1935,1935,1935,1935,1935,1935,1935],[4,0,0,15,15,0,0,15,15,15,15,15,15,15,15,15,15,15],[4,0,15,15,0,0,15,15,15,15,15,15,15,15,15,15,15,15,7,7,7,3],[12,0,0,15,15,15,15,511,2047,1983,1807,1807,1999,495,495,975,1935,3983],[4,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15],[16,0,0,0,0,0,0,30951,65535,65503,58255,58255,58255,58255,58255,58255,58255,58255],[11,0,0,0,0,0,0,487,1023,2047,1935,1935,1935,1935,1935,1935,1935,1935],[11,0,0,0,0,0,0,248,1022,2015,1935,1799,1799,1799,1935,1935,1022,508],[11,0,0,0,0,0,0,254,1023,975,1935,1935,1807,1935,1935,975,1023,511,15,15,15,15],[11,0,0,0,0,0,0,1016,2046,2015,1935,1927,1927,1927,1935,2015,2046,2044,1920,1920,1920,1920],[6,0,0,0,0,0,0,55,63,63,15,15,15,15,15,15,15,15],[10,0,0,0,0,0,0,252,511,399,7,127,511,510,960,963,511,255],[6,0,0,0,0,7,7,63,63,15,15,15,15,15,15,15,63,62],[11,0,0,0,0,0,0,1935,1935,1935,1935,1935,1935,1935,1935,1999,2046,1916],[11,0,0,0,0,0,0,1927,903,967,975,462,494,254,252,124,124,120],[16,0,0,0,0,0,0,61895,29671,29671,29671,32767,16254,16254,16254,15934,7740,7708],[11,0,0,0,0,0,0,1927,975,494,254,252,120,124,252,510,975,1927],[11,0,0,0,0,0,0,1927,903,967,975,462,494,254,252,124,124,120,56,60,30,15],[9,0,0,0,0,0,0,511,511,480,224,240,120,60,30,15,511,511],[6,0,0,60,28,30,30,30,30,30,14,15,3,15,15,30,30,30,30,30,28,60],[3,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7],[6,0,0,7,15,15,14,14,14,14,30,62,60,60,30,14,14,14,14,15,15,7],[7,0,0,0,0,0,0,0,0,0,0,71,127,124],[28,130023486,260046879,260046879,260046879,251658255,251658255,251658271,260046879,260046879,260046879,130023486,132120702,66060540,66585084,33492984,16777200,8388544,2097024,261120,129024,129024],[29,532676480,536870848,268435440,134154232,66585592,132120828,130023548,264241214,260046910,260046911,260046879,520093727,520093727,260046879,260046911,260046910,260046910,130023548,132120828,66585080,66848760]],[[3,0,7,7,7,7,7,7,7,7,0,7,7],[13,0,816,824,792,8191,409,412,396,4095,204,206,230],[7,0,28,62,127,67,7,127,112,113,127,30,28],[11,0,1951,507,507,255,126,112,1016,2044,1902,1902,999],[10,0,126,111,7,199,463,1022,455,455,455,255,126],[1,0,1,1,1],[4,0,14,14,7,7,7,7,7,7,7,7,7,7,14,14],[4,0,7,7,7,14,14,14,14,14,14,14,14,7,7,7],[4,0,7,15,15,15],[5,0,0,0,0,0,6,6,31,31,6,6],[3,0,0,0,0,0,0,0,0,0,0,0,7,7,3],[3,0,0,0,0,0,0,0,7,7],[2,0,0,0,0,0,0,0,0,0,0,3,3],[8,0,240,112,56,56,28,28,14,14,7,7,3],[10,0,252,510,903,903,903,903,903,903,903,510,252],[3,0,7,7,7,7,7,7,7,7,7,7,7],[8,0,127,255,224,224,224,112,120,60,30,255,255],[8,0,127,255,224,224,254,126,224,224,224,255,127],[9,0,112,56,28,252,238,231,231,511,511,224,224],[8,0,255,7,7,7,127,255,224,224,224,255,127],[9,32,120,124,30,14,255,495,455,455,455,511,254],[8,0,255,127,112,56,56,28,28,14,14,7,7],[9,0,254,511,455,455,255,254,455,451,455,511,254],[9,0,254,495,455,455,455,511,510,224,112,60,28],[3,0,0,0,0,7,7,0,0,0,0,7,7],[3,0,0,0,0,7,7,0,0,0,0,0,7,3,3],[7,0,0,0,0,96,120,63,7,15,62,120,96],[5,0,0,0,0,0,0,31,0,31,31],[8,0,0,0,0,1,15,62,248,248,63,7,1],[7,0,63,63,112,112,56,63,7,7,0,7,7],[16,0,4088,16252,30734,30711,32631,60935,61415,61047,61047,32759,32751,15886,252,240],[12,0,112,248,248,476,476,462,1022,1014,1815,1799,3843],[9,0,511,511,455,455,231,247,455,455,455,511,255],[10,0,1020,1022,15,7,7,7,7,7,15,1022,1016],[11,0,511,1023,903,1799,1799,1799,1799,1799,903,511,255],[9,0,511,511,7,7,255,255,7,7,7,511,511],[8,0,255,255,7,7,255,255,7,7,7,7,7],[10,0,1020,1022,15,7,7,7,903,903,911,1022,1016],[11,0,1799,1799,1799,1799,2047,2047,1799,1799,1799,1799,1799],[3,0,7,7,7,7,7,7,7,7,7,7,7],[4,0,14,14,14,14,14,14,14,14,14,15,7],[11,0,1927,455,231,119,127,127,119,231,455,967,1927],[7,0,7,7,7,7,7,7,7,7,7,127,127],[13,0,7687,7695,7695,7967,7967,8127,7615,7671,7671,7399,7399],[11,0,1799,1807,1823,1855,1855,1911,2023,2023,1991,1927,1799],[12,0,508,2046,1807,1799,3591,3591,3591,1799,1807,1022,508],[9,0,255,511,455,455,455,247,119,7,7,7,7],[12,0,508,2046,1807,1799,3591,3591,3591,1799,1807,2046,508,480,960,896],[10,0,255,511,455,455,487,255,119,247,231,455,903],[9,0,510,511,7,3,63,511,448,448,448,511,255],[8,0,255,255,28,28,28,28,28,28,28,28,28],[11,0,1799,1799,1799,1799,1799,1799,1799,775,911,1022,508],[12,0,3843,1799,903,911,974,478,476,252,248,120,120],[14,0,14563,14819,14839,15351,7095,8127,7999,7967,7966,3598,3598],[11,0,1927,911,478,252,248,120,248,508,462,911,1799],[10,0,903,391,462,238,252,124,120,56,56,56,56],[9,0,511,511,224,224,112,56,28,14,15,511,511],[5,0,31,7,7,7,7,7,7,7,7,7,7,7,31,31],[8,0,7,7,15,14,30,28,60,56,112,112,224],[4,0,15,14,14,14,14,14,14,14,14,14,14,14,15,15],[8,0,28,28,62,55,115,227],[8,0,0,0,0,0,0,0,0,0,0,0,0,255,255],[3,0,3,7],[8,0,0,0,0,127,119,224,254,247,227,255,255],[8,0,7,7,7,127,255,231,231,231,231,255,127],[7,0,0,0,0,126,111,7,3,3,7,127,126],[8,0,224,224,224,254,255,231,227,227,231,255,254],[9,0,0,0,0,252,510,390,391,511,511,6,510,508],[6,24,62,7,7,31,7,7,7,7,7,7,7],[9,0,0,0,0,510,511,455,451,451,451,455,511,510,448,224,255],[8,0,7,7,7,127,255,231,231,231,231,231,231],[3,0,7,0,0,7,7,7,7,7,7,7,7],[3,0,7,0,0,7,7,7,7,7,7,7,7,7,3,3],[9,0,7,7,7,255,495,455,231,127,119,231,487],[3,0,7,7,7,7,7,7,7,7,7,7,7],[13,0,0,0,0,4095,8191,7399,7399,7399,7399,7399,7399],[8,0,0,0,0,127,255,231,231,231,231,231,231],[8,0,0,0,0,126,255,231,195,195,231,255,126],[8,0,0,0,0,127,247,231,231,231,231,255,127,7,7,7],[8,0,0,0,0,254,255,231,227,227,231,255,254,224,224,224],[5,0,0,0,0,31,15,7,7,7,7,7,7],[8,0,0,0,0,127,127,3,7,127,252,224,247,127,8],[5,0,0,3,3,31,7,7,7,7,7,31,31],[8,0,0,0,0,231,231,231,231,231,231,255,222],[9,0,0,0,0,391,455,198,206,238,108,124,56,56],[12,0,0,0,0,3699,3699,1791,2047,2015,990,926,910],[8,0,0,0,0,231,119,62,28,60,62,119,227],[8,0,0,0,0,227,231,119,119,62,62,30,28,28,14,7],[7,0,0,0,0,127,112,56,28,14,15,127,127],[4,0,14,6,7,7,7,7,3,3,7,7,7,7,14,14],[3,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7],[5,0,7,7,7,7,7,14,30,30,14,7,7,7,7,7],[5,0,0,0,0,0,0,0,31,30],[13,520,1028,1028,1028,520,272,224,64,64,8191,64,64,64,64],[15,20480,18432,17408,16896,16696,196,130,257,257,257,130,68,56]]],"letters":[["!","#","$","%","&","'","(",")","*","+",",","-",".","\/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~"],["!","#","$","%","&","'","(",")","*","+",",","-",".","\/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","♀","♂"],["!","#","$","%","&","'","(",")","*","+",",","-",".","\/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","♀","♂"],["!","#","$","%","&","'","(",")","*","+",",","-",".","\/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","♀","♂"]],"resolutionHeight":1440,"resolutionWidth":2560,"statDistance":0} \ No newline at end of file diff --git a/ARKBreedingStats/json/values.json b/ARKBreedingStats/json/values.json index 91a1e762..4665f8d6 100644 --- a/ARKBreedingStats/json/values.json +++ b/ARKBreedingStats/json/values.json @@ -1 +1 @@ -{"ver":"276.12","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":"Spoiled Meat","Value":{"d":[50,100]}},{"Key":"Vegetables","Value":{"d":[40,40]}},{"Key":"Mejoberry","Value":{"d":[30,30]}},{"Key":"Berries","Value":{"d":[20,20]}},{"Key":"Stimberry","Value":{"d":[-15,1.5]}},{"Key":"Kibble","Value":{"d":[80,400]}},{"Key":"Raw Mutton","Value":{"d":[50,300]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,165]}}],"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]],"statMultipliersSP":[[3.57142857,2.27272727,2.125,null],null,null,null,null,[3.57142857,2.27272727,2.35294118,null],null,null],"matingIntervalMultiplierSP":0.125,"eggHatchSpeedMultiplierSP":10,"babyMatureSpeedMultiplierSP":36.799,"babyCuddleIntervalMultiplierSP":0.167,"tamingSpeedMultiplierSP":2.5,"species":[{"name":"Aberrant 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.04],[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.01,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":"Aberrant Anglerfish","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.04],[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.01,0,0],[900,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":1800,"affinityIncreasePL":90,"torporDepletionPS0":2.8,"foodConsumptionBase":0.001852,"foodConsumptionMult":149.988007,"violent":true}},{"name":"Aberrant 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.04],[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.02,0.35,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":"Aberrant 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.04],[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.01,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":"Aberrant 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.04],[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.01,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":"Aberrant 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.04],[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.01,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":"Aberrant 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.04],[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.01,1,0],[200,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant 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.04],[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.01,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":"Aberrant 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.04],[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.0125,0.085,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant 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.04],[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.01,0,0],[750,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant 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.04],[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.01,0,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant 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.04],[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.01,0,0],[220,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant 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.04],[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.01,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":"Aberrant 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.04],[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.01,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":"Aberrant 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.04],[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.02,0.6,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":"Aberrant 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.01,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":"Aberrant 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":null,"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.04],[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.01,0,0],[175,0.06,0,0.5,0]],"taming":{"eats":["Bio Toxin","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":2250,"affinityIncreasePL":90,"foodConsumptionBase":0.002929,"foodConsumptionMult":420,"wakeAffinityMult":1.6,"wakeFoodDeplMult":4,"violent":false}},{"name":"Aberrant 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.04],[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":"Aberrant 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.04],[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":"Aberrant 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.04],[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.01,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":"Aberrant 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.04],[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":"Aberrant 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.04],[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.01,0.3,0],[700,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant 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.04],[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.01,0,0],[775,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant 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.04],[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.01,0.2,0],[300,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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,250]}},{"Key":"Raw Prime Meat","Value":{"d":[50,200]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,80]}},{"Key":"Vegetables","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":6000,"affinityIncreasePL":150,"foodConsumptionBase":0.001736,"foodConsumptionMult":176.03154,"wakeAffinityMult":2.5,"wakeFoodDeplMult":1.2,"violent":false},"immobilizedBy":["Bola","Large Bear Trap","Plant Species Y"]},{"name":"Aberrant Otter","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":75757.570313,"matingCooldownMin":64800,"matingCooldownMax":142800},"colors":[{"name":"Body Main","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Body Stripes and Highlights","colorIds":[22,33,34,8,13,35,14,37,38,39]},{"name":"Underbelly","colorIds":[21,32,33,8,37,38,39]}],"statsRaw":[[40,0.2,0.27,0.5,-0.04],[180,0.1,0.1,0,0],[600,0.1,0.1,0,0],[400,0.1,0.1,0,0],[30,0.02,0.04,0,0],[1,0.04,0.1,0.5,0.4],[1,0,0.01,0.7,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Raw Prime Fish Meat","Cooked Prime Fish Meat","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":8.333333,"affinityNeeded0":1200,"affinityIncreasePL":25,"foodConsumptionBase":0.002314,"foodConsumptionMult":160.056335,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"name":"Aberrant 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.01,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":"Aberrant Paraceratherium","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":333333.3125,"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":[]},{"name":null,"colorIds":[]},{"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":[[1140,0.2,0.27,0.5,-0.04],[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.01,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":"Aberrant 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.04],[450,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.01,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":"Aberrant 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.04],[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.01,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":"Aberrant 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.04],[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.01,0,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant 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.04],[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.015,0.2,0],[180,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant 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.04],[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.01,0.6,0],[400,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant Spino","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.04],[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.01,0,0],[850,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"tamingIneffectiveness":1.5,"affinityNeeded0":3200,"affinityIncreasePL":150,"torporDepletionPS0":2.133333,"foodConsumptionBase":0.002066,"foodConsumptionMult":150,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Aberrant 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.04],[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.02,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":0.4,"Value":"Tail"},{"Key":1.67,"Value":"Head, Neck"}]},{"name":"Aberrant Titanoboa","colors":[{"name":"Body","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14,36]},{"name":"Frill Middle Line 1","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Frill Middle Line 2","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Frill Middle Line 3","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Body Accent and Inner Frill","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Outer Frill","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]}],"statsRaw":[[170,0.2,0.27,0.5,-0.04],[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.01,0.2,0],[175,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Golden Hesperornis Egg","Fertilized Giganotosaurus Egg","Giganotosaurus Egg","Basilisk Egg","Bronto Egg","Dinosaur Egg","Diplo Egg","Fertilized Aberrant Diplo Egg","Fertilized Bronto Egg","Fertilized Diplo Egg","Titanboa Egg","Dimetrodon Egg","Fertilized Aberrant Dimetrodon Egg","Fertilized Aberrant Sarco Egg","Fertilized Dimetrodon Egg","Fertilized Glowtail Egg","Fertilized Quetzal Egg","Fertilized Rex Egg","Fertilized Sarco Egg","Fertilized Yutyrannus Egg","Glowtail Egg","Quetzal Egg","Rex Egg","Sarco Egg","Yutyrannus Egg","Allosaurus Egg","Argentavis Egg","Carno Egg","Fertilized Aberrant Carno Egg","Fertilized Aberrant Megalosaurus Egg","Fertilized Aberrant Spino Egg","Fertilized Aberrant Stego Egg","Fertilized Allosaurus Egg","Fertilized Argentavis Egg","Fertilized Carno Egg","Fertilized Kentro Egg","Fertilized Megalosaurus Egg","Fertilized Spino Egg","Fertilized Stego Egg","Fertilized Therizino Egg","Kentro Egg","Megalosaurus Egg","Spino Egg","Stego Egg","Therizino Egg","Araneo Egg","Camelsaurus Egg","Fertilized Aberrant Trike Egg","Fertilized Camelsaurus Egg","Fertilized Pachyrhino Egg","Fertilized Thorny Dragon Egg","Fertilized Trike Egg","Mantis Egg","Pachyrhino Egg","Pulminoscorpius Egg","Thorny Dragon Egg","Trike Egg","Baryonyx Egg","Featherlight Egg","Fertilized Aberrant Megalania Egg","Fertilized Aberrant Raptor Egg","Fertilized Baryonyx Egg","Fertilized Featherlight Egg","Fertilized Ichthyornis Egg","Fertilized Kaprosuchus Egg","Fertilized Megalania Egg","Fertilized Pachycephalosaurus Egg","Fertilized Pelagornis Egg","Fertilized Pteranodon Egg","Fertilized Raptor Egg","Fertilized Rock Drake Egg","Fertilized Tapejara Egg","Fertilized Terror Bird Egg","Fertilized Wyvern Egg","Ichthyornis Egg","Kaprosuchus Egg","Megalania Egg","Pachycephalosaurus Egg","Pelagornis Egg","Pteranodon Egg","Raptor Egg","Rock Drake Egg","Tapejara Egg","Terror Bird Egg","Wyvern Egg","Fertilized Oviraptor Egg","Oviraptor Egg","Ankylo Egg","Dimorph Egg","Fertilized Aberrant Ankylo Egg","Fertilized Aberrant Iguanodon Egg","Fertilized Aberrant Moschops Egg","Fertilized Aberrant Parasaur Egg","Fertilized Ankylo Egg","Fertilized Dimorph Egg","Fertilized Gallimimus Egg","Fertilized Iguanodon Egg","Fertilized Moschops Egg","Fertilized Moth Egg","Fertilized Parasaur Egg","Fertilized Vulture Egg","Gallimimus Egg","Iguanodon Egg","Moschops Egg","Moth Egg","Parasaur Egg","Vulture Egg","Archaeopteryx Egg","Compy Egg","Dilo Egg","Dodo Egg","Fertilized Aberrant Dodo Egg","Fertilized Aberrant Lystrosaurus Egg","Fertilized Aberrant Turtle Egg","Fertilized Achaeopteryx Egg","Fertilized Compy Egg","Fertilized Dilo Egg","Fertilized Dodo Egg","Fertilized Hesperornis Egg","Fertilized Kairuku Egg","Fertilized Lystrosaurus Egg","Fertilized Microraptor Egg","Fertilized Pegomastax Egg","Fertilized Troodon Egg","Fertilized Turtle Egg","Hesperornis Egg","Kairuku Egg","Lystro Egg","Microraptor Egg","Pegomastax Egg","Troodon Egg","Turtle Egg"],"nonViolent":true,"specialFoodValues":[{"Key":"Golden Hesperornis Egg","Value":{"d":[1125,150]}},{"Key":"Fertilized Giganotosaurus Egg","Value":{"d":[900,120]}},{"Key":"Giganotosaurus Egg","Value":{"d":[900,120]}},{"Key":"Basilisk Egg","Value":{"d":[750,100]}},{"Key":"Bronto Egg","Value":{"d":[750,100]}},{"Key":"Dinosaur Egg","Value":{"d":[750,100]}},{"Key":"Diplo Egg","Value":{"d":[750,100]}},{"Key":"Fertilized Aberrant Diplo Egg","Value":{"d":[750,100]}},{"Key":"Fertilized Bronto Egg","Value":{"d":[750,100]}},{"Key":"Fertilized Diplo Egg","Value":{"d":[750,100]}},{"Key":"Titanboa Egg","Value":{"d":[750,100]}},{"Key":"Dimetrodon Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Aberrant Dimetrodon Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Aberrant Sarco Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Dimetrodon Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Glowtail Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Quetzal Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Rex Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Sarco Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Yutyrannus Egg","Value":{"d":[600,80]}},{"Key":"Glowtail Egg","Value":{"d":[600,80]}},{"Key":"Quetzal Egg","Value":{"d":[600,80]}},{"Key":"Rex Egg","Value":{"d":[600,80]}},{"Key":"Sarco Egg","Value":{"d":[600,80]}},{"Key":"Yutyrannus Egg","Value":{"d":[600,80]}},{"Key":"Allosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Argentavis Egg","Value":{"d":[412.5,55]}},{"Key":"Carno Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Carno Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Megalosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Spino Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Stego Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Allosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Argentavis Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Carno Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Kentro Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Megalosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Spino Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Stego Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Therizino Egg","Value":{"d":[412.5,55]}},{"Key":"Kentro Egg","Value":{"d":[412.5,55]}},{"Key":"Megalosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Spino Egg","Value":{"d":[412.5,55]}},{"Key":"Stego Egg","Value":{"d":[412.5,55]}},{"Key":"Therizino Egg","Value":{"d":[412.5,55]}},{"Key":"Araneo Egg","Value":{"d":[337.5,45]}},{"Key":"Camelsaurus Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Aberrant Trike Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Camelsaurus Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Pachyrhino Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Thorny Dragon Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Trike Egg","Value":{"d":[337.5,45]}},{"Key":"Mantis Egg","Value":{"d":[337.5,45]}},{"Key":"Pachyrhino Egg","Value":{"d":[337.5,45]}},{"Key":"Pulminoscorpius Egg","Value":{"d":[337.5,45]}},{"Key":"Thorny Dragon Egg","Value":{"d":[337.5,45]}},{"Key":"Trike Egg","Value":{"d":[337.5,45]}},{"Key":"Baryonyx Egg","Value":{"d":[262.5,35]}},{"Key":"Featherlight Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Aberrant Megalania Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Aberrant Raptor Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Baryonyx Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Featherlight Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Ichthyornis Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Kaprosuchus Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Megalania Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Pachycephalosaurus Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Pelagornis Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Pteranodon Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Raptor Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Rock Drake Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Tapejara Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Terror Bird Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Wyvern Egg","Value":{"d":[262.5,35]}},{"Key":"Ichthyornis Egg","Value":{"d":[262.5,35]}},{"Key":"Kaprosuchus Egg","Value":{"d":[262.5,35]}},{"Key":"Megalania Egg","Value":{"d":[262.5,35]}},{"Key":"Pachycephalosaurus Egg","Value":{"d":[262.5,35]}},{"Key":"Pelagornis Egg","Value":{"d":[262.5,35]}},{"Key":"Pteranodon Egg","Value":{"d":[262.5,35]}},{"Key":"Raptor Egg","Value":{"d":[262.5,35]}},{"Key":"Rock Drake Egg","Value":{"d":[262.5,35]}},{"Key":"Tapejara Egg","Value":{"d":[262.5,35]}},{"Key":"Terror Bird Egg","Value":{"d":[262.5,35]}},{"Key":"Wyvern Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Oviraptor Egg","Value":{"d":[225,30]}},{"Key":"Oviraptor Egg","Value":{"d":[225,30]}},{"Key":"Ankylo Egg","Value":{"d":[187.5,25]}},{"Key":"Dimorph Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Ankylo Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Iguanodon Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Moschops Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Parasaur Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Ankylo Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Dimorph Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Gallimimus Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Iguanodon Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Moschops Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Moth Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Parasaur Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Vulture Egg","Value":{"d":[187.5,25]}},{"Key":"Gallimimus Egg","Value":{"d":[187.5,25]}},{"Key":"Iguanodon Egg","Value":{"d":[187.5,25]}},{"Key":"Moschops Egg","Value":{"d":[187.5,25]}},{"Key":"Moth Egg","Value":{"d":[187.5,25]}},{"Key":"Parasaur Egg","Value":{"d":[187.5,25]}},{"Key":"Vulture Egg","Value":{"d":[187.5,25]}},{"Key":"Archaeopteryx Egg","Value":{"d":[150,20]}},{"Key":"Compy Egg","Value":{"d":[150,20]}},{"Key":"Dilo Egg","Value":{"d":[150,20]}},{"Key":"Dodo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Aberrant Dodo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Aberrant Lystrosaurus Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Aberrant Turtle Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Achaeopteryx Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Compy Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Dilo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Dodo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Hesperornis Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Kairuku Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Lystrosaurus Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Microraptor Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Pegomastax Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Troodon Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Turtle Egg","Value":{"d":[150,20]}},{"Key":"Hesperornis Egg","Value":{"d":[150,20]}},{"Key":"Kairuku Egg","Value":{"d":[150,20]}},{"Key":"Lystro Egg","Value":{"d":[150,20]}},{"Key":"Microraptor Egg","Value":{"d":[150,20]}},{"Key":"Pegomastax Egg","Value":{"d":[150,20]}},{"Key":"Troodon Egg","Value":{"d":[150,20]}},{"Key":"Turtle Egg","Value":{"d":[150,20]}}],"tamingIneffectiveness":3,"affinityNeeded0":1950,"affinityIncreasePL":90,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"boneDamageAdjusters":[{"Key":2.5,"Value":"Head"}]},{"name":"Aberrant 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.04],[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.015,1.2,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":"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.01,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.01,-0.1,0],[1000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Anglerfish","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.01,0,0],[900,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.02,0.35,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.01,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.01,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","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,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.01,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.01,0,0],[2000,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,1,0],[200,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.02,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.01,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.0125,0.085,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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],[750,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.01,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.01,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.01,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,750]}},{"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.01,0.3,0],[800,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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,37.5]}},{"Key":"Raw Prime Meat","Value":{"d":[50,30]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,20.25]}},{"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.01,2,0],[75,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0,0],[750,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0,0],[220,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,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.01,1.226,0],[1000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Giant Bee Honey","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}},{"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.01,0.3,0],[450,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,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.02,0.6,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.01,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.01,0,0],[1150,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":null,"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.01,0,0],[175,0.06,0,0.5,0]],"taming":{"eats":["Bio Toxin","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.2,0.5,0.4],[1,0,0.01,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.01,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","Raw Prime Meat","Rare Flower","Cooked Lamb Chop","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":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Rare Flower","Value":{"d":[75,150]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,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":"Griffin","breeding":{"gestationTime":0,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Wing and Main Body","colorIds":[37,39,42,32,33,34,13,35,43,36]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Fur","colorIds":[37,39,32,33,34,8,13,38,43]},{"name":"Feather Highlights","colorIds":[37,39,37,21,38,32,33,8,13,55]}],"statsRaw":[[927,0.15,0.216,-1000,0],[225,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],[1500,0.06,0,0.5,0]],"NoImprintingForSpeed":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky"],"favoriteKibble":"Allosaurus","nonViolent":false,"specialFoodValues":[{"Key":"Raw Mutton","Value":{"d":[50,137.5]}},{"Key":"Raw Prime Meat","Value":{"d":[50,110]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,67.5]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,50]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,50]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,44]}},{"Key":"Raw Meat","Value":{"d":[50,25]}},{"Key":"Cooked Prime Fish Meat","Value":{"d":[25.686001,20]}},{"Key":"Cooked Meat","Value":{"d":[25,12]}},{"Key":"Cooked Meat Jerky","Value":{"d":[25,12]}}],"tamingIneffectiveness":3.125,"affinityNeeded0":2200,"affinityIncreasePL":100,"torporDepletionPS0":2.133333,"foodConsumptionBase":0.002066,"foodConsumptionMult":150,"violent":true},"immobilizedBy":["Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"]},{"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.01,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.01,0.3,0],[450,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":[[50,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.01,0.365,0],[120,0.06,0,0.5,0]],"TamedBaseHealthMultiplier":2,"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","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,2,0],[300,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0.2,0],[200,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,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.01,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.01,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.015,1,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.01,0.3,0],[700,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,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.01,0,0],[800,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0,0],[775,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0,0],[1000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Giant Bee Honey","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}},{"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.01,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.01,2,0],[75,0.06,0,0.5,0]],"taming":{"eats":["Rare Flower","Rare Mushroom","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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,31.25]}},{"Key":"Raw Prime Meat","Value":{"d":[50,25]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,24.300001]}},{"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.21,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.65,0.4],[1,0,0.01,0,0],[3000,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0.2,0],[300,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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,250]}},{"Key":"Raw Prime Meat","Value":{"d":[50,200]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,80]}},{"Key":"Vegetables","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":6000,"affinityIncreasePL":150,"foodConsumptionBase":0.001736,"foodConsumptionMult":176.03154,"wakeAffinityMult":2.5,"wakeFoodDeplMult":1.2,"violent":false},"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.01,0,0],[200,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":3000,"affinityIncreasePL":90,"foodConsumptionBase":0.002893,"foodConsumptionMult":192.034409,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false}},{"name":"Otter","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":75757.570313,"matingCooldownMin":64800,"matingCooldownMax":142800},"colors":[{"name":"Body Main","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Body Stripes and Highlights","colorIds":[22,33,34,8,13,35,14,37,38,39]},{"name":"Underbelly","colorIds":[21,32,33,8,37,38,39]}],"statsRaw":[[40,0.2,0.27,0.5,0],[180,0.1,0.1,0,0],[600,0.1,0.1,0,0],[400,0.1,0.1,0,0],[30,0.02,0.04,0,0],[1,0.04,0.1,0.5,0.4],[1,0,0.01,0.7,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Raw Prime Fish Meat","Cooked Prime Fish Meat","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":8.333333,"affinityNeeded0":1200,"affinityIncreasePL":25,"foodConsumptionBase":0.002314,"foodConsumptionMult":160.056335,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"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.01,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 Aberrant Spino Egg","Fertilized Spino Egg","Spino Egg","Bronto Egg","Fertilized Bronto Egg","Carno Egg","Fertilized Aberrant 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 Aberrant Spino Egg","Value":{"d":[137.5,80]}},{"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 Aberrant 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.01,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":[[165,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.01,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.01,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.01,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],[450,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.01,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":[[120,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.01,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.01,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.16,0],[800,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.01,0,0],[1600,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,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","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,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.01,0,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.015,0.2,0],[180,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0,0],[1550,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0.32,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0.6,0],[400,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Spino","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.01,0,0],[850,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.02,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":0.4,"Value":"Tail"},{"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","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0.2,0],[300,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Therizinosaur","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.01,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.189,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.01,0.3,0],[700,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Cooked Lamb Chop","Cooked Prime Meat","Prime Meat Jerky","Raw Mutton","Cooked Meat","Cooked Meat Jerky","Raw Prime Meat"],"favoriteKibble":"Titanoboa","nonViolent":false,"specialFoodValues":[{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,47.25]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,35]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,35]}},{"Key":"Raw Mutton","Value":{"d":[50,25]}},{"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":"Titanoboa","colors":[{"name":"Body","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14,36]},{"name":"Frill Middle Line 1","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Frill Middle Line 2","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Frill Middle Line 3","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Body Accent and Inner Frill","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Outer Frill","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]}],"statsRaw":[[170,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.01,0.2,0],[175,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Golden Hesperornis Egg","Fertilized Giganotosaurus Egg","Giganotosaurus Egg","Basilisk Egg","Bronto Egg","Dinosaur Egg","Diplo Egg","Fertilized Aberrant Diplo Egg","Fertilized Bronto Egg","Fertilized Diplo Egg","Titanboa Egg","Dimetrodon Egg","Fertilized Aberrant Dimetrodon Egg","Fertilized Aberrant Sarco Egg","Fertilized Dimetrodon Egg","Fertilized Glowtail Egg","Fertilized Quetzal Egg","Fertilized Rex Egg","Fertilized Sarco Egg","Fertilized Yutyrannus Egg","Glowtail Egg","Quetzal Egg","Rex Egg","Sarco Egg","Yutyrannus Egg","Allosaurus Egg","Argentavis Egg","Carno Egg","Fertilized Aberrant Carno Egg","Fertilized Aberrant Megalosaurus Egg","Fertilized Aberrant Spino Egg","Fertilized Aberrant Stego Egg","Fertilized Allosaurus Egg","Fertilized Argentavis Egg","Fertilized Carno Egg","Fertilized Kentro Egg","Fertilized Megalosaurus Egg","Fertilized Spino Egg","Fertilized Stego Egg","Fertilized Therizino Egg","Kentro Egg","Megalosaurus Egg","Spino Egg","Stego Egg","Therizino Egg","Araneo Egg","Camelsaurus Egg","Fertilized Aberrant Trike Egg","Fertilized Camelsaurus Egg","Fertilized Pachyrhino Egg","Fertilized Thorny Dragon Egg","Fertilized Trike Egg","Mantis Egg","Pachyrhino Egg","Pulminoscorpius Egg","Thorny Dragon Egg","Trike Egg","Baryonyx Egg","Featherlight Egg","Fertilized Aberrant Megalania Egg","Fertilized Aberrant Raptor Egg","Fertilized Baryonyx Egg","Fertilized Featherlight Egg","Fertilized Ichthyornis Egg","Fertilized Kaprosuchus Egg","Fertilized Megalania Egg","Fertilized Pachycephalosaurus Egg","Fertilized Pelagornis Egg","Fertilized Pteranodon Egg","Fertilized Raptor Egg","Fertilized Rock Drake Egg","Fertilized Tapejara Egg","Fertilized Terror Bird Egg","Fertilized Wyvern Egg","Ichthyornis Egg","Kaprosuchus Egg","Megalania Egg","Pachycephalosaurus Egg","Pelagornis Egg","Pteranodon Egg","Raptor Egg","Rock Drake Egg","Tapejara Egg","Terror Bird Egg","Wyvern Egg","Fertilized Oviraptor Egg","Oviraptor Egg","Ankylo Egg","Dimorph Egg","Fertilized Aberrant Ankylo Egg","Fertilized Aberrant Iguanodon Egg","Fertilized Aberrant Moschops Egg","Fertilized Aberrant Parasaur Egg","Fertilized Ankylo Egg","Fertilized Dimorph Egg","Fertilized Gallimimus Egg","Fertilized Iguanodon Egg","Fertilized Moschops Egg","Fertilized Moth Egg","Fertilized Parasaur Egg","Fertilized Vulture Egg","Gallimimus Egg","Iguanodon Egg","Moschops Egg","Moth Egg","Parasaur Egg","Vulture Egg","Archaeopteryx Egg","Compy Egg","Dilo Egg","Dodo Egg","Fertilized Aberrant Dodo Egg","Fertilized Aberrant Lystrosaurus Egg","Fertilized Aberrant Turtle Egg","Fertilized Achaeopteryx Egg","Fertilized Compy Egg","Fertilized Dilo Egg","Fertilized Dodo Egg","Fertilized Hesperornis Egg","Fertilized Kairuku Egg","Fertilized Lystrosaurus Egg","Fertilized Microraptor Egg","Fertilized Pegomastax Egg","Fertilized Troodon Egg","Fertilized Turtle Egg","Hesperornis Egg","Kairuku Egg","Lystro Egg","Microraptor Egg","Pegomastax Egg","Troodon Egg","Turtle Egg"],"nonViolent":true,"specialFoodValues":[{"Key":"Golden Hesperornis Egg","Value":{"d":[1125,150]}},{"Key":"Fertilized Giganotosaurus Egg","Value":{"d":[900,120]}},{"Key":"Giganotosaurus Egg","Value":{"d":[900,120]}},{"Key":"Basilisk Egg","Value":{"d":[750,100]}},{"Key":"Bronto Egg","Value":{"d":[750,100]}},{"Key":"Dinosaur Egg","Value":{"d":[750,100]}},{"Key":"Diplo Egg","Value":{"d":[750,100]}},{"Key":"Fertilized Aberrant Diplo Egg","Value":{"d":[750,100]}},{"Key":"Fertilized Bronto Egg","Value":{"d":[750,100]}},{"Key":"Fertilized Diplo Egg","Value":{"d":[750,100]}},{"Key":"Titanboa Egg","Value":{"d":[750,100]}},{"Key":"Dimetrodon Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Aberrant Dimetrodon Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Aberrant Sarco Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Dimetrodon Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Glowtail Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Quetzal Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Rex Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Sarco Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Yutyrannus Egg","Value":{"d":[600,80]}},{"Key":"Glowtail Egg","Value":{"d":[600,80]}},{"Key":"Quetzal Egg","Value":{"d":[600,80]}},{"Key":"Rex Egg","Value":{"d":[600,80]}},{"Key":"Sarco Egg","Value":{"d":[600,80]}},{"Key":"Yutyrannus Egg","Value":{"d":[600,80]}},{"Key":"Allosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Argentavis Egg","Value":{"d":[412.5,55]}},{"Key":"Carno Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Carno Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Megalosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Spino Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Stego Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Allosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Argentavis Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Carno Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Kentro Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Megalosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Spino Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Stego Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Therizino Egg","Value":{"d":[412.5,55]}},{"Key":"Kentro Egg","Value":{"d":[412.5,55]}},{"Key":"Megalosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Spino Egg","Value":{"d":[412.5,55]}},{"Key":"Stego Egg","Value":{"d":[412.5,55]}},{"Key":"Therizino Egg","Value":{"d":[412.5,55]}},{"Key":"Araneo Egg","Value":{"d":[337.5,45]}},{"Key":"Camelsaurus Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Aberrant Trike Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Camelsaurus Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Pachyrhino Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Thorny Dragon Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Trike Egg","Value":{"d":[337.5,45]}},{"Key":"Mantis Egg","Value":{"d":[337.5,45]}},{"Key":"Pachyrhino Egg","Value":{"d":[337.5,45]}},{"Key":"Pulminoscorpius Egg","Value":{"d":[337.5,45]}},{"Key":"Thorny Dragon Egg","Value":{"d":[337.5,45]}},{"Key":"Trike Egg","Value":{"d":[337.5,45]}},{"Key":"Baryonyx Egg","Value":{"d":[262.5,35]}},{"Key":"Featherlight Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Aberrant Megalania Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Aberrant Raptor Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Baryonyx Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Featherlight Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Ichthyornis Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Kaprosuchus Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Megalania Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Pachycephalosaurus Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Pelagornis Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Pteranodon Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Raptor Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Rock Drake Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Tapejara Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Terror Bird Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Wyvern Egg","Value":{"d":[262.5,35]}},{"Key":"Ichthyornis Egg","Value":{"d":[262.5,35]}},{"Key":"Kaprosuchus Egg","Value":{"d":[262.5,35]}},{"Key":"Megalania Egg","Value":{"d":[262.5,35]}},{"Key":"Pachycephalosaurus Egg","Value":{"d":[262.5,35]}},{"Key":"Pelagornis Egg","Value":{"d":[262.5,35]}},{"Key":"Pteranodon Egg","Value":{"d":[262.5,35]}},{"Key":"Raptor Egg","Value":{"d":[262.5,35]}},{"Key":"Rock Drake Egg","Value":{"d":[262.5,35]}},{"Key":"Tapejara Egg","Value":{"d":[262.5,35]}},{"Key":"Terror Bird Egg","Value":{"d":[262.5,35]}},{"Key":"Wyvern Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Oviraptor Egg","Value":{"d":[225,30]}},{"Key":"Oviraptor Egg","Value":{"d":[225,30]}},{"Key":"Ankylo Egg","Value":{"d":[187.5,25]}},{"Key":"Dimorph Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Ankylo Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Iguanodon Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Moschops Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Parasaur Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Ankylo Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Dimorph Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Gallimimus Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Iguanodon Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Moschops Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Moth Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Parasaur Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Vulture Egg","Value":{"d":[187.5,25]}},{"Key":"Gallimimus Egg","Value":{"d":[187.5,25]}},{"Key":"Iguanodon Egg","Value":{"d":[187.5,25]}},{"Key":"Moschops Egg","Value":{"d":[187.5,25]}},{"Key":"Moth Egg","Value":{"d":[187.5,25]}},{"Key":"Parasaur Egg","Value":{"d":[187.5,25]}},{"Key":"Vulture Egg","Value":{"d":[187.5,25]}},{"Key":"Archaeopteryx Egg","Value":{"d":[150,20]}},{"Key":"Compy Egg","Value":{"d":[150,20]}},{"Key":"Dilo Egg","Value":{"d":[150,20]}},{"Key":"Dodo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Aberrant Dodo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Aberrant Lystrosaurus Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Aberrant Turtle Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Achaeopteryx Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Compy Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Dilo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Dodo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Hesperornis Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Kairuku Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Lystrosaurus Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Microraptor Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Pegomastax Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Troodon Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Turtle Egg","Value":{"d":[150,20]}},{"Key":"Hesperornis Egg","Value":{"d":[150,20]}},{"Key":"Kairuku Egg","Value":{"d":[150,20]}},{"Key":"Lystro Egg","Value":{"d":[150,20]}},{"Key":"Microraptor Egg","Value":{"d":[150,20]}},{"Key":"Pegomastax Egg","Value":{"d":[150,20]}},{"Key":"Troodon Egg","Value":{"d":[150,20]}},{"Key":"Turtle Egg","Value":{"d":[150,20]}}],"tamingIneffectiveness":3,"affinityNeeded0":1950,"affinityIncreasePL":90,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"boneDamageAdjusters":[{"Key":2.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.015,1.2,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],[200,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.01,0.2,0],[180,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,1,0],[1800,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Black Pearl","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop"],"nonViolent":true,"specialFoodValues":[{"Key":"Black Pearl","Value":{"d":[30,50,50]}},{"Key":"Raw Mutton","Value":{"d":[50,18.75]}},{"Key":"Raw Prime Meat","Value":{"d":[50,15]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,10.125,30]}}],"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.01,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.01,0,0],[1550,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,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.01,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":null,"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.01,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.01,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":"Phoenix","colors":[{"name":"Body Main","colorIds":[20,22,42,43,44,10,14]},{"name":"Beak and Feet","colorIds":[20,22,21,33,39,43,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Feather Highlights","colorIds":[21,10,11,44,4,7,8]},{"name":"Underbelly and Wing Highlights","colorIds":[29,48,28,53,51,49,5,54,14]}],"statsRaw":[[400,0.2,0.27,0.5,0],[220,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[180,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0,0,0],[200,0.06,0,0.5,0]],"taming":{"eats":["Sulfur"],"nonViolent":true,"specialFoodValues":[{"Key":"Sulfur","Value":{"d":[100,25]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":6600,"affinityIncreasePL":200,"foodConsumptionBase":0.002893,"foodConsumptionMult":192.034409,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false}},{"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.01,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":"Mid-section and Legs","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":"Quills","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Belly","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]},{"name":"Top","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":[[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.01,0.3,0],[450,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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,162.5]}},{"Key":"Raw Prime Meat","Value":{"d":[50,130]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,81]}},{"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.01,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"]},{"name":"Dire Polar Bear","breeding":{"gestationTime":14285.713867,"incubationTime":0,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"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.01,1.226,0],[1000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Giant Bee Honey","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}},{"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":"Ice Wyvern","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":80,"eggTempMax":90},"colors":[{"name":"Body Main","colorIds":[25,28,8,51,52,30,36,38,48,50,56]},{"name":"Fins","colorIds":[14,28,8,51,52]},{"name":"Wings","colorIds":[49,50,31,35,28,30,8,51]},{"name":null,"colorIds":[1]},{"name":"Scales Belly","colorIds":[25,28,8,51,52,30,32,36,37,38,48,56]},{"name":"Scales Top and Fins","colorIds":[25,28,8,51,50,30,36,48,56]}],"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":"Basilisk","colors":[{"name":"Body Main","colorIds":[42,22,24,26,45,52,49,33,34,13,35,14,36,48]},{"name":"Horns","colorIds":[43,21,23,25,47,28,30,32,33,8,14,36]},{"name":"Underbelly","colorIds":[39,23,25,37,48,30,32,33,8,14,36]},{"name":null,"colorIds":[]},{"name":"Emissive","colorIds":[19,21,23,25,26,28,30,32,43,44,48,36,53]},{"name":"Highlights","colorIds":[52,51,49,48,26,47,42,32,33,35,14,36]}],"statsRaw":[[2750,0.2,0.27,0.5,0],[650,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2500,0.1,0.1,0,0],[2200,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.01,0.2,0],[175,0.06,0,0.5,0]],"TamedBaseHealthMultiplier":0.5,"doesNotUseOxygen":true,"taming":{"eats":["Golden Hesperornis Egg","Fertilized Giganotosaurus Egg","Giganotosaurus Egg","Basilisk Egg","Bronto Egg","Dinosaur Egg","Diplo Egg","Fertilized Aberrant Diplo Egg","Fertilized Bronto Egg","Fertilized Diplo Egg","Titanboa Egg","Dimetrodon Egg","Fertilized Aberrant Dimetrodon Egg","Fertilized Aberrant Sarco Egg","Fertilized Dimetrodon Egg","Fertilized Glowtail Egg","Fertilized Quetzal Egg","Fertilized Rex Egg","Fertilized Sarco Egg","Fertilized Yutyrannus Egg","Glowtail Egg","Quetzal Egg","Rex Egg","Sarco Egg","Yutyrannus Egg","Allosaurus Egg","Argentavis Egg","Carno Egg","Fertilized Aberrant Carno Egg","Fertilized Aberrant Megalosaurus Egg","Fertilized Aberrant Spino Egg","Fertilized Aberrant Stego Egg","Fertilized Allosaurus Egg","Fertilized Argentavis Egg","Fertilized Carno Egg","Fertilized Kentro Egg","Fertilized Megalosaurus Egg","Fertilized Spino Egg","Fertilized Stego Egg","Fertilized Therizino Egg","Kentro Egg","Megalosaurus Egg","Spino Egg","Stego Egg","Therizino Egg","Cooked Lamb Chop","Araneo Egg","Camelsaurus Egg","Fertilized Aberrant Trike Egg","Fertilized Camelsaurus Egg","Fertilized Pachyrhino Egg","Fertilized Thorny Dragon Egg","Fertilized Trike Egg","Mantis Egg","Pachyrhino Egg","Pulminoscorpius Egg","Thorny Dragon Egg","Trike Egg","Cooked Prime Meat","Prime Meat Jerky","Baryonyx Egg","Featherlight Egg","Fertilized Aberrant Megalania Egg","Fertilized Aberrant Raptor Egg","Fertilized Baryonyx Egg","Fertilized Featherlight Egg","Fertilized Ichthyornis Egg","Fertilized Kaprosuchus Egg","Fertilized Megalania Egg","Fertilized Pachycephalosaurus Egg","Fertilized Pelagornis Egg","Fertilized Pteranodon Egg","Fertilized Raptor Egg","Fertilized Rock Drake Egg","Fertilized Tapejara Egg","Fertilized Terror Bird Egg","Fertilized Wyvern Egg","Ichthyornis Egg","Kaprosuchus Egg","Megalania Egg","Pachycephalosaurus Egg","Pelagornis Egg","Pteranodon Egg","Raptor Egg","Rock Drake Egg","Tapejara Egg","Terror Bird Egg","Wyvern Egg","Fertilized Oviraptor Egg","Oviraptor Egg","Raw Mutton","Ankylo Egg","Dimorph Egg","Fertilized Aberrant Ankylo Egg","Fertilized Aberrant Iguanodon Egg","Fertilized Aberrant Moschops Egg","Fertilized Aberrant Parasaur Egg","Fertilized Ankylo Egg","Fertilized Dimorph Egg","Fertilized Gallimimus Egg","Fertilized Iguanodon Egg","Fertilized Moschops Egg","Fertilized Moth Egg","Fertilized Parasaur Egg","Fertilized Vulture Egg","Gallimimus Egg","Iguanodon Egg","Moschops Egg","Moth Egg","Parasaur Egg","Vulture Egg","Cooked Meat","Cooked Meat Jerky","Raw Prime Meat","Archaeopteryx Egg","Compy Egg","Dilo Egg","Dodo Egg","Fertilized Aberrant Dodo Egg","Fertilized Aberrant Lystrosaurus Egg","Fertilized Aberrant Turtle Egg","Fertilized Achaeopteryx Egg","Fertilized Compy Egg","Fertilized Dilo Egg","Fertilized Dodo Egg","Fertilized Hesperornis Egg","Fertilized Kairuku Egg","Fertilized Lystrosaurus Egg","Fertilized Microraptor Egg","Fertilized Pegomastax Egg","Fertilized Troodon Egg","Fertilized Turtle Egg","Hesperornis Egg","Kairuku Egg","Lystro Egg","Microraptor Egg","Pegomastax Egg","Troodon Egg","Turtle Egg"],"nonViolent":true,"specialFoodValues":[{"Key":"Golden Hesperornis Egg","Value":{"d":[1125,150]}},{"Key":"Fertilized Giganotosaurus Egg","Value":{"d":[900,120]}},{"Key":"Giganotosaurus Egg","Value":{"d":[900,120]}},{"Key":"Basilisk Egg","Value":{"d":[750,100]}},{"Key":"Bronto Egg","Value":{"d":[750,100]}},{"Key":"Dinosaur Egg","Value":{"d":[750,100]}},{"Key":"Diplo Egg","Value":{"d":[750,100]}},{"Key":"Fertilized Aberrant Diplo Egg","Value":{"d":[750,100]}},{"Key":"Fertilized Bronto Egg","Value":{"d":[750,100]}},{"Key":"Fertilized Diplo Egg","Value":{"d":[750,100]}},{"Key":"Titanboa Egg","Value":{"d":[750,100]}},{"Key":"Dimetrodon Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Aberrant Dimetrodon Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Aberrant Sarco Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Dimetrodon Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Glowtail Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Quetzal Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Rex Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Sarco Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Yutyrannus Egg","Value":{"d":[600,80]}},{"Key":"Glowtail Egg","Value":{"d":[600,80]}},{"Key":"Quetzal Egg","Value":{"d":[600,80]}},{"Key":"Rex Egg","Value":{"d":[600,80]}},{"Key":"Sarco Egg","Value":{"d":[600,80]}},{"Key":"Yutyrannus Egg","Value":{"d":[600,80]}},{"Key":"Allosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Argentavis Egg","Value":{"d":[412.5,55]}},{"Key":"Carno Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Carno Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Megalosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Spino Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Stego Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Allosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Argentavis Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Carno Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Kentro Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Megalosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Spino Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Stego Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Therizino Egg","Value":{"d":[412.5,55]}},{"Key":"Kentro Egg","Value":{"d":[412.5,55]}},{"Key":"Megalosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Spino Egg","Value":{"d":[412.5,55]}},{"Key":"Stego Egg","Value":{"d":[412.5,55]}},{"Key":"Therizino Egg","Value":{"d":[412.5,55]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,47.25]}},{"Key":"Araneo Egg","Value":{"d":[337.5,45]}},{"Key":"Camelsaurus Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Aberrant Trike Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Camelsaurus Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Pachyrhino Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Thorny Dragon Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Trike Egg","Value":{"d":[337.5,45]}},{"Key":"Mantis Egg","Value":{"d":[337.5,45]}},{"Key":"Pachyrhino Egg","Value":{"d":[337.5,45]}},{"Key":"Pulminoscorpius Egg","Value":{"d":[337.5,45]}},{"Key":"Thorny Dragon Egg","Value":{"d":[337.5,45]}},{"Key":"Trike Egg","Value":{"d":[337.5,45]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,35]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,35]}},{"Key":"Baryonyx Egg","Value":{"d":[262.5,35]}},{"Key":"Featherlight Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Aberrant Megalania Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Aberrant Raptor Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Baryonyx Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Featherlight Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Ichthyornis Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Kaprosuchus Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Megalania Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Pachycephalosaurus Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Pelagornis Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Pteranodon Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Raptor Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Rock Drake Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Tapejara Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Terror Bird Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Wyvern Egg","Value":{"d":[262.5,35]}},{"Key":"Ichthyornis Egg","Value":{"d":[262.5,35]}},{"Key":"Kaprosuchus Egg","Value":{"d":[262.5,35]}},{"Key":"Megalania Egg","Value":{"d":[262.5,35]}},{"Key":"Pachycephalosaurus Egg","Value":{"d":[262.5,35]}},{"Key":"Pelagornis Egg","Value":{"d":[262.5,35]}},{"Key":"Pteranodon Egg","Value":{"d":[262.5,35]}},{"Key":"Raptor Egg","Value":{"d":[262.5,35]}},{"Key":"Rock Drake Egg","Value":{"d":[262.5,35]}},{"Key":"Tapejara Egg","Value":{"d":[262.5,35]}},{"Key":"Terror Bird Egg","Value":{"d":[262.5,35]}},{"Key":"Wyvern Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Oviraptor Egg","Value":{"d":[225,30]}},{"Key":"Oviraptor Egg","Value":{"d":[225,30]}},{"Key":"Raw Mutton","Value":{"d":[50,25]}},{"Key":"Ankylo Egg","Value":{"d":[187.5,25]}},{"Key":"Dimorph Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Ankylo Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Iguanodon Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Moschops Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Parasaur Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Ankylo Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Dimorph Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Gallimimus Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Iguanodon Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Moschops Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Moth Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Parasaur Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Vulture Egg","Value":{"d":[187.5,25]}},{"Key":"Gallimimus Egg","Value":{"d":[187.5,25]}},{"Key":"Iguanodon Egg","Value":{"d":[187.5,25]}},{"Key":"Moschops Egg","Value":{"d":[187.5,25]}},{"Key":"Moth Egg","Value":{"d":[187.5,25]}},{"Key":"Parasaur Egg","Value":{"d":[187.5,25]}},{"Key":"Vulture Egg","Value":{"d":[187.5,25]}},{"Key":"Cooked Meat","Value":{"d":[25,20]}},{"Key":"Cooked Meat Jerky","Value":{"d":[25,20]}},{"Key":"Raw Prime Meat","Value":{"d":[50,20]}},{"Key":"Archaeopteryx Egg","Value":{"d":[150,20]}},{"Key":"Compy Egg","Value":{"d":[150,20]}},{"Key":"Dilo Egg","Value":{"d":[150,20]}},{"Key":"Dodo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Aberrant Dodo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Aberrant Lystrosaurus Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Aberrant Turtle Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Achaeopteryx Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Compy Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Dilo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Dodo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Hesperornis Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Kairuku Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Lystrosaurus Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Microraptor Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Pegomastax Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Troodon Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Turtle Egg","Value":{"d":[150,20]}},{"Key":"Hesperornis Egg","Value":{"d":[150,20]}},{"Key":"Kairuku Egg","Value":{"d":[150,20]}},{"Key":"Lystro Egg","Value":{"d":[150,20]}},{"Key":"Microraptor Egg","Value":{"d":[150,20]}},{"Key":"Pegomastax Egg","Value":{"d":[150,20]}},{"Key":"Troodon Egg","Value":{"d":[150,20]}},{"Key":"Turtle Egg","Value":{"d":[150,20]}}],"tamingIneffectiveness":3,"affinityNeeded0":1600,"affinityIncreasePL":20,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"boneDamageAdjusters":[{"Key":2.5,"Value":"Head"}]},{"name":"Bulbdog","breeding":{"gestationTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"main body","colorIds":[21,22,32,33,34,8,13,35,24,26,42,45,46,37,48,39,47,52,56]},{"name":null,"colorIds":[]},{"name":"spots","colorIds":[21,11,32,44,33,8,28,25,28,30,50,30,26,43,42]},{"name":"lantern","colorIds":[44,54,53,25,26,28,50,11,5,6,12]},{"name":"belly","colorIds":[21,23,32,33,25,8,28,30,37,47,39,43,14]},{"name":"back stripes","colorIds":[24,22,42,33,34,45,13,35,14,48,52,49,52,56]}],"statsRaw":[[145,0.2,0.27,0.5,0],[200,0.12,0.12,0.05,0],[165,0.11,0.11,0.025,0],[450,0.1,0.1,0,0.15],[120,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.01,1.3,0],[60,0.06,0,0.5,0]],"taming":{"eats":["Plant Species Z Seed","Plant Species Z Seed (SpeedHack)","Aquatic Mushroom","Cooked Lamb Chop","Cooked Prime Meat","Prime Meat Jerky","Raw Mutton","Sweet Vegetable Cake","Cooked Meat","Cooked Meat Jerky","Raw Prime Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Plant Species Z Seed","Value":{"d":[75,400]}},{"Key":"Plant Species Z Seed (SpeedHack)","Value":{"d":[75,400]}},{"Key":"Aquatic Mushroom","Value":{"d":[50,75]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,47.25]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,35]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,35]}},{"Key":"Raw Mutton","Value":{"d":[50,25]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}},{"Key":"Cooked Meat","Value":{"d":[25,20]}},{"Key":"Cooked Meat Jerky","Value":{"d":[25,20]}},{"Key":"Raw Prime Meat","Value":{"d":[50,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":"Featherlight","breeding":{"gestationTime":0,"incubationTime":5999.520508,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":29,"eggTempMax":32},"colors":[{"name":"main body","colorIds":[19,20,12,22,26,29,31,44,49,51,54,14,53]},{"name":"legs","colorIds":[22,21,23,26,28,30,32,33,8,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"belly","colorIds":[19,21,37,25,39,28,30,32,42,43,8,48]},{"name":"emissive","colorIds":[7,19,22,44,54,53,25,50,5,11]}],"statsRaw":[[115,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[180,0.11,0.11,0.2,0],[450,0.1,0.1,0,0.15],[70,0.02,0.04,0,0],[1,0.065,0.12,1.1,0.5],[1,0,0.01,1.3,0],[60,0.06,0,0.5,0]],"taming":{"eats":["Plant Species Z Seed","Plant Species Z Seed (SpeedHack)","Auric Mushroom"],"nonViolent":true,"specialFoodValues":[{"Key":"Plant Species Z Seed","Value":{"d":[75,400]}},{"Key":"Plant Species Z Seed (SpeedHack)","Value":{"d":[75,400]}},{"Key":"Auric Mushroom","Value":{"d":[50,75]}}],"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"}]},{"name":"Glowtail","breeding":{"gestationTime":0,"incubationTime":8999.280273,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":30,"eggTempMax":34},"colors":[{"name":"main body","colorIds":[23,24,26,42,33,43,45,47,48,49,46,51,14]},{"name":null,"colorIds":[23,24,26,27,33,34,13,35,14]},{"name":"wings","colorIds":[24,26,42,50,46,43,44,49,48,51,53]},{"name":"lantern","colorIds":[48,54,51,25,28,50,11,5,51,42,43]},{"name":"belly","colorIds":[23,21,32,25,28,30,8,47,39,37,14]},{"name":"back stripes","colorIds":[22,24,26,42,44,48,49,52,33,34,13,35,14]}],"statsRaw":[[115,0.2,0.27,0.5,0],[100,0.1,0.125,0,0],[200,0.12,0.115,0.12,0],[450,0.1,0.1,0,0.15],[70,0.02,0.04,0,0],[1,0.055,0.11,1.11,0.42],[1,0,0.01,1.3,0],[60,0.06,0,0.5,0]],"taming":{"eats":["Plant Species Z Seed","Plant Species Z Seed (SpeedHack)","Ascerbic Mushroom"],"nonViolent":true,"specialFoodValues":[{"Key":"Plant Species Z Seed","Value":{"d":[75,400]}},{"Key":"Plant Species Z Seed (SpeedHack)","Value":{"d":[75,400]}},{"Key":"Ascerbic Mushroom","Value":{"d":[18,75]}}],"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":"Karkinos","colors":[{"name":"Body Main","colorIds":[22,34,24,31,13,35,33,34,42,52,56,39,37,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Highlights","colorIds":[48,43,28,30,31,44,49,51,53,54]},{"name":"Underbody","colorIds":[24,21,32,37,33,39,43,42,47,48,14]}],"statsRaw":[[1200,0.2,0.27,0.5,0],[600,0.1,0.1,0,0],[150,0.1,0.1,0,0],[5000,0.1,0.1,0,0],[800,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.01,0,0],[800,0.05,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Spoiled Meat","Raw Meat"],"favoriteKibble":"Carbonemys","nonViolent":false,"specialFoodValues":[{"Key":"Raw Meat","Value":{"d":[15,15]}}],"tamingIneffectiveness":0.56,"affinityNeeded0":7200,"affinityIncreasePL":210,"torporDepletionPS0":0.5,"foodConsumptionBase":0.003156,"foodConsumptionMult":181,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"]},{"name":"Ravager","breeding":{"gestationTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[32,33,34,8,56,13,18,37,39,21]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Underbelly","colorIds":[32,33,8,13,18]},{"name":"Top Highlights","colorIds":[33,34,13,35,22,52,35]}],"statsRaw":[[400,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.15],[500,0.02,0.04,0,0],[1,0.04,0.08,0.3,0.3],[1,0,0.01,0.35,0],[500,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":[{"Key":"Raw Mutton","Value":{"d":[187.5,562.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[107.024994,540]}}],"tamingIneffectiveness":3.125,"affinityNeeded0":1850,"affinityIncreasePL":85,"torporDepletionPS0":0.3,"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":"Reaper King","breeding":{"gestationTime":0,"incubationTime":0,"maturationTime":277777.75,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"body Main","colorIds":[22,37,42,34,35,43,33,24,35,48,1,2,3,4,5,6,49,53]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Underbelly ","colorIds":[23,43,32,30,33,37,38,47]},{"name":"Back color","colorIds":[35,14,35,56,34,42,33,22]}],"statsRaw":[[45000,0.0052,0.135,-38500,0],[480,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[415,0.02,0.04,0,0],[1,0.05,0.05,0,0.4],[1,0,0.01,0,0],[925,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"tamingIneffectiveness":0.06,"affinityNeeded0":6800,"affinityIncreasePL":160,"foodConsumptionBase":0.002314,"foodConsumptionMult":180.063385,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Reaper Queen","breeding":{"gestationTime":0,"incubationTime":0,"maturationTime":1666.666626,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"body Main","colorIds":[22,42,34,35,33,52,35]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Underbelly ","colorIds":[23,32,33,37,38]},{"name":"Back color","colorIds":[35,14,35,56]}],"statsRaw":[[45000,0.0052,0.135,-38500,0],[480,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[415,0.02,0.04,0,0],[1,0.05,0.05,0,0.4],[1,0,0.01,0,0],[925,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.06,"affinityNeeded0":6800,"affinityIncreasePL":160,"foodConsumptionBase":0.002314,"foodConsumptionMult":180.063385,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Rock Drake","breeding":{"gestationTime":0,"incubationTime":22498.201172,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":-90,"eggTempMax":-80},"colors":[{"name":"Body Main","colorIds":[21,22,23,24,48,26,45,47,33,32,8,13,46,14]},{"name":"FeathersMain","colorIds":[32,22,39,44,42,48,51,52,43]},{"name":null,"colorIds":[22,29,34,35,36,44,42,48,51,52,56,1,2,3,4,5,6,49,53]},{"name":null,"colorIds":[]},{"name":"Scales","colorIds":[42,45,22,23,24,25,26,46,52,33,34,42,13,35,14,48,50,51,1,2,3,4,5,6,49]},{"name":"Belly","colorIds":[43,21,23,24,25,28,46,32,33,8,48,47,52]}],"statsRaw":[[1950,0.085,0.2025,-1050,0],[450,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":85,"foodConsumptionBase":0.000185,"foodConsumptionMult":199.983994,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Roll Rat","breeding":{"gestationTime":17857.142578,"incubationTime":0,"maturationTime":208333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[21,22,32,33,34,8,13,35,14,37,47,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Scales","colorIds":[22,32,33,34,8,13,35,56,47,37,38,39,14]},{"name":"Underbelly","colorIds":[21,32,33,8,47,37,37,38,39]}],"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],[400,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.02,0,0],[800,0.06,0,0.5,0]],"TamedBaseHealthMultiplier":0.9,"taming":{"eats":["Giant Bee Honey","Vegetables","Mejoberry","Berries"],"nonViolent":true,"specialFoodValues":[{"Key":"Giant Bee Honey","Value":{"d":[100,500]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":2000,"affinityIncreasePL":100,"foodConsumptionBase":0.003156,"foodConsumptionMult":176.03154,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"]},{"name":"Shinehorn","breeding":{"gestationTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"main body","colorIds":[32,33,34,8,13,35,14,36,37,38,38,39]},{"name":null,"colorIds":[]},{"name":"stripes","colorIds":[21,11,32,33,53,8,25,44,50,43,42,37,38,39,48,51,28,49,50,30]},{"name":"lantern","colorIds":[48,54,53,25,26,28,50,11,5,51,42,43]},{"name":"feet","colorIds":[32,33,34,8,13,35,14,37,38,39]},{"name":"back","colorIds":[21,22,32,33,34,8,13,35,51,37,38,39,42,43,48,49,52,14]}],"statsRaw":[[115,0.2,0.27,0.5,0],[180,0.11,0.11,0.1,0],[180,0.11,0.11,0.1,0],[450,0.1,0.1,0,0.15],[100,0.02,0.04,0,0],[1,0.055,0.115,1.1,0.4],[1,0,0.01,1.3,0],[60,0.06,0,0.5,0]],"taming":{"eats":["Plant Species Z Seed","Plant Species Z Seed (SpeedHack)","Aggeravic Mushroom","Sweet Vegetable Cake"],"nonViolent":true,"specialFoodValues":[{"Key":"Plant Species Z Seed","Value":{"d":[75,400]}},{"Key":"Plant Species Z Seed (SpeedHack)","Value":{"d":[75,400]}},{"Key":"Aggeravic Mushroom","Value":{"d":[50,75]}},{"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":"Subterranean Reaper King","breeding":{"gestationTime":0,"incubationTime":0,"maturationTime":4166.666504,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"body Main","colorIds":[22,42,34,35,33,52,35]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Underbelly ","colorIds":[23,32,33,37,38]},{"name":"Back color","colorIds":[35,14,35,56]}],"statsRaw":[[2000,0.2,0.27,0.5,0],[480,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[415,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.01,0,0],[925,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.06,"affinityNeeded0":6800,"affinityIncreasePL":160,"foodConsumptionBase":0.002314,"foodConsumptionMult":180.063385,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Surface Reaper King","breeding":{"gestationTime":0,"incubationTime":0,"maturationTime":4166.666504,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"body Main","colorIds":[22,42,34,35,33,52,35]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Underbelly ","colorIds":[23,32,33,37,38]},{"name":"Back color","colorIds":[35,14,35,56]}],"statsRaw":[[2500,0.2,0.27,0.5,0],[480,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[415,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.01,0,0],[925,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.06,"affinityNeeded0":6800,"affinityIncreasePL":160,"foodConsumptionBase":0.002314,"foodConsumptionMult":180.063385,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]}]} \ No newline at end of file +{"ver":"276.21","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":"Spoiled Meat","Value":{"d":[50,100]}},{"Key":"Vegetables","Value":{"d":[40,40]}},{"Key":"Mejoberry","Value":{"d":[30,30]}},{"Key":"Berries","Value":{"d":[20,20]}},{"Key":"Stimberry","Value":{"d":[-15,1.5]}},{"Key":"Kibble","Value":{"d":[80,400]}},{"Key":"Raw Mutton","Value":{"d":[50,300]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,165]}}],"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]],"statMultipliersSP":[[3.57142857,2.27272727,2.125,null],null,null,null,null,[3.57142857,2.27272727,2.35294118,null],null,null],"matingIntervalMultiplierSP":0.125,"eggHatchSpeedMultiplierSP":10,"babyMatureSpeedMultiplierSP":36.799,"babyCuddleIntervalMultiplierSP":0.167,"tamingSpeedMultiplierSP":2.5,"species":[{"name":"Aberrant 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.04],[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.01,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":"Aberrant Anglerfish","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.04],[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.01,0,0],[900,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":1800,"affinityIncreasePL":90,"torporDepletionPS0":2.8,"foodConsumptionBase":0.001852,"foodConsumptionMult":149.988007,"violent":true}},{"name":"Aberrant 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.04],[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.02,0.35,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":"Aberrant 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.04],[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.01,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":"Aberrant 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.04],[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.01,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":"Aberrant 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.04],[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.01,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":"Aberrant 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.04],[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.01,1,0],[200,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant 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.04],[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.01,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":"Aberrant 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.04],[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.0125,0.085,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant 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.04],[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.01,0,0],[750,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant 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.04],[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.01,0,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant 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.04],[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.01,0,0],[220,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant 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.04],[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.01,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":"Aberrant 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.04],[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.01,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":"Aberrant 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.04],[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.02,0.6,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":"Aberrant 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.01,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":"Aberrant 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":null,"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.04],[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.01,0,0],[175,0.06,0,0.5,0]],"taming":{"eats":["Bio Toxin","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":2250,"affinityIncreasePL":90,"foodConsumptionBase":0.002929,"foodConsumptionMult":420,"wakeAffinityMult":1.6,"wakeFoodDeplMult":4,"violent":false}},{"name":"Aberrant 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.04],[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":"Aberrant 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.04],[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":"Aberrant 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.04],[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.01,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":"Aberrant 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.04],[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":"Aberrant 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.04],[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.01,0.3,0],[700,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant 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.04],[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.01,0,0],[775,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant 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.04],[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.01,0.2,0],[300,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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,250]}},{"Key":"Raw Prime Meat","Value":{"d":[50,200]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,80]}},{"Key":"Vegetables","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":6000,"affinityIncreasePL":150,"foodConsumptionBase":0.001736,"foodConsumptionMult":176.03154,"wakeAffinityMult":2.5,"wakeFoodDeplMult":1.2,"violent":false},"immobilizedBy":["Bola","Large Bear Trap","Plant Species Y"]},{"name":"Aberrant Otter","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":75757.570313,"matingCooldownMin":64800,"matingCooldownMax":142800},"colors":[{"name":"Body Main","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Body Stripes and Highlights","colorIds":[22,33,34,8,13,35,14,37,38,39]},{"name":"Underbelly","colorIds":[21,32,33,8,37,38,39]}],"statsRaw":[[40,0.2,0.27,0.5,-0.04],[180,0.1,0.1,0,0],[600,0.1,0.1,0,0],[400,0.1,0.1,0,0],[30,0.02,0.04,0,0],[1,0.04,0.1,0.5,0.4],[1,0,0.01,0.7,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Raw Prime Fish Meat","Cooked Prime Fish Meat","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":8.333333,"affinityNeeded0":1200,"affinityIncreasePL":25,"foodConsumptionBase":0.002314,"foodConsumptionMult":160.056335,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"name":"Aberrant 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.01,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":"Aberrant Paraceratherium","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":333333.3125,"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":[]},{"name":null,"colorIds":[]},{"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":[[1140,0.2,0.27,0.5,-0.04],[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.01,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":"Aberrant 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.04],[450,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.01,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":"Aberrant 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.04],[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.01,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":"Aberrant 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.04],[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.01,0,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant 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.04],[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.015,0.2,0],[180,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant 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.04],[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.01,0.6,0],[400,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Aberrant Spino","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.04],[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.01,0,0],[850,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"tamingIneffectiveness":1.5,"affinityNeeded0":3200,"affinityIncreasePL":150,"torporDepletionPS0":2.133333,"foodConsumptionBase":0.002066,"foodConsumptionMult":150,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Aberrant 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.04],[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.02,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":0.4,"Value":"Tail"},{"Key":1.67,"Value":"Head, Neck"}]},{"name":"Aberrant Titanoboa","colors":[{"name":"Body","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14,36]},{"name":"Frill Middle Line 1","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Frill Middle Line 2","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Frill Middle Line 3","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Body Accent and Inner Frill","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Outer Frill","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]}],"statsRaw":[[170,0.2,0.27,0.5,-0.04],[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.01,0.2,0],[175,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Golden Hesperornis Egg","Fertilized Giganotosaurus Egg","Giganotosaurus Egg","Basilisk Egg","Bronto Egg","Dinosaur Egg","Diplo Egg","Fertilized Aberrant Diplo Egg","Fertilized Bronto Egg","Fertilized Diplo Egg","Titanboa Egg","Dimetrodon Egg","Fertilized Aberrant Dimetrodon Egg","Fertilized Aberrant Sarco Egg","Fertilized Dimetrodon Egg","Fertilized Glowtail Egg","Fertilized Quetzal Egg","Fertilized Rex Egg","Fertilized Sarco Egg","Fertilized Yutyrannus Egg","Glowtail Egg","Quetzal Egg","Rex Egg","Sarco Egg","Yutyrannus Egg","Allosaurus Egg","Argentavis Egg","Carno Egg","Fertilized Aberrant Carno Egg","Fertilized Aberrant Megalosaurus Egg","Fertilized Aberrant Spino Egg","Fertilized Aberrant Stego Egg","Fertilized Allosaurus Egg","Fertilized Argentavis Egg","Fertilized Carno Egg","Fertilized Kentro Egg","Fertilized Megalosaurus Egg","Fertilized Spino Egg","Fertilized Stego Egg","Fertilized Therizino Egg","Kentro Egg","Megalosaurus Egg","Spino Egg","Stego Egg","Therizino Egg","Araneo Egg","Camelsaurus Egg","Fertilized Aberrant Trike Egg","Fertilized Camelsaurus Egg","Fertilized Pachyrhino Egg","Fertilized Thorny Dragon Egg","Fertilized Trike Egg","Mantis Egg","Pachyrhino Egg","Pulminoscorpius Egg","Thorny Dragon Egg","Trike Egg","Baryonyx Egg","Featherlight Egg","Fertilized Aberrant Baryonyx Egg","Fertilized Aberrant Megalania Egg","Fertilized Aberrant Raptor Egg","Fertilized Baryonyx Egg","Fertilized Featherlight Egg","Fertilized Ichthyornis Egg","Fertilized Kaprosuchus Egg","Fertilized Megalania Egg","Fertilized Pachycephalosaurus Egg","Fertilized Pelagornis Egg","Fertilized Pteranodon Egg","Fertilized Raptor Egg","Fertilized Rock Drake Egg","Fertilized Tapejara Egg","Fertilized Terror Bird Egg","Fertilized Wyvern Egg","Ichthyornis Egg","Kaprosuchus Egg","Megalania Egg","Pachycephalosaurus Egg","Pelagornis Egg","Pteranodon Egg","Raptor Egg","Rock Drake Egg","Tapejara Egg","Terror Bird Egg","Wyvern Egg","Fertilized Oviraptor Egg","Oviraptor Egg","Ankylo Egg","Dimorph Egg","Fertilized Aberrant Ankylo Egg","Fertilized Aberrant Iguanodon Egg","Fertilized Aberrant Moschops Egg","Fertilized Aberrant Parasaur Egg","Fertilized Ankylo Egg","Fertilized Dimorph Egg","Fertilized Gallimimus Egg","Fertilized Iguanodon Egg","Fertilized Moschops Egg","Fertilized Moth Egg","Fertilized Parasaur Egg","Fertilized Vulture Egg","Gallimimus Egg","Iguanodon Egg","Moschops Egg","Moth Egg","Parasaur Egg","Vulture Egg","Archaeopteryx Egg","Compy Egg","Dilo Egg","Dodo Egg","Fertilized Aberrant Dodo Egg","Fertilized Aberrant Lystrosaurus Egg","Fertilized Aberrant Turtle Egg","Fertilized Achaeopteryx Egg","Fertilized Compy Egg","Fertilized Dilo Egg","Fertilized Dodo Egg","Fertilized Hesperornis Egg","Fertilized Kairuku Egg","Fertilized Lystrosaurus Egg","Fertilized Microraptor Egg","Fertilized Pegomastax Egg","Fertilized Troodon Egg","Fertilized Turtle Egg","Hesperornis Egg","Kairuku Egg","Lystro Egg","Microraptor Egg","Pegomastax Egg","Troodon Egg","Turtle Egg"],"nonViolent":true,"specialFoodValues":[{"Key":"Golden Hesperornis Egg","Value":{"d":[1125,150]}},{"Key":"Fertilized Giganotosaurus Egg","Value":{"d":[900,120]}},{"Key":"Giganotosaurus Egg","Value":{"d":[900,120]}},{"Key":"Basilisk Egg","Value":{"d":[750,100]}},{"Key":"Bronto Egg","Value":{"d":[750,100]}},{"Key":"Dinosaur Egg","Value":{"d":[750,100]}},{"Key":"Diplo Egg","Value":{"d":[750,100]}},{"Key":"Fertilized Aberrant Diplo Egg","Value":{"d":[750,100]}},{"Key":"Fertilized Bronto Egg","Value":{"d":[750,100]}},{"Key":"Fertilized Diplo Egg","Value":{"d":[750,100]}},{"Key":"Titanboa Egg","Value":{"d":[750,100]}},{"Key":"Dimetrodon Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Aberrant Dimetrodon Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Aberrant Sarco Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Dimetrodon Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Glowtail Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Quetzal Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Rex Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Sarco Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Yutyrannus Egg","Value":{"d":[600,80]}},{"Key":"Glowtail Egg","Value":{"d":[600,80]}},{"Key":"Quetzal Egg","Value":{"d":[600,80]}},{"Key":"Rex Egg","Value":{"d":[600,80]}},{"Key":"Sarco Egg","Value":{"d":[600,80]}},{"Key":"Yutyrannus Egg","Value":{"d":[600,80]}},{"Key":"Allosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Argentavis Egg","Value":{"d":[412.5,55]}},{"Key":"Carno Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Carno Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Megalosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Spino Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Stego Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Allosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Argentavis Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Carno Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Kentro Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Megalosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Spino Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Stego Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Therizino Egg","Value":{"d":[412.5,55]}},{"Key":"Kentro Egg","Value":{"d":[412.5,55]}},{"Key":"Megalosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Spino Egg","Value":{"d":[412.5,55]}},{"Key":"Stego Egg","Value":{"d":[412.5,55]}},{"Key":"Therizino Egg","Value":{"d":[412.5,55]}},{"Key":"Araneo Egg","Value":{"d":[337.5,45]}},{"Key":"Camelsaurus Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Aberrant Trike Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Camelsaurus Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Pachyrhino Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Thorny Dragon Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Trike Egg","Value":{"d":[337.5,45]}},{"Key":"Mantis Egg","Value":{"d":[337.5,45]}},{"Key":"Pachyrhino Egg","Value":{"d":[337.5,45]}},{"Key":"Pulminoscorpius Egg","Value":{"d":[337.5,45]}},{"Key":"Thorny Dragon Egg","Value":{"d":[337.5,45]}},{"Key":"Trike Egg","Value":{"d":[337.5,45]}},{"Key":"Baryonyx Egg","Value":{"d":[262.5,35]}},{"Key":"Featherlight Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Aberrant Baryonyx Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Aberrant Megalania Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Aberrant Raptor Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Baryonyx Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Featherlight Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Ichthyornis Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Kaprosuchus Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Megalania Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Pachycephalosaurus Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Pelagornis Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Pteranodon Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Raptor Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Rock Drake Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Tapejara Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Terror Bird Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Wyvern Egg","Value":{"d":[262.5,35]}},{"Key":"Ichthyornis Egg","Value":{"d":[262.5,35]}},{"Key":"Kaprosuchus Egg","Value":{"d":[262.5,35]}},{"Key":"Megalania Egg","Value":{"d":[262.5,35]}},{"Key":"Pachycephalosaurus Egg","Value":{"d":[262.5,35]}},{"Key":"Pelagornis Egg","Value":{"d":[262.5,35]}},{"Key":"Pteranodon Egg","Value":{"d":[262.5,35]}},{"Key":"Raptor Egg","Value":{"d":[262.5,35]}},{"Key":"Rock Drake Egg","Value":{"d":[262.5,35]}},{"Key":"Tapejara Egg","Value":{"d":[262.5,35]}},{"Key":"Terror Bird Egg","Value":{"d":[262.5,35]}},{"Key":"Wyvern Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Oviraptor Egg","Value":{"d":[225,30]}},{"Key":"Oviraptor Egg","Value":{"d":[225,30]}},{"Key":"Ankylo Egg","Value":{"d":[187.5,25]}},{"Key":"Dimorph Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Ankylo Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Iguanodon Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Moschops Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Parasaur Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Ankylo Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Dimorph Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Gallimimus Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Iguanodon Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Moschops Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Moth Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Parasaur Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Vulture Egg","Value":{"d":[187.5,25]}},{"Key":"Gallimimus Egg","Value":{"d":[187.5,25]}},{"Key":"Iguanodon Egg","Value":{"d":[187.5,25]}},{"Key":"Moschops Egg","Value":{"d":[187.5,25]}},{"Key":"Moth Egg","Value":{"d":[187.5,25]}},{"Key":"Parasaur Egg","Value":{"d":[187.5,25]}},{"Key":"Vulture Egg","Value":{"d":[187.5,25]}},{"Key":"Archaeopteryx Egg","Value":{"d":[150,20]}},{"Key":"Compy Egg","Value":{"d":[150,20]}},{"Key":"Dilo Egg","Value":{"d":[150,20]}},{"Key":"Dodo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Aberrant Dodo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Aberrant Lystrosaurus Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Aberrant Turtle Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Achaeopteryx Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Compy Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Dilo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Dodo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Hesperornis Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Kairuku Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Lystrosaurus Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Microraptor Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Pegomastax Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Troodon Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Turtle Egg","Value":{"d":[150,20]}},{"Key":"Hesperornis Egg","Value":{"d":[150,20]}},{"Key":"Kairuku Egg","Value":{"d":[150,20]}},{"Key":"Lystro Egg","Value":{"d":[150,20]}},{"Key":"Microraptor Egg","Value":{"d":[150,20]}},{"Key":"Pegomastax Egg","Value":{"d":[150,20]}},{"Key":"Troodon Egg","Value":{"d":[150,20]}},{"Key":"Turtle Egg","Value":{"d":[150,20]}}],"tamingIneffectiveness":3,"affinityNeeded0":1950,"affinityIncreasePL":90,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"boneDamageAdjusters":[{"Key":2.5,"Value":"Head"}]},{"name":"Aberrant 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.04],[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.015,1.2,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":"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.01,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.01,-0.1,0],[1000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Anglerfish","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.01,0,0],[900,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.02,0.35,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.01,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.01,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","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,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.01,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.01,0,0],[2000,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,1,0],[200,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.02,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.01,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.0125,0.085,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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],[750,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.01,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.01,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.01,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,750]}},{"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.01,0.3,0],[800,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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,37.5]}},{"Key":"Raw Prime Meat","Value":{"d":[50,30]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,20.25]}},{"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.01,2,0],[75,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0,0],[750,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0,0],[220,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,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.01,1.226,0],[1000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Giant Bee Honey","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}},{"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.01,0.3,0],[450,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,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.02,0.6,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.01,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.01,0,0],[1150,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":null,"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.01,0,0],[175,0.06,0,0.5,0]],"taming":{"eats":["Bio Toxin","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.2,0.5,0.4],[1,0,0.01,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.01,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","Raw Prime Meat","Rare Flower","Cooked Lamb Chop","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":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Rare Flower","Value":{"d":[75,150]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,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":"Griffin","breeding":{"gestationTime":0,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Wing and Main Body","colorIds":[37,39,42,32,33,34,13,35,43,36]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Fur","colorIds":[37,39,32,33,34,8,13,38,43]},{"name":"Feather Highlights","colorIds":[37,39,37,21,38,32,33,8,13,55]}],"statsRaw":[[927,0.15,0.216,-1000,0],[225,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],[1500,0.06,0,0.5,0]],"NoImprintingForSpeed":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","Cooked Prime Meat","Prime Meat Jerky","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Cooked Meat Jerky"],"favoriteKibble":"Allosaurus","nonViolent":false,"specialFoodValues":[{"Key":"Raw Mutton","Value":{"d":[50,137.5]}},{"Key":"Raw Prime Meat","Value":{"d":[50,110]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,67.5]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,50]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,50]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,44]}},{"Key":"Raw Meat","Value":{"d":[50,25]}},{"Key":"Cooked Prime Fish Meat","Value":{"d":[25.686001,20]}},{"Key":"Cooked Meat","Value":{"d":[25,12]}},{"Key":"Cooked Meat Jerky","Value":{"d":[25,12]}}],"tamingIneffectiveness":3.125,"affinityNeeded0":2200,"affinityIncreasePL":100,"torporDepletionPS0":2.133333,"foodConsumptionBase":0.002066,"foodConsumptionMult":150,"violent":true},"immobilizedBy":["Chain Bola","Bear Trap","Large Bear Trap","Plant Species Y"]},{"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.01,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.01,0.3,0],[450,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":[[50,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.01,0.365,0],[120,0.06,0,0.5,0]],"TamedBaseHealthMultiplier":2,"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","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,2,0],[300,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0.2,0],[200,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,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.01,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.01,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.015,1,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.01,0.3,0],[700,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,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.01,0,0],[800,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0,0],[775,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0,0],[1000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Giant Bee Honey","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}},{"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.01,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.01,2,0],[75,0.06,0,0.5,0]],"taming":{"eats":["Rare Flower","Rare Mushroom","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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,31.25]}},{"Key":"Raw Prime Meat","Value":{"d":[50,25]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,24.300001]}},{"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.21,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.65,0.4],[1,0,0.01,0,0],[3000,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0.2,0],[300,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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,250]}},{"Key":"Raw Prime Meat","Value":{"d":[50,200]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,80]}},{"Key":"Vegetables","Value":{"d":[20,20]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":6000,"affinityIncreasePL":150,"foodConsumptionBase":0.001736,"foodConsumptionMult":176.03154,"wakeAffinityMult":2.5,"wakeFoodDeplMult":1.2,"violent":false},"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.01,0,0],[200,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":3000,"affinityIncreasePL":90,"foodConsumptionBase":0.002893,"foodConsumptionMult":192.034409,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false}},{"name":"Otter","breeding":{"gestationTime":28571.427734,"incubationTime":0,"maturationTime":75757.570313,"matingCooldownMin":64800,"matingCooldownMax":142800},"colors":[{"name":"Body Main","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Body Stripes and Highlights","colorIds":[22,33,34,8,13,35,14,37,38,39]},{"name":"Underbelly","colorIds":[21,32,33,8,37,38,39]}],"statsRaw":[[40,0.2,0.27,0.5,0],[180,0.1,0.1,0,0],[600,0.1,0.1,0,0],[400,0.1,0.1,0,0],[30,0.02,0.04,0,0],[1,0.04,0.1,0.5,0.4],[1,0,0.01,0.7,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Raw Prime Fish Meat","Cooked Prime Fish Meat","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":8.333333,"affinityNeeded0":1200,"affinityIncreasePL":25,"foodConsumptionBase":0.002314,"foodConsumptionMult":160.056335,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Bola","Bear Trap","Plant Species Y"]},{"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.01,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 Aberrant Spino Egg","Fertilized Spino Egg","Spino Egg","Bronto Egg","Fertilized Bronto Egg","Carno Egg","Fertilized Aberrant 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 Aberrant Spino Egg","Value":{"d":[137.5,80]}},{"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 Aberrant 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.01,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":[[165,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.01,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.01,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.01,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],[450,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.01,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":[[120,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.01,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.01,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.16,0],[800,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.01,0,0],[1600,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,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","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,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.01,0,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.015,0.2,0],[180,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0,0],[1550,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0.32,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0.6,0],[400,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Spino","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.01,0,0],[850,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.02,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":0.4,"Value":"Tail"},{"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","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,0.2,0],[300,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":[{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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":"Therizinosaur","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.01,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.189,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.01,0.3,0],[700,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Cooked Lamb Chop","Cooked Prime Meat","Prime Meat Jerky","Raw Mutton","Cooked Meat","Cooked Meat Jerky","Raw Prime Meat"],"favoriteKibble":"Titanoboa","nonViolent":false,"specialFoodValues":[{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,47.25]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,35]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,35]}},{"Key":"Raw Mutton","Value":{"d":[50,25]}},{"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":"Titanoboa","colors":[{"name":"Body","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14,36]},{"name":"Frill Middle Line 1","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Frill Middle Line 2","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Frill Middle Line 3","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Body Accent and Inner Frill","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Outer Frill","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]}],"statsRaw":[[170,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.01,0.2,0],[175,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Golden Hesperornis Egg","Fertilized Giganotosaurus Egg","Giganotosaurus Egg","Basilisk Egg","Bronto Egg","Dinosaur Egg","Diplo Egg","Fertilized Aberrant Diplo Egg","Fertilized Bronto Egg","Fertilized Diplo Egg","Titanboa Egg","Dimetrodon Egg","Fertilized Aberrant Dimetrodon Egg","Fertilized Aberrant Sarco Egg","Fertilized Dimetrodon Egg","Fertilized Glowtail Egg","Fertilized Quetzal Egg","Fertilized Rex Egg","Fertilized Sarco Egg","Fertilized Yutyrannus Egg","Glowtail Egg","Quetzal Egg","Rex Egg","Sarco Egg","Yutyrannus Egg","Allosaurus Egg","Argentavis Egg","Carno Egg","Fertilized Aberrant Carno Egg","Fertilized Aberrant Megalosaurus Egg","Fertilized Aberrant Spino Egg","Fertilized Aberrant Stego Egg","Fertilized Allosaurus Egg","Fertilized Argentavis Egg","Fertilized Carno Egg","Fertilized Kentro Egg","Fertilized Megalosaurus Egg","Fertilized Spino Egg","Fertilized Stego Egg","Fertilized Therizino Egg","Kentro Egg","Megalosaurus Egg","Spino Egg","Stego Egg","Therizino Egg","Araneo Egg","Camelsaurus Egg","Fertilized Aberrant Trike Egg","Fertilized Camelsaurus Egg","Fertilized Pachyrhino Egg","Fertilized Thorny Dragon Egg","Fertilized Trike Egg","Mantis Egg","Pachyrhino Egg","Pulminoscorpius Egg","Thorny Dragon Egg","Trike Egg","Baryonyx Egg","Featherlight Egg","Fertilized Aberrant Baryonyx Egg","Fertilized Aberrant Megalania Egg","Fertilized Aberrant Raptor Egg","Fertilized Baryonyx Egg","Fertilized Featherlight Egg","Fertilized Ichthyornis Egg","Fertilized Kaprosuchus Egg","Fertilized Megalania Egg","Fertilized Pachycephalosaurus Egg","Fertilized Pelagornis Egg","Fertilized Pteranodon Egg","Fertilized Raptor Egg","Fertilized Rock Drake Egg","Fertilized Tapejara Egg","Fertilized Terror Bird Egg","Fertilized Wyvern Egg","Ichthyornis Egg","Kaprosuchus Egg","Megalania Egg","Pachycephalosaurus Egg","Pelagornis Egg","Pteranodon Egg","Raptor Egg","Rock Drake Egg","Tapejara Egg","Terror Bird Egg","Wyvern Egg","Fertilized Oviraptor Egg","Oviraptor Egg","Ankylo Egg","Dimorph Egg","Fertilized Aberrant Ankylo Egg","Fertilized Aberrant Iguanodon Egg","Fertilized Aberrant Moschops Egg","Fertilized Aberrant Parasaur Egg","Fertilized Ankylo Egg","Fertilized Dimorph Egg","Fertilized Gallimimus Egg","Fertilized Iguanodon Egg","Fertilized Moschops Egg","Fertilized Moth Egg","Fertilized Parasaur Egg","Fertilized Vulture Egg","Gallimimus Egg","Iguanodon Egg","Moschops Egg","Moth Egg","Parasaur Egg","Vulture Egg","Archaeopteryx Egg","Compy Egg","Dilo Egg","Dodo Egg","Fertilized Aberrant Dodo Egg","Fertilized Aberrant Lystrosaurus Egg","Fertilized Aberrant Turtle Egg","Fertilized Achaeopteryx Egg","Fertilized Compy Egg","Fertilized Dilo Egg","Fertilized Dodo Egg","Fertilized Hesperornis Egg","Fertilized Kairuku Egg","Fertilized Lystrosaurus Egg","Fertilized Microraptor Egg","Fertilized Pegomastax Egg","Fertilized Troodon Egg","Fertilized Turtle Egg","Hesperornis Egg","Kairuku Egg","Lystro Egg","Microraptor Egg","Pegomastax Egg","Troodon Egg","Turtle Egg"],"nonViolent":true,"specialFoodValues":[{"Key":"Golden Hesperornis Egg","Value":{"d":[1125,150]}},{"Key":"Fertilized Giganotosaurus Egg","Value":{"d":[900,120]}},{"Key":"Giganotosaurus Egg","Value":{"d":[900,120]}},{"Key":"Basilisk Egg","Value":{"d":[750,100]}},{"Key":"Bronto Egg","Value":{"d":[750,100]}},{"Key":"Dinosaur Egg","Value":{"d":[750,100]}},{"Key":"Diplo Egg","Value":{"d":[750,100]}},{"Key":"Fertilized Aberrant Diplo Egg","Value":{"d":[750,100]}},{"Key":"Fertilized Bronto Egg","Value":{"d":[750,100]}},{"Key":"Fertilized Diplo Egg","Value":{"d":[750,100]}},{"Key":"Titanboa Egg","Value":{"d":[750,100]}},{"Key":"Dimetrodon Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Aberrant Dimetrodon Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Aberrant Sarco Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Dimetrodon Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Glowtail Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Quetzal Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Rex Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Sarco Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Yutyrannus Egg","Value":{"d":[600,80]}},{"Key":"Glowtail Egg","Value":{"d":[600,80]}},{"Key":"Quetzal Egg","Value":{"d":[600,80]}},{"Key":"Rex Egg","Value":{"d":[600,80]}},{"Key":"Sarco Egg","Value":{"d":[600,80]}},{"Key":"Yutyrannus Egg","Value":{"d":[600,80]}},{"Key":"Allosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Argentavis Egg","Value":{"d":[412.5,55]}},{"Key":"Carno Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Carno Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Megalosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Spino Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Stego Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Allosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Argentavis Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Carno Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Kentro Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Megalosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Spino Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Stego Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Therizino Egg","Value":{"d":[412.5,55]}},{"Key":"Kentro Egg","Value":{"d":[412.5,55]}},{"Key":"Megalosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Spino Egg","Value":{"d":[412.5,55]}},{"Key":"Stego Egg","Value":{"d":[412.5,55]}},{"Key":"Therizino Egg","Value":{"d":[412.5,55]}},{"Key":"Araneo Egg","Value":{"d":[337.5,45]}},{"Key":"Camelsaurus Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Aberrant Trike Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Camelsaurus Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Pachyrhino Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Thorny Dragon Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Trike Egg","Value":{"d":[337.5,45]}},{"Key":"Mantis Egg","Value":{"d":[337.5,45]}},{"Key":"Pachyrhino Egg","Value":{"d":[337.5,45]}},{"Key":"Pulminoscorpius Egg","Value":{"d":[337.5,45]}},{"Key":"Thorny Dragon Egg","Value":{"d":[337.5,45]}},{"Key":"Trike Egg","Value":{"d":[337.5,45]}},{"Key":"Baryonyx Egg","Value":{"d":[262.5,35]}},{"Key":"Featherlight Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Aberrant Baryonyx Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Aberrant Megalania Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Aberrant Raptor Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Baryonyx Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Featherlight Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Ichthyornis Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Kaprosuchus Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Megalania Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Pachycephalosaurus Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Pelagornis Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Pteranodon Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Raptor Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Rock Drake Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Tapejara Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Terror Bird Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Wyvern Egg","Value":{"d":[262.5,35]}},{"Key":"Ichthyornis Egg","Value":{"d":[262.5,35]}},{"Key":"Kaprosuchus Egg","Value":{"d":[262.5,35]}},{"Key":"Megalania Egg","Value":{"d":[262.5,35]}},{"Key":"Pachycephalosaurus Egg","Value":{"d":[262.5,35]}},{"Key":"Pelagornis Egg","Value":{"d":[262.5,35]}},{"Key":"Pteranodon Egg","Value":{"d":[262.5,35]}},{"Key":"Raptor Egg","Value":{"d":[262.5,35]}},{"Key":"Rock Drake Egg","Value":{"d":[262.5,35]}},{"Key":"Tapejara Egg","Value":{"d":[262.5,35]}},{"Key":"Terror Bird Egg","Value":{"d":[262.5,35]}},{"Key":"Wyvern Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Oviraptor Egg","Value":{"d":[225,30]}},{"Key":"Oviraptor Egg","Value":{"d":[225,30]}},{"Key":"Ankylo Egg","Value":{"d":[187.5,25]}},{"Key":"Dimorph Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Ankylo Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Iguanodon Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Moschops Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Parasaur Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Ankylo Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Dimorph Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Gallimimus Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Iguanodon Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Moschops Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Moth Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Parasaur Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Vulture Egg","Value":{"d":[187.5,25]}},{"Key":"Gallimimus Egg","Value":{"d":[187.5,25]}},{"Key":"Iguanodon Egg","Value":{"d":[187.5,25]}},{"Key":"Moschops Egg","Value":{"d":[187.5,25]}},{"Key":"Moth Egg","Value":{"d":[187.5,25]}},{"Key":"Parasaur Egg","Value":{"d":[187.5,25]}},{"Key":"Vulture Egg","Value":{"d":[187.5,25]}},{"Key":"Archaeopteryx Egg","Value":{"d":[150,20]}},{"Key":"Compy Egg","Value":{"d":[150,20]}},{"Key":"Dilo Egg","Value":{"d":[150,20]}},{"Key":"Dodo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Aberrant Dodo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Aberrant Lystrosaurus Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Aberrant Turtle Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Achaeopteryx Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Compy Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Dilo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Dodo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Hesperornis Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Kairuku Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Lystrosaurus Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Microraptor Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Pegomastax Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Troodon Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Turtle Egg","Value":{"d":[150,20]}},{"Key":"Hesperornis Egg","Value":{"d":[150,20]}},{"Key":"Kairuku Egg","Value":{"d":[150,20]}},{"Key":"Lystro Egg","Value":{"d":[150,20]}},{"Key":"Microraptor Egg","Value":{"d":[150,20]}},{"Key":"Pegomastax Egg","Value":{"d":[150,20]}},{"Key":"Troodon Egg","Value":{"d":[150,20]}},{"Key":"Turtle Egg","Value":{"d":[150,20]}}],"tamingIneffectiveness":3,"affinityNeeded0":1950,"affinityIncreasePL":90,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"boneDamageAdjusters":[{"Key":2.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.015,1.2,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],[200,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.01,0.2,0],[180,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,1,0],[1800,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Black Pearl","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop"],"nonViolent":true,"specialFoodValues":[{"Key":"Black Pearl","Value":{"d":[30,50,50]}},{"Key":"Raw Mutton","Value":{"d":[50,18.75]}},{"Key":"Raw Prime Meat","Value":{"d":[50,15]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,10.125,30]}}],"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.01,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.01,0,0],[1550,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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]}},{"Key":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"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.01,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.01,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":null,"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.01,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.01,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":"Phoenix","colors":[{"name":"Body Main","colorIds":[20,22,42,43,44,10,14]},{"name":"Beak and Feet","colorIds":[20,22,21,33,39,43,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Feather Highlights","colorIds":[21,10,11,44,4,7,8]},{"name":"Underbelly and Wing Highlights","colorIds":[29,48,28,53,51,49,5,54,14]}],"statsRaw":[[400,0.2,0.27,0.5,0],[220,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[180,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0,0,0],[200,0.06,0,0.5,0]],"taming":{"eats":["Sulfur"],"nonViolent":true,"specialFoodValues":[{"Key":"Sulfur","Value":{"d":[100,25]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":6600,"affinityIncreasePL":200,"foodConsumptionBase":0.002893,"foodConsumptionMult":192.034409,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false}},{"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.01,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":"Mid-section and Legs","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":"Quills","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Belly","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]},{"name":"Top","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":[[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.01,0.3,0],[450,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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,162.5]}},{"Key":"Raw Prime Meat","Value":{"d":[50,130]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,81]}},{"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.01,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"]},{"name":"Dire Polar Bear","breeding":{"gestationTime":14285.713867,"incubationTime":0,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"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.01,1.226,0],[1000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Giant Bee Honey","Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}},{"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":"Ice Wyvern","breeding":{"gestationTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":80,"eggTempMax":90},"colors":[{"name":"Body Main","colorIds":[25,28,8,51,52,30,36,38,48,50,56]},{"name":"Fins","colorIds":[14,28,8,51,52]},{"name":"Wings","colorIds":[49,50,31,35,28,30,8,51]},{"name":null,"colorIds":[1]},{"name":"Scales Belly","colorIds":[25,28,8,51,52,30,32,36,37,38,48,56]},{"name":"Scales Top and Fins","colorIds":[25,28,8,51,50,30,36,48,56]}],"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":"Basilisk","colors":[{"name":"Body Main","colorIds":[42,22,24,26,45,52,49,33,34,13,35,14,36,48]},{"name":"Horns","colorIds":[43,21,23,25,47,28,30,32,33,8,14,36]},{"name":"Underbelly","colorIds":[39,23,25,37,48,30,32,33,8,14,36]},{"name":null,"colorIds":[]},{"name":"Emissive","colorIds":[19,21,23,25,26,28,30,32,43,44,48,36,53]},{"name":"Highlights","colorIds":[52,51,49,48,26,47,42,32,33,35,14,36]}],"statsRaw":[[2750,0.2,0.27,0.5,0],[650,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2500,0.1,0.1,0,0],[2200,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.01,0.2,0],[175,0.06,0,0.5,0]],"TamedBaseHealthMultiplier":0.5,"doesNotUseOxygen":true,"taming":{"eats":["Golden Hesperornis Egg","Fertilized Giganotosaurus Egg","Giganotosaurus Egg","Basilisk Egg","Bronto Egg","Dinosaur Egg","Diplo Egg","Fertilized Aberrant Diplo Egg","Fertilized Bronto Egg","Fertilized Diplo Egg","Titanboa Egg","Dimetrodon Egg","Fertilized Aberrant Dimetrodon Egg","Fertilized Aberrant Sarco Egg","Fertilized Dimetrodon Egg","Fertilized Glowtail Egg","Fertilized Quetzal Egg","Fertilized Rex Egg","Fertilized Sarco Egg","Fertilized Yutyrannus Egg","Glowtail Egg","Quetzal Egg","Rex Egg","Sarco Egg","Yutyrannus Egg","Allosaurus Egg","Argentavis Egg","Carno Egg","Fertilized Aberrant Carno Egg","Fertilized Aberrant Megalosaurus Egg","Fertilized Aberrant Spino Egg","Fertilized Aberrant Stego Egg","Fertilized Allosaurus Egg","Fertilized Argentavis Egg","Fertilized Carno Egg","Fertilized Kentro Egg","Fertilized Megalosaurus Egg","Fertilized Spino Egg","Fertilized Stego Egg","Fertilized Therizino Egg","Kentro Egg","Megalosaurus Egg","Spino Egg","Stego Egg","Therizino Egg","Cooked Lamb Chop","Araneo Egg","Camelsaurus Egg","Fertilized Aberrant Trike Egg","Fertilized Camelsaurus Egg","Fertilized Pachyrhino Egg","Fertilized Thorny Dragon Egg","Fertilized Trike Egg","Mantis Egg","Pachyrhino Egg","Pulminoscorpius Egg","Thorny Dragon Egg","Trike Egg","Cooked Prime Meat","Prime Meat Jerky","Baryonyx Egg","Featherlight Egg","Fertilized Aberrant Baryonyx Egg","Fertilized Aberrant Megalania Egg","Fertilized Aberrant Raptor Egg","Fertilized Baryonyx Egg","Fertilized Featherlight Egg","Fertilized Ichthyornis Egg","Fertilized Kaprosuchus Egg","Fertilized Megalania Egg","Fertilized Pachycephalosaurus Egg","Fertilized Pelagornis Egg","Fertilized Pteranodon Egg","Fertilized Raptor Egg","Fertilized Rock Drake Egg","Fertilized Tapejara Egg","Fertilized Terror Bird Egg","Fertilized Wyvern Egg","Ichthyornis Egg","Kaprosuchus Egg","Megalania Egg","Pachycephalosaurus Egg","Pelagornis Egg","Pteranodon Egg","Raptor Egg","Rock Drake Egg","Tapejara Egg","Terror Bird Egg","Wyvern Egg","Fertilized Oviraptor Egg","Oviraptor Egg","Raw Mutton","Ankylo Egg","Dimorph Egg","Fertilized Aberrant Ankylo Egg","Fertilized Aberrant Iguanodon Egg","Fertilized Aberrant Moschops Egg","Fertilized Aberrant Parasaur Egg","Fertilized Ankylo Egg","Fertilized Dimorph Egg","Fertilized Gallimimus Egg","Fertilized Iguanodon Egg","Fertilized Moschops Egg","Fertilized Moth Egg","Fertilized Parasaur Egg","Fertilized Vulture Egg","Gallimimus Egg","Iguanodon Egg","Moschops Egg","Moth Egg","Parasaur Egg","Vulture Egg","Cooked Meat","Cooked Meat Jerky","Raw Prime Meat","Archaeopteryx Egg","Compy Egg","Dilo Egg","Dodo Egg","Fertilized Aberrant Dodo Egg","Fertilized Aberrant Lystrosaurus Egg","Fertilized Aberrant Turtle Egg","Fertilized Achaeopteryx Egg","Fertilized Compy Egg","Fertilized Dilo Egg","Fertilized Dodo Egg","Fertilized Hesperornis Egg","Fertilized Kairuku Egg","Fertilized Lystrosaurus Egg","Fertilized Microraptor Egg","Fertilized Pegomastax Egg","Fertilized Troodon Egg","Fertilized Turtle Egg","Hesperornis Egg","Kairuku Egg","Lystro Egg","Microraptor Egg","Pegomastax Egg","Troodon Egg","Turtle Egg"],"nonViolent":true,"specialFoodValues":[{"Key":"Golden Hesperornis Egg","Value":{"d":[1125,150]}},{"Key":"Fertilized Giganotosaurus Egg","Value":{"d":[900,120]}},{"Key":"Giganotosaurus Egg","Value":{"d":[900,120]}},{"Key":"Basilisk Egg","Value":{"d":[750,100]}},{"Key":"Bronto Egg","Value":{"d":[750,100]}},{"Key":"Dinosaur Egg","Value":{"d":[750,100]}},{"Key":"Diplo Egg","Value":{"d":[750,100]}},{"Key":"Fertilized Aberrant Diplo Egg","Value":{"d":[750,100]}},{"Key":"Fertilized Bronto Egg","Value":{"d":[750,100]}},{"Key":"Fertilized Diplo Egg","Value":{"d":[750,100]}},{"Key":"Titanboa Egg","Value":{"d":[750,100]}},{"Key":"Dimetrodon Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Aberrant Dimetrodon Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Aberrant Sarco Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Dimetrodon Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Glowtail Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Quetzal Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Rex Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Sarco Egg","Value":{"d":[600,80]}},{"Key":"Fertilized Yutyrannus Egg","Value":{"d":[600,80]}},{"Key":"Glowtail Egg","Value":{"d":[600,80]}},{"Key":"Quetzal Egg","Value":{"d":[600,80]}},{"Key":"Rex Egg","Value":{"d":[600,80]}},{"Key":"Sarco Egg","Value":{"d":[600,80]}},{"Key":"Yutyrannus Egg","Value":{"d":[600,80]}},{"Key":"Allosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Argentavis Egg","Value":{"d":[412.5,55]}},{"Key":"Carno Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Carno Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Megalosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Spino Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Aberrant Stego Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Allosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Argentavis Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Carno Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Kentro Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Megalosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Spino Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Stego Egg","Value":{"d":[412.5,55]}},{"Key":"Fertilized Therizino Egg","Value":{"d":[412.5,55]}},{"Key":"Kentro Egg","Value":{"d":[412.5,55]}},{"Key":"Megalosaurus Egg","Value":{"d":[412.5,55]}},{"Key":"Spino Egg","Value":{"d":[412.5,55]}},{"Key":"Stego Egg","Value":{"d":[412.5,55]}},{"Key":"Therizino Egg","Value":{"d":[412.5,55]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,47.25]}},{"Key":"Araneo Egg","Value":{"d":[337.5,45]}},{"Key":"Camelsaurus Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Aberrant Trike Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Camelsaurus Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Pachyrhino Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Thorny Dragon Egg","Value":{"d":[337.5,45]}},{"Key":"Fertilized Trike Egg","Value":{"d":[337.5,45]}},{"Key":"Mantis Egg","Value":{"d":[337.5,45]}},{"Key":"Pachyrhino Egg","Value":{"d":[337.5,45]}},{"Key":"Pulminoscorpius Egg","Value":{"d":[337.5,45]}},{"Key":"Thorny Dragon Egg","Value":{"d":[337.5,45]}},{"Key":"Trike Egg","Value":{"d":[337.5,45]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,35]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,35]}},{"Key":"Baryonyx Egg","Value":{"d":[262.5,35]}},{"Key":"Featherlight Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Aberrant Baryonyx Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Aberrant Megalania Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Aberrant Raptor Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Baryonyx Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Featherlight Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Ichthyornis Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Kaprosuchus Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Megalania Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Pachycephalosaurus Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Pelagornis Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Pteranodon Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Raptor Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Rock Drake Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Tapejara Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Terror Bird Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Wyvern Egg","Value":{"d":[262.5,35]}},{"Key":"Ichthyornis Egg","Value":{"d":[262.5,35]}},{"Key":"Kaprosuchus Egg","Value":{"d":[262.5,35]}},{"Key":"Megalania Egg","Value":{"d":[262.5,35]}},{"Key":"Pachycephalosaurus Egg","Value":{"d":[262.5,35]}},{"Key":"Pelagornis Egg","Value":{"d":[262.5,35]}},{"Key":"Pteranodon Egg","Value":{"d":[262.5,35]}},{"Key":"Raptor Egg","Value":{"d":[262.5,35]}},{"Key":"Rock Drake Egg","Value":{"d":[262.5,35]}},{"Key":"Tapejara Egg","Value":{"d":[262.5,35]}},{"Key":"Terror Bird Egg","Value":{"d":[262.5,35]}},{"Key":"Wyvern Egg","Value":{"d":[262.5,35]}},{"Key":"Fertilized Oviraptor Egg","Value":{"d":[225,30]}},{"Key":"Oviraptor Egg","Value":{"d":[225,30]}},{"Key":"Raw Mutton","Value":{"d":[50,25]}},{"Key":"Ankylo Egg","Value":{"d":[187.5,25]}},{"Key":"Dimorph Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Ankylo Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Iguanodon Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Moschops Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Aberrant Parasaur Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Ankylo Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Dimorph Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Gallimimus Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Iguanodon Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Moschops Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Moth Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Parasaur Egg","Value":{"d":[187.5,25]}},{"Key":"Fertilized Vulture Egg","Value":{"d":[187.5,25]}},{"Key":"Gallimimus Egg","Value":{"d":[187.5,25]}},{"Key":"Iguanodon Egg","Value":{"d":[187.5,25]}},{"Key":"Moschops Egg","Value":{"d":[187.5,25]}},{"Key":"Moth Egg","Value":{"d":[187.5,25]}},{"Key":"Parasaur Egg","Value":{"d":[187.5,25]}},{"Key":"Vulture Egg","Value":{"d":[187.5,25]}},{"Key":"Cooked Meat","Value":{"d":[25,20]}},{"Key":"Cooked Meat Jerky","Value":{"d":[25,20]}},{"Key":"Raw Prime Meat","Value":{"d":[50,20]}},{"Key":"Archaeopteryx Egg","Value":{"d":[150,20]}},{"Key":"Compy Egg","Value":{"d":[150,20]}},{"Key":"Dilo Egg","Value":{"d":[150,20]}},{"Key":"Dodo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Aberrant Dodo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Aberrant Lystrosaurus Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Aberrant Turtle Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Achaeopteryx Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Compy Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Dilo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Dodo Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Hesperornis Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Kairuku Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Lystrosaurus Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Microraptor Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Pegomastax Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Troodon Egg","Value":{"d":[150,20]}},{"Key":"Fertilized Turtle Egg","Value":{"d":[150,20]}},{"Key":"Hesperornis Egg","Value":{"d":[150,20]}},{"Key":"Kairuku Egg","Value":{"d":[150,20]}},{"Key":"Lystro Egg","Value":{"d":[150,20]}},{"Key":"Microraptor Egg","Value":{"d":[150,20]}},{"Key":"Pegomastax Egg","Value":{"d":[150,20]}},{"Key":"Troodon Egg","Value":{"d":[150,20]}},{"Key":"Turtle Egg","Value":{"d":[150,20]}}],"tamingIneffectiveness":3,"affinityNeeded0":1600,"affinityIncreasePL":20,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"boneDamageAdjusters":[{"Key":2.5,"Value":"Head"}]},{"name":"Bulbdog","breeding":{"gestationTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"main body","colorIds":[21,22,32,33,34,8,13,35,24,26,42,45,46,37,48,39,47,52,56]},{"name":null,"colorIds":[]},{"name":"spots","colorIds":[21,11,32,44,33,8,28,25,28,30,50,30,26,43,42]},{"name":"lantern","colorIds":[44,54,53,25,26,28,50,11,5,6,12]},{"name":"belly","colorIds":[21,23,32,33,25,8,28,30,37,47,39,43,14]},{"name":"back stripes","colorIds":[24,22,42,33,34,45,13,35,14,48,52,49,52,56]}],"statsRaw":[[145,0.2,0.27,0.5,0],[200,0.12,0.12,0.05,0],[165,0.11,0.11,0.025,0],[450,0.1,0.1,0,0.15],[120,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.01,1.3,0],[60,0.06,0,0.5,0]],"taming":{"eats":["Plant Species Z Seed","Plant Species Z Seed (SpeedHack)","Aquatic Mushroom","Cooked Lamb Chop","Cooked Prime Meat","Prime Meat Jerky","Raw Mutton","Sweet Vegetable Cake","Cooked Meat","Cooked Meat Jerky","Raw Prime Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Plant Species Z Seed","Value":{"d":[75,400]}},{"Key":"Plant Species Z Seed (SpeedHack)","Value":{"d":[75,400]}},{"Key":"Aquatic Mushroom","Value":{"d":[50,75]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,47.25]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,35]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,35]}},{"Key":"Raw Mutton","Value":{"d":[50,25]}},{"Key":"Sweet Vegetable Cake","Value":{"d":[20,20]}},{"Key":"Cooked Meat","Value":{"d":[25,20]}},{"Key":"Cooked Meat Jerky","Value":{"d":[25,20]}},{"Key":"Raw Prime Meat","Value":{"d":[50,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":"Featherlight","breeding":{"gestationTime":0,"incubationTime":5999.520508,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":29,"eggTempMax":32},"colors":[{"name":"main body","colorIds":[19,20,12,22,26,29,31,44,49,51,54,14,53]},{"name":"legs","colorIds":[22,21,23,26,28,30,32,33,8,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"belly","colorIds":[19,21,37,25,39,28,30,32,42,43,8,48]},{"name":"emissive","colorIds":[7,19,22,44,54,53,25,50,5,11]}],"statsRaw":[[115,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[180,0.11,0.11,0.2,0],[450,0.1,0.1,0,0.15],[70,0.02,0.04,0,0],[1,0.065,0.12,1.1,0.5],[1,0,0.01,1.3,0],[60,0.06,0,0.5,0]],"taming":{"eats":["Plant Species Z Seed","Plant Species Z Seed (SpeedHack)","Auric Mushroom"],"nonViolent":true,"specialFoodValues":[{"Key":"Plant Species Z Seed","Value":{"d":[75,400]}},{"Key":"Plant Species Z Seed (SpeedHack)","Value":{"d":[75,400]}},{"Key":"Auric Mushroom","Value":{"d":[50,75]}}],"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"}]},{"name":"Glowtail","breeding":{"gestationTime":0,"incubationTime":8999.280273,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":30,"eggTempMax":34},"colors":[{"name":"main body","colorIds":[23,24,26,42,33,43,45,47,48,49,46,51,14]},{"name":null,"colorIds":[23,24,26,27,33,34,13,35,14]},{"name":"wings","colorIds":[24,26,42,50,46,43,44,49,48,51,53]},{"name":"lantern","colorIds":[48,54,51,25,28,50,11,5,51,42,43]},{"name":"belly","colorIds":[23,21,32,25,28,30,8,47,39,37,14]},{"name":"back stripes","colorIds":[22,24,26,42,44,48,49,52,33,34,13,35,14]}],"statsRaw":[[115,0.2,0.27,0.5,0],[100,0.1,0.125,0,0],[200,0.12,0.115,0.12,0],[450,0.1,0.1,0,0.15],[70,0.02,0.04,0,0],[1,0.055,0.11,1.11,0.42],[1,0,0.01,1.3,0],[60,0.06,0,0.5,0]],"taming":{"eats":["Plant Species Z Seed","Plant Species Z Seed (SpeedHack)","Ascerbic Mushroom"],"nonViolent":true,"specialFoodValues":[{"Key":"Plant Species Z Seed","Value":{"d":[75,400]}},{"Key":"Plant Species Z Seed (SpeedHack)","Value":{"d":[75,400]}},{"Key":"Ascerbic Mushroom","Value":{"d":[18,75]}}],"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":"Karkinos","colors":[{"name":"Body Main","colorIds":[22,34,24,31,13,35,33,34,42,52,56,39,37,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Highlights","colorIds":[48,43,28,30,31,44,49,51,53,54]},{"name":"Underbody","colorIds":[24,21,32,37,33,39,43,42,47,48,14]}],"statsRaw":[[1200,0.2,0.27,0.5,0],[600,0.1,0.1,0,0],[150,0.1,0.1,0,0],[5000,0.1,0.1,0,0],[800,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.01,0,0],[800,0.05,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Spoiled Meat","Raw Meat"],"favoriteKibble":"Carbonemys","nonViolent":false,"specialFoodValues":[{"Key":"Raw Meat","Value":{"d":[15,15]}}],"tamingIneffectiveness":0.56,"affinityNeeded0":7200,"affinityIncreasePL":210,"torporDepletionPS0":0.5,"foodConsumptionBase":0.003156,"foodConsumptionMult":181,"violent":true},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"]},{"name":"Ravager","breeding":{"gestationTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[32,33,34,8,56,13,18,37,39,21]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Underbelly","colorIds":[32,33,8,13,18]},{"name":"Top Highlights","colorIds":[33,34,13,35,22,52,35]}],"statsRaw":[[400,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.15],[500,0.02,0.04,0,0],[1,0.04,0.08,0.3,0.3],[1,0,0.01,0.35,0],[500,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":[{"Key":"Raw Mutton","Value":{"d":[187.5,562.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[107.024994,540]}}],"tamingIneffectiveness":3.125,"affinityNeeded0":1850,"affinityIncreasePL":85,"torporDepletionPS0":0.3,"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":"Reaper King","breeding":{"gestationTime":0,"incubationTime":0,"maturationTime":277777.75,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"body Main","colorIds":[22,37,42,34,35,43,33,24,35,48,1,2,3,4,5,6,49,53]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Underbelly ","colorIds":[23,43,32,30,33,37,38,47]},{"name":"Back color","colorIds":[35,14,35,56,34,42,33,22]}],"statsRaw":[[45000,0.0052,0.135,-38500,0],[480,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[415,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.01,0,0],[925,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Cooked Lamb Chop","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":"Raw Mutton","Value":{"d":[50,187.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,101.25]}}],"tamingIneffectiveness":0.06,"affinityNeeded0":6800,"affinityIncreasePL":160,"foodConsumptionBase":0.002314,"foodConsumptionMult":180.063385,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Reaper Queen","breeding":{"gestationTime":0,"incubationTime":0,"maturationTime":1666.666626,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"body Main","colorIds":[22,42,34,35,33,52,35]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Underbelly ","colorIds":[23,32,33,37,38]},{"name":"Back color","colorIds":[35,14,35,56]}],"statsRaw":[[45000,0.0052,0.135,-38500,0],[480,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[415,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.01,0,0],[925,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.06,"affinityNeeded0":6800,"affinityIncreasePL":160,"foodConsumptionBase":0.002314,"foodConsumptionMult":180.063385,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Rock Drake","breeding":{"gestationTime":0,"incubationTime":22498.201172,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":-90,"eggTempMax":-80},"colors":[{"name":"Body Main","colorIds":[21,22,23,24,48,26,45,47,33,32,8,13,46,14]},{"name":"FeathersMain","colorIds":[32,22,39,44,42,48,51,52,43]},{"name":null,"colorIds":[22,29,34,35,36,44,42,48,51,52,56,1,2,3,4,5,6,49,53]},{"name":null,"colorIds":[]},{"name":"Scales","colorIds":[42,45,22,23,24,25,26,46,52,33,34,42,13,35,14,48,50,51,1,2,3,4,5,6,49]},{"name":"Belly","colorIds":[43,21,23,24,25,28,46,32,33,8,48,47,52]}],"statsRaw":[[1950,0.085,0.2025,-1050,0],[450,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":85,"foodConsumptionBase":0.000185,"foodConsumptionMult":199.983994,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"]},{"name":"Roll Rat","breeding":{"gestationTime":17857.142578,"incubationTime":0,"maturationTime":208333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[21,22,32,33,34,8,13,35,14,37,47,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Scales","colorIds":[22,32,33,34,8,13,35,56,47,37,38,39,14]},{"name":"Underbelly","colorIds":[21,32,33,8,47,37,37,38,39]}],"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],[400,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.02,0,0],[800,0.06,0,0.5,0]],"TamedBaseHealthMultiplier":0.9,"taming":{"eats":["Giant Bee Honey","Vegetables","Mejoberry","Berries"],"nonViolent":true,"specialFoodValues":[{"Key":"Giant Bee Honey","Value":{"d":[100,500]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":2000,"affinityIncreasePL":100,"foodConsumptionBase":0.003156,"foodConsumptionMult":176.03154,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap","Plant Species Y"]},{"name":"Shinehorn","breeding":{"gestationTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"main body","colorIds":[32,33,34,8,13,35,14,36,37,38,38,39]},{"name":null,"colorIds":[]},{"name":"stripes","colorIds":[21,11,32,33,53,8,25,44,50,43,42,37,38,39,48,51,28,49,50,30]},{"name":"lantern","colorIds":[48,54,53,25,26,28,50,11,5,51,42,43]},{"name":"feet","colorIds":[32,33,34,8,13,35,14,37,38,39]},{"name":"back","colorIds":[21,22,32,33,34,8,13,35,51,37,38,39,42,43,48,49,52,14]}],"statsRaw":[[115,0.2,0.27,0.5,0],[180,0.11,0.11,0.1,0],[180,0.11,0.11,0.1,0],[450,0.1,0.1,0,0.15],[100,0.02,0.04,0,0],[1,0.055,0.115,1.1,0.4],[1,0,0.01,1.3,0],[60,0.06,0,0.5,0]],"taming":{"eats":["Plant Species Z Seed","Plant Species Z Seed (SpeedHack)","Aggeravic Mushroom","Sweet Vegetable Cake"],"nonViolent":true,"specialFoodValues":[{"Key":"Plant Species Z Seed","Value":{"d":[75,400]}},{"Key":"Plant Species Z Seed (SpeedHack)","Value":{"d":[75,400]}},{"Key":"Aggeravic Mushroom","Value":{"d":[50,75]}},{"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":"Subterranean Reaper King","breeding":{"gestationTime":0,"incubationTime":0,"maturationTime":4166.666504,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"body Main","colorIds":[22,42,34,35,33,52,35]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Underbelly ","colorIds":[23,32,33,37,38]},{"name":"Back color","colorIds":[35,14,35,56]}],"statsRaw":[[2000,0.2,0.27,0.5,0],[480,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[415,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.01,0,0],[925,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.06,"affinityNeeded0":6800,"affinityIncreasePL":160,"foodConsumptionBase":0.002314,"foodConsumptionMult":180.063385,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]},{"name":"Surface Reaper King","breeding":{"gestationTime":0,"incubationTime":0,"maturationTime":4166.666504,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"body Main","colorIds":[22,42,34,35,33,52,35]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Underbelly ","colorIds":[23,32,33,37,38]},{"name":"Back color","colorIds":[35,14,35,56]}],"statsRaw":[[2500,0.2,0.27,0.5,0],[480,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[415,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.01,0,0],[925,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.06,"affinityNeeded0":6800,"affinityIncreasePL":160,"foodConsumptionBase":0.002314,"foodConsumptionMult":180.063385,"violent":false},"immobilizedBy":["Chain Bola","Large Bear Trap"],"boneDamageAdjusters":[{"Key":3,"Value":"Head, Neck"}]}]} \ No newline at end of file diff --git a/ARKBreedingStats/raising/ParentStats.cs b/ARKBreedingStats/raising/ParentStats.cs index b595c7ba..5a7dd303 100644 --- a/ARKBreedingStats/raising/ParentStats.cs +++ b/ARKBreedingStats/raising/ParentStats.cs @@ -58,8 +58,8 @@ public void setParentValues(Creature mother, Creature father) mother != null && father != null ? (mother.valuesBreeding[s] > father.valuesBreeding[s] ? 1 : 2) : 0 ); } - labelMother.Text = mother.name; - labelFather.Text = (labelMother.Width > 78 ? "\n" : "") + father.name; + labelMother.Text = mother == null ? "unknown" : mother.name; + labelFather.Text = father == null ? "unknown" : (labelMother.Width > 78 ? "\n" : "") + father.name; } } } diff --git a/ARKBreedingStats/settings/Settings.Designer.cs b/ARKBreedingStats/settings/Settings.Designer.cs index 1b5a2654..557301c0 100644 --- a/ARKBreedingStats/settings/Settings.Designer.cs +++ b/ARKBreedingStats/settings/Settings.Designer.cs @@ -119,13 +119,13 @@ private void InitializeComponent() this.nudOverlayInfoDuration = new ARKBreedingStats.uiControls.Nud(); this.chkbSpeechRecognition = new System.Windows.Forms.CheckBox(); this.groupBox8 = new System.Windows.Forms.GroupBox(); + this.label22 = new System.Windows.Forms.Label(); + this.tbPlayAlarmsSeconds = new System.Windows.Forms.TextBox(); + this.customSCCustom = new ARKBreedingStats.settings.customSoundChooser(); this.customSCWakeup = new ARKBreedingStats.settings.customSoundChooser(); this.customSCBirth = new ARKBreedingStats.settings.customSoundChooser(); this.customSCStarving = new ARKBreedingStats.settings.customSoundChooser(); this.label20 = new System.Windows.Forms.Label(); - this.customSCCustom = new ARKBreedingStats.settings.customSoundChooser(); - this.tbPlayAlarmsSeconds = new System.Windows.Forms.TextBox(); - this.label22 = new System.Windows.Forms.Label(); this.groupBoxMultiplier.SuspendLayout(); this.groupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudWaitBeforeScreenCapture)).BeginInit(); @@ -455,9 +455,9 @@ private void InitializeComponent() this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(6, 197); this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(273, 13); + this.label4.Size = new System.Drawing.Size(289, 13); this.label4.TabIndex = 10; - this.label4.Text = "Capture from (ShooterGame is default for the PC-version)"; + this.label4.Text = "Capture from (ShooterGame is default for the Steam-version)"; // // cbOCRApp // @@ -1293,12 +1293,36 @@ private void InitializeComponent() this.groupBox8.TabStop = false; this.groupBox8.Text = "Timer Sounds"; // + // label22 + // + this.label22.Location = new System.Drawing.Point(6, 171); + this.label22.Name = "label22"; + this.label22.Size = new System.Drawing.Size(255, 66); + this.label22.TabIndex = 9; + this.label22.Text = "List of seconds the alarms play before they reach 0.\r\nE.g. \"60,0\" to play the ala" + + "rm at 60 s and at 0 s. Use commas to separate the values."; + // + // tbPlayAlarmsSeconds + // + this.tbPlayAlarmsSeconds.Location = new System.Drawing.Point(267, 168); + this.tbPlayAlarmsSeconds.Name = "tbPlayAlarmsSeconds"; + this.tbPlayAlarmsSeconds.Size = new System.Drawing.Size(140, 20); + this.tbPlayAlarmsSeconds.TabIndex = 8; + // + // customSCCustom + // + this.customSCCustom.Location = new System.Drawing.Point(6, 139); + this.customSCCustom.Name = "customSCCustom"; + this.customSCCustom.Size = new System.Drawing.Size(401, 23); + this.customSCCustom.SoundFile = null; + this.customSCCustom.TabIndex = 7; + // // customSCWakeup // this.customSCWakeup.Location = new System.Drawing.Point(6, 81); this.customSCWakeup.Name = "customSCWakeup"; this.customSCWakeup.Size = new System.Drawing.Size(401, 23); - this.customSCWakeup.SoundFile = null; + this.customSCWakeup.SoundFile = ""; this.customSCWakeup.TabIndex = 6; // // customSCBirth @@ -1306,7 +1330,7 @@ private void InitializeComponent() this.customSCBirth.Location = new System.Drawing.Point(6, 110); this.customSCBirth.Name = "customSCBirth"; this.customSCBirth.Size = new System.Drawing.Size(401, 23); - this.customSCBirth.SoundFile = null; + this.customSCBirth.SoundFile = ""; this.customSCBirth.TabIndex = 5; // // customSCStarving @@ -1314,7 +1338,7 @@ private void InitializeComponent() this.customSCStarving.Location = new System.Drawing.Point(6, 52); this.customSCStarving.Name = "customSCStarving"; this.customSCStarving.Size = new System.Drawing.Size(401, 23); - this.customSCStarving.SoundFile = ""; + this.customSCStarving.SoundFile = null; this.customSCStarving.TabIndex = 4; // // label20 @@ -1325,30 +1349,6 @@ private void InitializeComponent() this.label20.TabIndex = 3; this.label20.Text = "Only PCM-WAV-files are supported. The sound will play 1 min before the timer runs" + " out."; - // - // customSCCustom - // - this.customSCCustom.Location = new System.Drawing.Point(6, 139); - this.customSCCustom.Name = "customSCCustom"; - this.customSCCustom.Size = new System.Drawing.Size(401, 23); - this.customSCCustom.SoundFile = ""; - this.customSCCustom.TabIndex = 7; - // - // tbPlayAlarmsSeconds - // - this.tbPlayAlarmsSeconds.Location = new System.Drawing.Point(267, 168); - this.tbPlayAlarmsSeconds.Name = "tbPlayAlarmsSeconds"; - this.tbPlayAlarmsSeconds.Size = new System.Drawing.Size(140, 20); - this.tbPlayAlarmsSeconds.TabIndex = 8; - // - // label22 - // - this.label22.Location = new System.Drawing.Point(6, 171); - this.label22.Name = "label22"; - this.label22.Size = new System.Drawing.Size(255, 66); - this.label22.TabIndex = 9; - this.label22.Text = "List of seconds the alarms play before they reach 0.\r\nE.g. \"60,0\" to play the ala" + - "rm at 60 s and at 0 s. Use commas to separate the values."; // // Settings // diff --git a/ARKBreedingStats/ver.txt b/ARKBreedingStats/ver.txt index 0c4ace72..b44e2c47 100644 --- a/ARKBreedingStats/ver.txt +++ b/ARKBreedingStats/ver.txt @@ -1 +1 @@ -276.12,0.24.3 \ No newline at end of file +276.21,0.24.4 \ No newline at end of file