diff --git a/ARKBreedingStats/ARKBreedingStats.csproj b/ARKBreedingStats/ARKBreedingStats.csproj index cf34d91d..c40adde3 100644 --- a/ARKBreedingStats/ARKBreedingStats.csproj +++ b/ARKBreedingStats/ARKBreedingStats.csproj @@ -199,7 +199,7 @@ StatWeighting.cs - + UserControl diff --git a/ARKBreedingStats/App.config b/ARKBreedingStats/App.config index 4fc148ba..275373c4 100644 --- a/ARKBreedingStats/App.config +++ b/ARKBreedingStats/App.config @@ -49,6 +49,9 @@ + + False + diff --git a/ARKBreedingStats/Extraction.cs b/ARKBreedingStats/Extraction.cs index db2b3749..2b98dfd5 100644 --- a/ARKBreedingStats/Extraction.cs +++ b/ARKBreedingStats/Extraction.cs @@ -10,23 +10,30 @@ class Extraction { private static Extraction _extraction; public List[] results = new List[8]; // stores the possible results of all stats as array (wildlevel, domlevel, tamingEff) - public int[] chosenResults = new int[8]; - public bool[] fixedResults = new bool[8]; - public List statsWithEff = new List(); + public int[] chosenResults; + public bool[] fixedResults; + public List statsWithEff; public bool validResults; public bool postTamed; public bool justTamed; public int[] levelDomFromTorporAndTotalRange = new int[] { 0, 0 }, levelWildFromTorporRange = new int[] { 0, 0 }; // 0: min, 1: max - public int[] lowerBoundWilds = new int[8], lowerBoundDoms = new int[8], upperBoundDoms = new int[8]; + public int[] lowerBoundWilds, lowerBoundDoms, upperBoundDoms; public int wildFreeMax = 0, domFreeMin = 0, domFreeMax = 0; // unassigned levels public double imprintingBonus; + public bool[] activeStats; public Extraction() { + fixedResults = new bool[8]; + chosenResults = new int[8]; + statsWithEff = new List(); + lowerBoundWilds = new int[8]; + lowerBoundDoms = new int[8]; + upperBoundDoms = new int[8]; + activeStats = new bool[8]; + for (int s = 0; s < 8; s++) { - chosenResults[s] = 0; - fixedResults[s] = false; results[s] = new List(); } } @@ -245,7 +252,7 @@ public void extractLevels(int speciesI, int level, List statIOs, double // check all possible level-combinations for (int s = 0; s < 8; s++) { - if (Values.V.species[speciesI].stats[s].BaseValue > 0) // if stat is used (oxygen sometimes is not) + if (Values.V.species[speciesI].stats[s].BaseValue > 0 && activeStats[s]) // if stat is used (oxygen sometimes is not) { statIOs[s].postTame = postTamed; double inputValue = statIOs[s].Input; diff --git a/ARKBreedingStats/Form1.cs b/ARKBreedingStats/Form1.cs index fca8d2d6..e856180a 100644 --- a/ARKBreedingStats/Form1.cs +++ b/ARKBreedingStats/Form1.cs @@ -227,6 +227,8 @@ private void Form1_Load(object sender, EventArgs e) cbbStatTestingSpecies.SelectedIndex = selectedSpecies; } + Extraction.E.activeStats = activeStats; + clearAll(); // UI loaded @@ -743,7 +745,7 @@ private void comboBoxCreatures_SelectedIndexChanged(object sender, EventArgs e) sE = comboBoxSpeciesExtractor.SelectedIndex; for (int s = 0; s < 8; s++) { - activeStats[s] = (Values.V.species[sE].stats[s].BaseValue > 0); + activeStats[s] = (Values.V.species[sE].stats[s].BaseValue > 0) && (s != 2 || !Values.V.species[sE].doesNotUseOxygen || Properties.Settings.Default.oxygenForAll); statIOs[s].Enabled = activeStats[s]; } creatureInfoInputExtractor.SpeciesIndex = sE; @@ -1002,8 +1004,7 @@ private void initializeCollection() breedingPlan1.maxSuggestions = creatureCollection.maxBreedingSuggestions; tribesControl1.Tribes = creatureCollection.tribes; tribesControl1.Players = creatureCollection.players; - timerList1.TimerListEntries = creatureCollection.timerListEntries; - timerList1.Creatures = creatureCollection.creatures; + timerList1.CreatureCollection = creatureCollection; } private void applySettingsToValues() @@ -2378,13 +2379,15 @@ private void exportAsTextToClipboard(Creature c, bool breeding = true, bool ARKm if (c != null) { double colorFactor = 100d / creatureCollection.maxChartLevel; - string output = (ARKml ? Utils.getARKml(c.species, 50, 172, 255) : c.species) + " (Lvl " + (breeding ? c.levelHatched : c.level) + (breeding || c.tamingEff == 1 ? "" : ", TE: " + Math.Round(100 * c.tamingEff, 1) + "%") + (breeding || c.imprintingBonus == 0 ? "" : ", Impr: " + Math.Round(100 * c.imprintingBonus) + "%") + (c.gender != Sex.Unknown ? ", " + c.gender.ToString() : "") + "): "; + string output = (ARKml ? Utils.getARKml(c.species, 50, 172, 255) : c.species) + + " (Lvl " + (breeding ? c.levelHatched : c.level) + (breeding || c.tamingEff == 1 ? "" : ", TE: " + Math.Round(100 * c.tamingEff, 1) + "%") + + (breeding || c.imprintingBonus == 0 ? "" : ", Impr: " + Math.Round(100 * c.imprintingBonus, 2) + "%") + (c.gender != Sex.Unknown ? ", " + c.gender.ToString() : "") + "): "; for (int s = 0; s < 8; s++) { if (c.levelsWild[s] >= 0) // ignore unknown oxygen / speed output += Utils.statName(s, true) + ": " + ((breeding ? c.valuesBreeding[s] : c.valuesDom[s]) * (Utils.precision(s) == 3 ? 100 : 1)) + (Utils.precision(s) == 3 ? "%" : "") + " (" + (ARKml ? Utils.getARKmlFromPercent(c.levelsWild[s].ToString(), (int)(c.levelsWild[s] * (s == 7 ? colorFactor / 7 : colorFactor))) : c.levelsWild[s].ToString()) + - (ARKml ? (breeding || s == 7 ? "" : ", " + Utils.getARKmlFromPercent(c.levelsDom[s].ToString(), (int)(c.levelsDom[s] * colorFactor))) : ", " + c.levelsDom[s].ToString()) + "); "; + (ARKml ? (breeding || s == 7 ? "" : ", " + Utils.getARKmlFromPercent(c.levelsDom[s].ToString(), (int)(c.levelsDom[s] * colorFactor))) : (breeding || s == 7 ? "" : ", " + c.levelsDom[s].ToString())) + "); "; } Clipboard.SetText(output.Substring(0, output.Length - 1)); } diff --git a/ARKBreedingStats/Properties/AssemblyInfo.cs b/ARKBreedingStats/Properties/AssemblyInfo.cs index 92f0286a..92dcfd75 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.21.3")] +[assembly: AssemblyFileVersion("0.21.4")] diff --git a/ARKBreedingStats/Properties/Settings.Designer.cs b/ARKBreedingStats/Properties/Settings.Designer.cs index 2dcc192a..2fccf05b 100644 --- a/ARKBreedingStats/Properties/Settings.Designer.cs +++ b/ARKBreedingStats/Properties/Settings.Designer.cs @@ -211,5 +211,17 @@ public string lastSpecies { this["lastSpecies"] = value; } } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool oxygenForAll { + get { + return ((bool)(this["oxygenForAll"])); + } + set { + this["oxygenForAll"] = value; + } + } } } diff --git a/ARKBreedingStats/Properties/Settings.settings b/ARKBreedingStats/Properties/Settings.settings index 3650464b..91b64966 100644 --- a/ARKBreedingStats/Properties/Settings.settings +++ b/ARKBreedingStats/Properties/Settings.settings @@ -50,5 +50,8 @@ + + False + \ No newline at end of file diff --git a/ARKBreedingStats/RadarChart.cs b/ARKBreedingStats/RadarChart.cs index 0571cc16..85707c0a 100644 --- a/ARKBreedingStats/RadarChart.cs +++ b/ARKBreedingStats/RadarChart.cs @@ -41,11 +41,9 @@ public void initializeVariables(int maxLevel) maxPs = new List(); ps = new List(); oldLevels = new int[7]; + int r = 0; for (int s = 0; s < 7; s++) { - int r = oldLevels[s] * maxR / maxLevel; - if (r < 0) r = 0; - if (r > maxR) r = maxR; double angle = angleSeven * s - offset; ps.Add(new Point(xm + (int)(r * Math.Cos(angle)), ym + (int)(r * Math.Sin(angle)))); diff --git a/ARKBreedingStats/Settings.Designer.cs b/ARKBreedingStats/Settings.Designer.cs index bac7015b..105f31b1 100644 --- a/ARKBreedingStats/Settings.Designer.cs +++ b/ARKBreedingStats/Settings.Designer.cs @@ -82,6 +82,8 @@ private void InitializeComponent() this.numericUpDownTamingSpeed = new System.Windows.Forms.NumericUpDown(); this.label15 = new System.Windows.Forms.Label(); this.groupBox6 = new System.Windows.Forms.GroupBox(); + this.groupBox7 = new System.Windows.Forms.GroupBox(); + this.checkBoxOxygenForAll = new System.Windows.Forms.CheckBox(); this.groupBoxMultiplier.SuspendLayout(); this.groupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownMaxChartLevel)).BeginInit(); @@ -100,6 +102,7 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTamingFoodRate)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTamingSpeed)).BeginInit(); this.groupBox6.SuspendLayout(); + this.groupBox7.SuspendLayout(); this.SuspendLayout(); // // groupBoxMultiplier @@ -291,7 +294,7 @@ private void InitializeComponent() // this.buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK; - this.buttonOK.Location = new System.Drawing.Point(494, 498); + this.buttonOK.Location = new System.Drawing.Point(494, 561); this.buttonOK.Name = "buttonOK"; this.buttonOK.Size = new System.Drawing.Size(75, 23); this.buttonOK.TabIndex = 6; @@ -303,7 +306,7 @@ private void InitializeComponent() // this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.buttonCancel.Location = new System.Drawing.Point(413, 498); + this.buttonCancel.Location = new System.Drawing.Point(413, 561); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(75, 23); this.buttonCancel.TabIndex = 7; @@ -406,9 +409,9 @@ private void InitializeComponent() this.groupBox2.Controls.Add(this.label17); this.groupBox2.Controls.Add(this.numericUpDownBabyCuddleIntervalMultiplier); this.groupBox2.Controls.Add(this.label13); - this.groupBox2.Controls.Add(this.numericUpDownImprintingM); this.groupBox2.Controls.Add(this.label9); this.groupBox2.Controls.Add(this.numericUpDownMaturation); + this.groupBox2.Controls.Add(this.numericUpDownImprintingM); this.groupBox2.Controls.Add(this.label8); this.groupBox2.Controls.Add(this.numericUpDownHatching); this.groupBox2.Location = new System.Drawing.Point(325, 279); @@ -421,7 +424,7 @@ private void InitializeComponent() // label17 // this.label17.AutoSize = true; - this.label17.Location = new System.Drawing.Point(5, 99); + this.label17.Location = new System.Drawing.Point(10, 73); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(140, 13); this.label17.TabIndex = 6; @@ -430,7 +433,7 @@ private void InitializeComponent() // numericUpDownBabyCuddleIntervalMultiplier // this.numericUpDownBabyCuddleIntervalMultiplier.DecimalPlaces = 3; - this.numericUpDownBabyCuddleIntervalMultiplier.Location = new System.Drawing.Point(183, 97); + this.numericUpDownBabyCuddleIntervalMultiplier.Location = new System.Drawing.Point(183, 71); this.numericUpDownBabyCuddleIntervalMultiplier.Maximum = new decimal(new int[] { 1000, 0, @@ -448,7 +451,7 @@ private void InitializeComponent() // label13 // this.label13.AutoSize = true; - this.label13.Location = new System.Drawing.Point(6, 73); + this.label13.Location = new System.Drawing.Point(10, 99); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(163, 13); this.label13.TabIndex = 4; @@ -457,7 +460,7 @@ private void InitializeComponent() // numericUpDownImprintingM // this.numericUpDownImprintingM.DecimalPlaces = 3; - this.numericUpDownImprintingM.Location = new System.Drawing.Point(183, 71); + this.numericUpDownImprintingM.Location = new System.Drawing.Point(183, 97); this.numericUpDownImprintingM.Maximum = new decimal(new int[] { 1000, 0, @@ -476,7 +479,7 @@ private void InitializeComponent() // label9 // this.label9.AutoSize = true; - this.label9.Location = new System.Drawing.Point(6, 47); + this.label9.Location = new System.Drawing.Point(10, 47); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(136, 13); this.label9.TabIndex = 2; @@ -504,7 +507,7 @@ private void InitializeComponent() // label8 // this.label8.AutoSize = true; - this.label8.Location = new System.Drawing.Point(6, 21); + this.label8.Location = new System.Drawing.Point(10, 21); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(127, 13); this.label8.TabIndex = 0; @@ -545,7 +548,7 @@ private void InitializeComponent() // label11 // this.label11.AutoSize = true; - this.label11.Location = new System.Drawing.Point(6, 21); + this.label11.Location = new System.Drawing.Point(10, 21); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(80, 13); this.label11.TabIndex = 0; @@ -567,7 +570,7 @@ private void InitializeComponent() // label10 // this.label10.AutoSize = true; - this.label10.Location = new System.Drawing.Point(6, 47); + this.label10.Location = new System.Drawing.Point(10, 47); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(109, 13); this.label10.TabIndex = 2; @@ -603,7 +606,7 @@ private void InitializeComponent() // label16 // this.label16.AutoSize = true; - this.label16.Location = new System.Drawing.Point(6, 47); + this.label16.Location = new System.Drawing.Point(10, 47); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(67, 13); this.label16.TabIndex = 4; @@ -634,7 +637,7 @@ private void InitializeComponent() // label12 // this.label12.AutoSize = true; - this.label12.Location = new System.Drawing.Point(3, 21); + this.label12.Location = new System.Drawing.Point(10, 21); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(154, 13); this.label12.TabIndex = 0; @@ -669,7 +672,7 @@ private void InitializeComponent() // label7 // this.label7.AutoSize = true; - this.label7.Location = new System.Drawing.Point(6, 47); + this.label7.Location = new System.Drawing.Point(10, 47); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(95, 13); this.label7.TabIndex = 2; @@ -678,7 +681,7 @@ private void InitializeComponent() // label14 // this.label14.AutoSize = true; - this.label14.Location = new System.Drawing.Point(6, 21); + this.label14.Location = new System.Drawing.Point(10, 21); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(114, 13); this.label14.TabIndex = 0; @@ -729,7 +732,7 @@ private void InitializeComponent() this.label15.Size = new System.Drawing.Size(304, 54); this.label15.TabIndex = 8; this.label15.Text = "If you have the files Game.ini or GameUserSettings.ini from your server, you can " + - "drag&&drop them on this window to read their values."; + "drag&&drop them on this window to insert their values."; // // groupBox6 // @@ -745,6 +748,26 @@ private void InitializeComponent() this.groupBox6.TabStop = false; this.groupBox6.Text = "Save / Load"; // + // groupBox7 + // + this.groupBox7.Controls.Add(this.checkBoxOxygenForAll); + this.groupBox7.Location = new System.Drawing.Point(325, 490); + this.groupBox7.Name = "groupBox7"; + this.groupBox7.Size = new System.Drawing.Size(244, 49); + this.groupBox7.TabIndex = 10; + this.groupBox7.TabStop = false; + this.groupBox7.Text = "Other"; + // + // checkBoxOxygenForAll + // + this.checkBoxOxygenForAll.AutoSize = true; + this.checkBoxOxygenForAll.Location = new System.Drawing.Point(13, 19); + this.checkBoxOxygenForAll.Name = "checkBoxOxygenForAll"; + this.checkBoxOxygenForAll.Size = new System.Drawing.Size(167, 17); + this.checkBoxOxygenForAll.TabIndex = 0; + this.checkBoxOxygenForAll.Text = "Enable Oxygen for all Species"; + this.checkBoxOxygenForAll.UseVisualStyleBackColor = true; + // // Settings // this.AcceptButton = this.buttonOK; @@ -752,7 +775,8 @@ private void InitializeComponent() this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.buttonCancel; - this.ClientSize = new System.Drawing.Size(581, 533); + this.ClientSize = new System.Drawing.Size(581, 596); + this.Controls.Add(this.groupBox7); this.Controls.Add(this.groupBox6); this.Controls.Add(this.label15); this.Controls.Add(this.groupBox5); @@ -794,6 +818,8 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTamingSpeed)).EndInit(); this.groupBox6.ResumeLayout(false); this.groupBox6.PerformLayout(); + this.groupBox7.ResumeLayout(false); + this.groupBox7.PerformLayout(); this.ResumeLayout(false); } @@ -854,5 +880,7 @@ private void InitializeComponent() private System.Windows.Forms.Label label18; private System.Windows.Forms.NumericUpDown numericUpDownMaxChartLevel; private System.Windows.Forms.GroupBox groupBox6; + private System.Windows.Forms.GroupBox groupBox7; + private System.Windows.Forms.CheckBox checkBoxOxygenForAll; } } \ No newline at end of file diff --git a/ARKBreedingStats/Settings.cs b/ARKBreedingStats/Settings.cs index f277efc4..f4d09124 100644 --- a/ARKBreedingStats/Settings.cs +++ b/ARKBreedingStats/Settings.cs @@ -79,6 +79,7 @@ private void loadSettings(CreatureCollection cc) chkCollectionSync.Checked = Properties.Settings.Default.syncCollection; if (Properties.Settings.Default.celsius) radioButtonCelsius.Checked = true; else radioButtonFahrenheit.Checked = true; + checkBoxOxygenForAll.Checked = Properties.Settings.Default.oxygenForAll; } private void saveSettings() @@ -103,6 +104,7 @@ private void saveSettings() Properties.Settings.Default.OCR = chkExperimentalOCR.Checked; Properties.Settings.Default.syncCollection = chkCollectionSync.Checked; Properties.Settings.Default.celsius = radioButtonCelsius.Checked; + Properties.Settings.Default.oxygenForAll = checkBoxOxygenForAll.Checked; } private void buttonOK_Click(object sender, EventArgs e) diff --git a/ARKBreedingStats/Taming.cs b/ARKBreedingStats/Taming.cs index 03642a43..f2077266 100644 --- a/ARKBreedingStats/Taming.cs +++ b/ARKBreedingStats/Taming.cs @@ -56,6 +56,7 @@ public static void tamingTimes(int speciesI, int level, List usedFood, L { foodAffinity = 0; foodValue = 0; + // check if (creature handles this food in a special way (e.g. scorpions not liking raw meat as much) if (specialFood) { @@ -68,6 +69,8 @@ public static void tamingTimes(int speciesI, int level, List usedFood, L foodValue = Values.V.foodData[food].foodValue; } + foodAffinity *= specialFood ? taming.specialFoodValues[food].quantity : 1; + if (nonViolent) { // consider wake taming multiplicators (non - violent taming) @@ -171,7 +174,7 @@ public static int foodAmountNeeded(int speciesI, int level, string food, bool no if (foodAffinity > 0) { // amount of food needed for the affinity - return (int)Math.Ceiling(affinityNeeded / foodAffinity); + return (int)Math.Ceiling(affinityNeeded / (foodAffinity * (specialFood ? taming.specialFoodValues[food].quantity : 1))); } } } diff --git a/ARKBreedingStats/TamingControl.cs b/ARKBreedingStats/TamingControl.cs index f3b57d00..3506b413 100644 --- a/ARKBreedingStats/TamingControl.cs +++ b/ARKBreedingStats/TamingControl.cs @@ -57,17 +57,20 @@ private void comboBoxSpecies_SelectedIndexChanged(object sender, EventArgs e) int sI = comboBoxSpecies.SelectedIndex; if (sI >= 0 && Values.V.species[sI].taming != null) { + TamingData td = Values.V.species[sI].taming; this.SuspendLayout(); foreach (TamingFoodControl f in foodControls) Controls.Remove(f); foodControls.Clear(); TamingFoodControl tf; int i = 0; - foreach (string f in Values.V.species[sI].taming.eats) + foreach (string f in td.eats) { tf = new TamingFoodControl(f); if (f == "Kibble") - tf.foodNameDisplay = "Kibble (" + Values.V.species[sI].taming.favoriteKibble + " Egg)"; + tf.foodNameDisplay = "Kibble (" + td.favoriteKibble + " Egg)"; + if (td.specialFoodValues != null && td.specialFoodValues.ContainsKey(f) && td.specialFoodValues[f].quantity > 1) + tf.foodNameDisplay = td.specialFoodValues[f].quantity.ToString() + "× " + tf.foodNameDisplay; tf.Location = new Point(20, 80 + 45 * i); tf.valueChanged += new TamingFoodControl.ValueChangedEventHandler(updateTamingData); tf.Clicked += new TamingFoodControl.ClickedEventHandler(onlyOneFood); @@ -79,7 +82,7 @@ private void comboBoxSpecies_SelectedIndexChanged(object sender, EventArgs e) if (foodControls.Count > 0) { - foodControls[0].amount = Taming.foodAmountNeeded(sI, (int)nudLevel.Value, foodControls[0].foodName, Values.V.species[sI].taming.nonViolent); + foodControls[0].amount = Taming.foodAmountNeeded(sI, (int)nudLevel.Value, foodControls[0].foodName, td.nonViolent); } } } diff --git a/ARKBreedingStats/TamingFood.cs b/ARKBreedingStats/TamingFood.cs deleted file mode 100644 index f74f56dc..00000000 --- a/ARKBreedingStats/TamingFood.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Runtime.Serialization; - -namespace ARKBreedingStats -{ - [DataContract] - public class TamingFood - { - public double affinity = 0, foodValue = 0; - [DataMember] - public double[] d - { - get { return new double[] { foodValue, affinity }; } - set { if (value.Length == 2) { foodValue = value[0]; affinity = value[1]; } } - } - - public TamingFood(double[] d) - { - this.d = d; - } - } -} \ No newline at end of file diff --git a/ARKBreedingStats/TimerList.Designer.cs b/ARKBreedingStats/TimerList.Designer.cs index 2aafbafe..a29ad60c 100644 --- a/ARKBreedingStats/TimerList.Designer.cs +++ b/ARKBreedingStats/TimerList.Designer.cs @@ -73,6 +73,7 @@ private void InitializeComponent() this.listViewTimer.UseCompatibleStateImageBehavior = false; this.listViewTimer.View = System.Windows.Forms.View.Details; this.listViewTimer.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listViewTimer_ColumnClick); + this.listViewTimer.KeyUp += new System.Windows.Forms.KeyEventHandler(this.listViewTimer_KeyUp); // // columnHeaderName // diff --git a/ARKBreedingStats/TimerList.cs b/ARKBreedingStats/TimerList.cs index 94122897..e0f43e92 100644 --- a/ARKBreedingStats/TimerList.cs +++ b/ARKBreedingStats/TimerList.cs @@ -120,11 +120,13 @@ public bool UpdateTimes get { return updateTimer; } } - public List TimerListEntries + public CreatureCollection CreatureCollection { set { - timerListEntries = value; + timerListEntries = value.timerListEntries; + creatures = value.creatures; + listViewTimer.Items.Clear(); foreach (TimerListEntry tle in timerListEntries) @@ -133,18 +135,7 @@ public List TimerListEntries int i = 0; while (i < listViewTimer.Items.Count && ((TimerListEntry)listViewTimer.Items[i].Tag).time < tle.time) { i++; } listViewTimer.Items.Insert(i, tle.lvi); - } - timer.Enabled = (timerListEntries.Count > 0); - } - } - public List Creatures - { - set - { - creatures = value; - foreach (TimerListEntry tle in timerListEntries) - { if (tle.creatureGuid != Guid.Empty) { foreach (Creature p in creatures) @@ -157,6 +148,7 @@ public List Creatures } } } + timer.Enabled = (timerListEntries.Count > 0); } } @@ -165,6 +157,12 @@ private void removeToolStripMenuItem_Click(object sender, EventArgs e) removeSelectedEntry(); } + private void listViewTimer_KeyUp(object sender, KeyEventArgs e) + { + if (e.KeyCode == Keys.Delete) + removeSelectedEntry(); + } + private void removeSelectedEntry() { if (listViewTimer.SelectedIndices.Count > 0 && MessageBox.Show("Remove the timer \"" + ((TimerListEntry)listViewTimer.SelectedItems[0].Tag).name + "\"?", "Remove Timer?", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) == DialogResult.OK) diff --git a/ARKBreedingStats/species/BreedingData.cs b/ARKBreedingStats/species/BreedingData.cs index 63603db3..e43935a8 100644 --- a/ARKBreedingStats/species/BreedingData.cs +++ b/ARKBreedingStats/species/BreedingData.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Runtime.Serialization; +using System.Runtime.Serialization; namespace ARKBreedingStats { diff --git a/ARKBreedingStats/species/ColorRegion.cs b/ARKBreedingStats/species/ColorRegion.cs index f1afa2e1..e4f17b5e 100644 --- a/ARKBreedingStats/species/ColorRegion.cs +++ b/ARKBreedingStats/species/ColorRegion.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +using System.Collections.Generic; namespace ARKBreedingStats { diff --git a/ARKBreedingStats/species/CreatureStat.cs b/ARKBreedingStats/species/CreatureStat.cs index 661b2be7..04581716 100644 --- a/ARKBreedingStats/species/CreatureStat.cs +++ b/ARKBreedingStats/species/CreatureStat.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Runtime.Serialization; +using System.Runtime.Serialization; namespace ARKBreedingStats { diff --git a/ARKBreedingStats/species/Species.cs b/ARKBreedingStats/species/Species.cs index e48559e7..63f83957 100644 --- a/ARKBreedingStats/species/Species.cs +++ b/ARKBreedingStats/species/Species.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +using System.Collections.Generic; using System.Runtime.Serialization; namespace ARKBreedingStats @@ -21,6 +17,8 @@ public class Species public TamingData taming; [DataMember] public BreedingData breeding; + [DataMember] + public bool doesNotUseOxygen; /// /// creates properties that are not created during deserialization. They are set later with the raw-values with the multipliers applied. diff --git a/ARKBreedingStats/species/TamingData.cs b/ARKBreedingStats/species/TamingData.cs index b04c4f19..342552c2 100644 --- a/ARKBreedingStats/species/TamingData.cs +++ b/ARKBreedingStats/species/TamingData.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +using System.Collections.Generic; using System.Runtime.Serialization; namespace ARKBreedingStats diff --git a/ARKBreedingStats/species/TamingFood.cs b/ARKBreedingStats/species/TamingFood.cs new file mode 100644 index 00000000..8da30c7a --- /dev/null +++ b/ARKBreedingStats/species/TamingFood.cs @@ -0,0 +1,30 @@ +using System.Runtime.Serialization; + +namespace ARKBreedingStats +{ + [DataContract] + public class TamingFood + { + public double affinity, foodValue; + public int quantity; + [DataMember] + public double[] d + { + get + { + return new double[] { foodValue, affinity }; + } + set + { + if (value.Length > 1) + { + foodValue = value[0]; + affinity = value[1]; + } + if (value.Length > 2) + quantity = (int)value[2]; + else quantity = 1; + } + } + } +} \ No newline at end of file diff --git a/ARKBreedingStats/values.json b/ARKBreedingStats/values.json index 74256fbc..8d4c51f7 100644 --- a/ARKBreedingStats/values.json +++ b/ARKBreedingStats/values.json @@ -1 +1 @@ -{"version":2540002,"foodData":[{"Key":"Raw Meat","Value":{"d":[50,50]}},{"Key":"Cooked Meat","Value":{"d":[25,25]}},{"Key":"Cooked Meat Jerky","Value":{"d":[25,25]}},{"Key":"Raw Prime Meat","Value":{"d":[50,150]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,75]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,75]}},{"Key":"Raw Fish Meat","Value":{"d":[25,20]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,60]}},{"Key":"Cooked Fish Meat","Value":{"d":[12.5,10]}},{"Key":"Cooked Prime Fish Meat","Value":{"d":[25.7,30]}},{"Key":"Raw Mutton","Value":{"d":[50,375]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,206.25]}},{"Key":"Spoiled Meat","Value":{"d":[50,100]}},{"Key":"Vegetables","Value":{"d":[40,40]}},{"Key":"Mejoberry","Value":{"d":[30,30]}},{"Key":"Berries","Value":{"d":[19.9999995,20]}},{"Key":"Stimberry","Value":{"d":[-15,1.5]}},{"Key":"Kibble","Value":{"d":[79.95,400]}}],"imprintingMultiplier":1,"statMultipliers":[[0.14,0.44,0.2,1],[1,1,1,1],[1,1,1,1],[1,1,1,1],[1,1,1,1],[0.14,0.44,0.17,1],[1,1,1,1],[1,1,1,1]],"tamingMultiplier":1,"species":[{"name":"Achatina","colors":[{"name":"unknown","colorIds":[22,33,34]},{"name":"unknown","colorIds":[19,21,22,23,24,28,30,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[19,28,33,30,32,21,25,23]},{"name":"unknown","colorIds":[19,21,32,30,25,23]},{"name":"unknown","colorIds":[19,21,33,30,25,23]}],"statsRaw":[[75,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[0,0.1,0.1,0,0],[450,0.1,0.1,0,0],[150,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[50,0.06,0,0.5,0]],"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}},{"name":"Allosaurus","breeding":{"pregnancyTime":0,"incubationTime":5999.520508,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Spine","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Belly","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]}],"statsRaw":[[630,0.2,0.27,0.5,0],[250,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0.15],[380,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[1000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Diplo","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.875,"affinityNeeded0":2400,"affinityIncreasePL":100,"torporDepletionPS0":0.8,"foodConsumptionBase":0.002052,"foodConsumptionMult":180.063385,"violent":true}},{"name":"Angler","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],[0,0.1,0.1,0,0],[1500,0.1,0.1,0,0.15],[350,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[900,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Kairuku","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":1800,"affinityIncreasePL":90,"torporDepletionPS0":2.8,"foodConsumptionBase":0.001852,"foodConsumptionMult":149.988007,"violent":true}},{"name":"Ankylosaurus","breeding":{"pregnancyTime":0,"incubationTime":9472.926758,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":16,"eggTempMax":20},"colors":[{"name":null,"colorIds":[]},{"name":"Spikes","colorIds":[21,23,32,33,8,14]},{"name":"Leg Plates","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Spike Tips","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Head and Back","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Underside","colorIds":[21,23,32,33,8,14]}],"statsRaw":[[700,0.2,0.27,0.5,0],[175,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0.15],[250,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.5,0],[420,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Dilo","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.003156,"foodConsumptionMult":176.03154,"violent":true}},{"name":"Araneo","colors":[{"name":"Thorax and Head","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Lower Abdomen","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Leg","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Scutes","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Upper Abdomen and Markings","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]}],"statsRaw":[[150,0.2,0.135,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[100,0.02,0.08,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.67,0],[80,0.06,0,0.5,0]],"taming":{"eats":["Spoiled Meat","Raw Meat","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Raw Meat","Value":{"d":[15,15]}},{"Key":"Raw Fish Meat","Value":{"d":[7.5,6]}}],"tamingIneffectiveness":4.166667,"affinityNeeded0":4000,"affinityIncreasePL":120,"foodConsumptionBase":0.001736,"foodConsumptionMult":864.055298,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false}},{"name":"Archaeopteryx","breeding":{"pregnancyTime":0,"incubationTime":9472.926758,"maturationTime":55555.554688,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":16,"eggTempMax":20},"colors":[{"name":"Sides, Tail, Wings and Face","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[21,23,32,33,8,14]},{"name":"Skin","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Top and Wing Tips","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Underside and Accents","colorIds":[19,21,23,25,26,28,30,32,33,8,14]}],"statsRaw":[[125,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[30,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Chitin"],"favoriteKibble":"Pelagornis","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[25,400]}},{"Key":"Chitin","Value":{"d":[50,50]}}],"tamingIneffectiveness":1.333333,"affinityNeeded0":500,"affinityIncreasePL":22.5,"torporDepletionPS0":0.8333,"foodConsumptionBase":0.001302,"foodConsumptionMult":1152.07373,"violent":true}},{"name":"Argentavis","breeding":{"pregnancyTime":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.27,0.5,0],[750,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[600,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Stego","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":2000,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true}},{"name":"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],[0,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[100,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[175,0.06,0,0.5,0]],"taming":{"eats":["Broth of Enlightenment","Spoiled Meat","Raw Meat","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Broth of Enlightenment","Value":{"d":[20,1500]}},{"Key":"Raw Meat","Value":{"d":[15,15]}},{"Key":"Raw Fish Meat","Value":{"d":[7.5,6]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":3000,"affinityIncreasePL":75,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false}},{"name":"Baryonyx","breeding":{"pregnancyTime":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":"Top Fins","colorIds":[23,37,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Top Stripes","colorIds":[32,33,39,34,24,13]},{"name":"Underbelly","colorIds":[37,32,33,39,38,23,8]}],"statsRaw":[[440,0.2,0.27,0.5,0],[325,0.1,0.1,0,0],[0,0.1,0.1,0,0],[2250,0.1,0.1,0,0],[325,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[400,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Prime Fish Meat","Cooked Prime Fish Meat","Raw Fish Meat","Cooked 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}},{"name":"Basilosaurus","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],[0,0.1,0.1,0,0],[8000,0.1,0.1,0,0.15],[700,0.02,0.04,0,0],[1,0.05,0.1,0.9,0.4],[1,0,0.025,0,0],[2000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Therizinosaurus","nonViolent":true,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[319.679993,500]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":6600,"affinityIncreasePL":250,"foodConsumptionBase":0.002929,"foodConsumptionMult":420,"wakeAffinityMult":1.6,"wakeFoodDeplMult":5,"violent":false}},{"name":"Beelzebufo","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],[0,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[160,0.02,0.04,0,0],[1,0.05,0.1,0.2,0.25],[1,0,0.025,1,0],[200,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Pulminoscorpius","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":0.4,"affinityNeeded0":1800,"affinityIncreasePL":75,"torporDepletionPS0":0.6666,"foodConsumptionBase":0.001929,"foodConsumptionMult":648.00415,"violent":true}},{"name":"Brontosaurus","breeding":{"pregnancyTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":28,"eggTempMax":31},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spine","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Legs","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[2300,0.2,0.19,0.5,0],[240,0.1,0.1,0,0],[150,0.1,0.1,0,0],[10000,0.1,0.1,0,0],[1600,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[2000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Carbonemys","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[53.279999,400]}}],"tamingIneffectiveness":0.06,"affinityNeeded0":10000,"affinityIncreasePL":500,"torporDepletionPS0":0.3,"foodConsumptionBase":0.007716,"foodConsumptionMult":180.001144,"violent":true}},{"name":"Carbonemys","breeding":{"pregnancyTime":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],[0,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[270,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.7,0],[275,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Pteranodon","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.003156,"foodConsumptionMult":352.06308,"violent":true}},{"name":"Carnotaurus","breeding":{"pregnancyTime":0,"incubationTime":5999.520508,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14,36]},{"name":"Horns","colorIds":[21,23,25,26,28,32,33,8,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Patterning","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[420,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0.15],[300,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Ankylo","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":2000,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true}},{"name":"Castoroides","breeding":{"pregnancyTime":28571.427734,"incubationTime":0,"maturationTime":222222.21875,"matingCooldownMin":64800,"matingCooldownMax":142800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":"Feet","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Stripe","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Tail","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[450,0.2,0.27,0.5,0],[180,0.1,0.1,0,0],[380,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[300,0.02,0.04,0,0],[1,0.04,0.1,0.5,0.4],[1,0,0.025,0.7,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Gallimimus","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.3,"affinityNeeded0":2000,"affinityIncreasePL":100,"torporDepletionPS0":1.5,"foodConsumptionBase":0.002314,"foodConsumptionMult":160.056335,"violent":true}},{"name":"Chalicotherium","breeding":{"pregnancyTime":28571.427734,"incubationTime":0,"maturationTime":296296.28125,"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":"Fur Highlights","colorIds":[20,33,34,13,35]},{"name":"Stripes and Belly","colorIds":[21,38,32,33,8,14]}],"statsRaw":[[600,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[4000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Beer Jar","Stimberry"],"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}},{"name":"Compy","breeding":{"pregnancyTime":0,"incubationTime":2999.760254,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[21,23,25,26,28,32,33,8,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Feathers","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Patterning","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Belly","colorIds":[20,22,24,26,27,33,34,13,35,14]}],"statsRaw":[[50,0.2,0.32,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[25,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,1,0],[25,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Raw Prime Fish Meat"],"nonViolent":false,"specialFoodValues":[{"Key":"Raw Mutton","Value":{"d":[20,1500]}},{"Key":"Raw Prime Meat","Value":{"d":[20,600]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[10,240]}}],"tamingIneffectiveness":8.333333,"affinityNeeded0":500,"affinityIncreasePL":65,"torporDepletionPS0":1.3,"foodConsumptionBase":0.000868,"foodConsumptionMult":1728.110596,"violent":true}},{"name":"Dilophosaur","breeding":{"pregnancyTime":0,"incubationTime":4090.581787,"maturationTime":75757.570313,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":28,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Back and Face","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spike Tips","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Spine and Spike Base","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Frill, Crest and Belly","colorIds":[21,23,25,26,28,32,33,8,14]},{"name":"Legs and Arms","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[130,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[45,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,2,0],[75,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":8.333333,"affinityNeeded0":450,"affinityIncreasePL":22.5,"torporDepletionPS0":0.3,"foodConsumptionBase":0.000868,"foodConsumptionMult":1728.110596,"violent":true}},{"name":"Dimetrodon","breeding":{"pregnancyTime":0,"incubationTime":8999.280273,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":30,"eggTempMax":34},"colors":[{"name":"Body","colorIds":[21,23,25,26,32,33,8,14]},{"name":"Side Fin","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"Sail","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"Sail Spines","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"Legs and Belly","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]}],"statsRaw":[[350,0.2,0.27,0.65,0],[300,0.1,0.1,0,0],[500,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[250,0.02,0.04,0,0],[1,0.02,0.04,0.8,0.5],[1,0,0.025,0,0],[750,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Quetzal","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":1500,"affinityIncreasePL":90,"torporDepletionPS0":25,"foodConsumptionBase":0.001736,"foodConsumptionMult":160.010239,"violent":true}},{"name":"Dimorphodon","breeding":{"pregnancyTime":0,"incubationTime":4864.475586,"maturationTime":90090.085938,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":35,"eggTempMax":38},"colors":[{"name":"Body","colorIds":[20,21,22,23,24,32,33,34,8,13,35,14,36]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Face and Wing Membrane","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Feathers","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[125,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[50,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":4.166666,"affinityNeeded0":900,"affinityIncreasePL":45,"torporDepletionPS0":0.8333,"foodConsumptionBase":0.001302,"foodConsumptionMult":1152.07373,"violent":true}},{"name":"Diplocaulus","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],[0,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[150,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.25],[1,0,0.025,0,0],[220,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Archaeopteryx","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[119.969994,400]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":2000,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":225,"violent":true}},{"name":"Diplodocus","breeding":{"pregnancyTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":29},"colors":[{"name":"Sides, Legs, and Accents","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spines","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Underside","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[1700,0.2,0.27,0.5,0],[550,0.1,0.1,0,0],[300,0.1,0.1,0,0],[10000,0.1,0.1,0,0],[800,0.02,0.04,0,0],[1,0,0,0.5,0.4],[1,0,0.025,0,0],[3000,0.06,0,0.5,0]],"taming":{"eats":["Vegetables","Mejoberry","Berries","Stimberry"],"nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":0.08,"affinityNeeded0":7500,"affinityIncreasePL":375,"torporDepletionPS0":0.75,"foodConsumptionBase":0.007716,"foodConsumptionMult":180.001144,"wakeAffinityMult":3,"wakeFoodDeplMult":2,"violent":true}},{"name":"Direbear","breeding":{"pregnancyTime":14285.713867,"incubationTime":0,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Back and Head","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Belly and Legs","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[400,0.2,0.27,0.5,0],[500,0.1,0.1,0,0],[270,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[650,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1.226,0],[1000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Mejoberry","Cooked Meat","Berries","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Carno","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.25,"affinityNeeded0":4000,"affinityIncreasePL":125,"torporDepletionPS0":0.9,"foodConsumptionBase":0.003156,"foodConsumptionMult":150,"violent":true}},{"name":"Direwolf","breeding":{"pregnancyTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[32,33,34,8,8,13,35,14,18,21]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Tail, Back, and Face","colorIds":[32,33,34,8,8,13,35,14,18,21]},{"name":"Feet","colorIds":[32,33,34,8,8,13,35,14,18,21]}],"statsRaw":[[330,0.2,0.27,0.66,0],[260,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[170,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[450,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Carno","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.5,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"violent":true}},{"name":"Dodo","breeding":{"pregnancyTime":0,"incubationTime":2999.760254,"maturationTime":55555.554688,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":30},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"Face","colorIds":[21,23,32,33,8,14]},{"name":"Beak","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Forehead, Neck, and Feet","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Head","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Wings and Patterning","colorIds":[19,21,23,25,26,28,30,32,33,8,14]}],"statsRaw":[[40,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[50,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,2,0],[30,0.06,0,0.5,0]],"taming":{"eats":["Vegetables","Mejoberry","Berries","Stimberry"],"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.333333,"affinityNeeded0":450,"affinityIncreasePL":22.5,"torporDepletionPS0":0.3,"foodConsumptionBase":0.000868,"foodConsumptionMult":2880.184326,"violent":true}},{"name":"Doedicurus","breeding":{"pregnancyTime":17857.142578,"incubationTime":0,"maturationTime":208333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Shell and Plates","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,29]},{"name":"Spikes and Claws","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,29]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Shell Patterning","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,29]},{"name":"Underside","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,29]}],"statsRaw":[[850,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0.15],[250,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,1.25,0],[800,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Dilo","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.2,"affinityNeeded0":4000,"affinityIncreasePL":150,"torporDepletionPS0":0.75,"foodConsumptionBase":0.003156,"foodConsumptionMult":176.03154,"violent":true}},{"name":"Dragon","statsRaw":[[20000,0.2,0.2,0.3,0],[400,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[2600,0.1,0.1,0,0],[3000,0.02,0.02,0,0],[1,0.05,0.04,0.3,0.3],[1,0,0,0,0],[350,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.5,"affinityNeeded0":8500,"affinityIncreasePL":150,"foodConsumptionBase":0.002066,"foodConsumptionMult":150,"violent":false}},{"name":"Dung Beetle","colors":[{"name":"Shell","colorIds":[20,22,24,26,27,29,31,14]},{"name":"Legs","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Palps and Leg Patterning","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Shell Patterning","colorIds":[20,22,24,26,27,29,31,14]},{"name":"Underside","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]}],"statsRaw":[[200,0.2,0.135,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[5,0.02,0.08,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[200,0.06,0,0.5,0]],"taming":{"eats":["Large Animal Feces","Medium Animal Feces","Spoiled Meat","Small Animal Feces","Human Feces","Raw Meat","Raw Fish 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]}},{"Key":"Raw Fish Meat","Value":{"d":[7.5,6]}}],"tamingIneffectiveness":4.166667,"affinityNeeded0":900,"affinityIncreasePL":50,"foodConsumptionBase":0.001488,"foodConsumptionMult":336.021515,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false}},{"name":"Dunkleosteus","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],[0,0.1,0.1,0,0],[2000,0.1,0.1,0,0.15],[910,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[1150,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Titanoboa","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.800003,400]}}],"tamingIneffectiveness":3.275,"affinityNeeded0":1300,"affinityIncreasePL":60,"torporDepletionPS0":1,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true}},{"name":"Gallimimus","breeding":{"pregnancyTime":0,"incubationTime":5142.445801,"maturationTime":95238.09375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Feathers","colorIds":[20,22,24,26,27,33,34,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14,36]},{"name":"Spine and Feather Tips","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Lower Body","colorIds":[19,21,23,25,26,32,33,8,14]}],"statsRaw":[[150,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1000,0.1,0.1,0,0],[270,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[420,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Dimetrodon","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.4,"affinityNeeded0":2200,"affinityIncreasePL":95,"torporDepletionPS0":4.175,"foodConsumptionBase":0.001929,"foodConsumptionMult":432.002777,"violent":true}},{"name":"Giganotosaurus","breeding":{"pregnancyTime":0,"incubationTime":179985.609375,"maturationTime":1010100.875,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":43,"eggTempMax":44},"colors":[{"name":"Body","colorIds":[20,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Back, Hands, and Feet","colorIds":[20,23,25,26,32,33,8,14]},{"name":"Belly","colorIds":[20,26,27,33,34,13,35,14]}],"statsRaw":[[80000,0.0005,0.002,-63000,0],[400,0.0005,0.01,0,0],[150,0.0025,0.025,0,0],[4000,0.0025,0.025,0,0],[700,0.01,0.01,0,0],[1,0.05,0.05,-0.8,0],[1,0,0.0031,0,0],[10000,0.06,0,0,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Quetzal","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.25,"affinityNeeded0":5000,"affinityIncreasePL":160,"torporDepletionPS0":120.000008,"foodConsumptionBase":0.002314,"foodConsumptionMult":160.056335,"violent":true}},{"name":"Gigantopithecus","breeding":{"pregnancyTime":23809.521484,"incubationTime":0,"maturationTime":277777.75,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Fur Mane","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Fur Accent","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Skins","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[640,0.1,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[220,0.02,0.04,0,0],[1,0.04,0.1,0.5,0.4],[1,0,0.025,0.06,0],[1100,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Titanoboa","nonViolent":true,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.98,300]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":4600,"affinityIncreasePL":75,"foodConsumptionBase":0.004156,"foodConsumptionMult":176.03154,"wakeAffinityMult":1.65,"wakeFoodDeplMult":2,"violent":false}},{"name":"Ichthy","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],[0,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.05,0,0],[300,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Dodo","nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":1500,"affinityIncreasePL":75,"foodConsumptionBase":0.001929,"foodConsumptionMult":420,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2.5,"violent":false}},{"name":"Kairuku","breeding":{"pregnancyTime":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],[0,0.1,0.1,0,0],[900,0.1,0.1,0,0.15],[70,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,2,0],[300,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":4.166667,"affinityNeeded0":900,"affinityIncreasePL":45,"torporDepletionPS0":1,"foodConsumptionBase":0.001389,"foodConsumptionMult":1079.913574,"violent":true}},{"name":"Kaprosuchus","breeding":{"pregnancyTime":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],[0,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[140,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[200,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Tapejara","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[119.969994,400]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":2000,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"violent":true}},{"name":"Lystrosaurus","breeding":{"pregnancyTime":0,"incubationTime":2999.760254,"maturationTime":55555.554688,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Underside","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Spine and Feet","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[90,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[215,0.1,0.1,0,0],[500,0.1,0.1,0,0.15],[90,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,2,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Rare Flower","Vegetables","Mejoberry","Berries","Stimberry"],"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}},{"name":"Mammoth","breeding":{"pregnancyTime":28571.427734,"incubationTime":0,"maturationTime":296296.28125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Fur Mane","colorIds":[20,21,22,23,24,28,29,32,33,34,8,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"Tusks and Toes","colorIds":[23,28,32,33,8,14]},{"name":null,"colorIds":[]},{"name":"Fur Accent","colorIds":[20,21,22,23,24,28,29,32,33,34,8,13,35,14,36]},{"name":"unknown","colorIds":[20,21,22,23,24,28,29,32,33,34,8,13,35,14,36]}],"statsRaw":[[850,0.2,0.27,0.5,0],[330,0.1,0.1,0,0],[150,0.1,0.1,0,0],[5000,0.1,0.1,0,0],[500,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1.226,0],[550,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Raptor","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.12,"affinityNeeded0":5000,"affinityIncreasePL":250,"torporDepletionPS0":0.3,"foodConsumptionBase":0.004133,"foodConsumptionMult":192.027771,"violent":true}},{"name":"Manta","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],[0,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]],"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":"Megaloceros","breeding":{"pregnancyTime":21978.021484,"incubationTime":0,"maturationTime":256410.25,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[]},{"name":"Antlers","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]},{"name":"Patterning","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]}],"statsRaw":[[300,0.2,0.27,0.5,0],[280,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[220,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[175,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Dimorph","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.5,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.2915,"foodConsumptionBase":0.001543,"foodConsumptionMult":432.058746,"violent":true}},{"name":"Megalodon","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],[0,0.1,0.1,0,0],[2000,0.1,0.1,0,0.15],[250,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[800,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Spino","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":2000,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true}},{"name":"Megalosaurus","breeding":{"pregnancyTime":0,"incubationTime":5999.520508,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":32},"colors":[{"name":"unknown","colorIds":[21,22,23,24,25,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[22,24,33,34,13,35,14]},{"name":"unknown","colorIds":[23,25,28,32,33,8,14]}],"statsRaw":[[1025,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0.15],[300,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[775,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Oviraptor","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[135,400]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":3450,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true}},{"name":"Mesopithecus","breeding":{"pregnancyTime":9523.80957,"incubationTime":0,"maturationTime":111111.109375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[]},{"name":"Eye Markings","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,28,28,28,30,30,30]},{"name":null,"colorIds":[]},{"name":"Back, Lower Limbs, and Tail Tip","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Skins","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[115,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[70,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,1.3,0],[60,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Dodo","nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":2200,"affinityIncreasePL":65,"foodConsumptionBase":0.000868,"foodConsumptionMult":2880.184326,"wakeAffinityMult":1.65,"wakeFoodDeplMult":2,"violent":false}},{"name":"Mosasaurus","colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spinal Ridge","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Sides of the Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Underside","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[3600,0.12,0.243,0.3,0],[400,0.1,0.1,0,0],[0,0.1,0.1,0,0],[8000,0.1,0.1,0,0.15],[1300,0.02,0.04,0,0],[1,0.05,0.1,0.9,0.4],[1,0,0.025,0,0],[3000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Quetzal","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,550]}}],"tamingIneffectiveness":0.06,"affinityNeeded0":11000,"affinityIncreasePL":600,"torporDepletionPS0":12.8,"foodConsumptionBase":0.005,"foodConsumptionMult":180.001144,"violent":true}},{"name":"Moschops","breeding":{"pregnancyTime":0,"incubationTime":9472.926758,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":16,"eggTempMax":20},"colors":[{"name":"unknown","colorIds":[22,24,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,33,8,14]}],"statsRaw":[[375,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[300,0.1,0.1,0,0.15],[200,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.2,0],[300,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Raw Prime Fish Meat","Cooked Prime Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Vegetables","Raw Fish Meat","Cooked Fish Meat","Berries","Mejoberry"],"nonViolent":true,"specialFoodValues":[{"Key":"Raw Mutton","Value":{"d":[50,500]}},{"Key":"Raw Prime Meat","Value":{"d":[50,200]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,80]}},{"Key":"Vegetables","Value":{"d":[20,20]}},{"Key":"Berries","Value":{"d":[20,1.5]}},{"Key":"Mejoberry","Value":{"d":[30,1.5]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":6000,"affinityIncreasePL":150,"torporDepletionPS0":3,"foodConsumptionBase":0.001736,"foodConsumptionMult":176.03154,"wakeAffinityMult":2.5,"wakeFoodDeplMult":1.2,"violent":true}},{"name":"Onyc","colors":[{"name":"Main Body","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Claws","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Membrane Shading","colorIds":[21,23,28,32,33,8,14]},{"name":null,"colorIds":[]},{"name":"Abdomen and Legs","colorIds":[21,23,28,32,33,8,14]},{"name":"Wing Membrane","colorIds":[21,23,28,32,33,8,14]}],"statsRaw":[[250,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[50,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[200,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":3000,"affinityIncreasePL":90,"foodConsumptionBase":0.002893,"foodConsumptionMult":192.034409,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false}},{"name":"Oviraptor","breeding":{"pregnancyTime":0,"incubationTime":4090.581787,"maturationTime":75757.570313,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":30},"colors":[{"name":"Body","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Crest and Beak","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Feathers","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":"Patterning","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[140,0.2,0.27,0.5,0],[120,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0.15],[100,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,1,0.15],[125,0.06,0,0.5,0]],"taming":{"eats":["Giganotosaurus Egg","Quetzal Egg","Rex Egg","Spino Egg","Bronto Egg","Carno Egg","Archaeopteryx Egg","Ankylo Egg","Oviraptor Egg","Baryonyx Egg","Pachyrhino Egg","Allosaurus Egg","Dimetrodon Egg","Dinosaur Egg"],"nonViolent":false,"specialFoodValues":[{"Key":"Giganotosaurus Egg","Value":{"d":[300,1200]}},{"Key":"Quetzal Egg","Value":{"d":[200,550]}},{"Key":"Rex Egg","Value":{"d":[200,100]}},{"Key":"Spino Egg","Value":{"d":[137.5,80]}},{"Key":"Bronto Egg","Value":{"d":[250,60]}},{"Key":"Carno Egg","Value":{"d":[137.5,30]}},{"Key":"Archaeopteryx Egg","Value":{"d":[20,9]}},{"Key":"Ankylo Egg","Value":{"d":[25,9]}},{"Key":"Oviraptor Egg","Value":{"d":[30,9]}},{"Key":"Baryonyx Egg","Value":{"d":[35,9]}},{"Key":"Pachyrhino Egg","Value":{"d":[45,9]}},{"Key":"Allosaurus Egg","Value":{"d":[55,9]}},{"Key":"Dimetrodon Egg","Value":{"d":[80,9]}},{"Key":"Dinosaur Egg","Value":{"d":[100,9]}}],"tamingIneffectiveness":16.666668,"affinityNeeded0":960,"affinityIncreasePL":42,"torporDepletionPS0":0.208,"foodConsumptionBase":0.001302,"foodConsumptionMult":768.049133,"violent":true}},{"name":"Ovis","breeding":{"pregnancyTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[100,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[90,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[85,0.06,0,0.5,0]],"taming":{"eats":["Sweet Vegetable Cake"],"nonViolent":true,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,200000]}}],"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"foodConsumptionBase":0.003156,"foodConsumptionMult":1584.283936,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false}},{"name":"Pachy","breeding":{"pregnancyTime":0,"incubationTime":5142.445801,"maturationTime":95238.09375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Spikes and Claws","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Beak and Plates","colorIds":[19,21,23,25,26,28,30]},{"name":"Body Accent","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[175,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[150,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[160,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Dilo","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.5,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.2666,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"violent":true}},{"name":"Pachyrhinosaurus","breeding":{"pregnancyTime":0,"incubationTime":8999.280273,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":"unknown","colorIds":[22,24,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[20,22,24,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[20,22,24,29,31,33,34,13,35,14]},{"name":"unknown","colorIds":[21,23,25,32,33,8,14]}],"statsRaw":[[375,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[365,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[250,0.06,0,0.5,0]],"taming":{"eats":["Bug Repellant","Vegetables","Mejoberry","Berries","Stimberry"],"nonViolent":false,"specialFoodValues":[{"Key":"Bug Repellant","Value":{"d":[25,200]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":4500,"affinityIncreasePL":175,"torporDepletionPS0":3.5,"foodConsumptionBase":0.003156,"foodConsumptionMult":352.06308,"violent":true}},{"name":"Paracer","breeding":{"pregnancyTime":28571.427734,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Underside","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[1140,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[6500,0.1,0.1,0,0],[850,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[1300,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Pachy","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.0923,"affinityNeeded0":6500,"affinityIncreasePL":325,"torporDepletionPS0":0.9025,"foodConsumptionBase":0.0035,"foodConsumptionMult":327.6474,"violent":true}},{"name":"Parasaur","breeding":{"pregnancyTime":0,"incubationTime":5142.445801,"maturationTime":95238.09375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Beak and Frill","colorIds":[20,22,24,26,27,33,34,13,35,14,36]},{"name":"Frill Edge","colorIds":[19,21,23,25,26,32,33,8,14]},{"name":"Crest","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14,36]},{"name":"Patterning","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[19,21,23,25,26,32,33,8,14]}],"statsRaw":[[200,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[280,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.67,0],[150,0.06,0,0.5,0]],"taming":{"eats":["Vegetables","Mejoberry","Berries","Stimberry"],"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.4,"affinityNeeded0":1500,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001929,"foodConsumptionMult":864.005554,"violent":true}},{"name":"Pegomastax","breeding":{"pregnancyTime":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,28]},{"name":null,"colorIds":[]},{"name":"Back Fur","colorIds":[37,39,33,34,13,35,14]},{"name":"Limb Highlights","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[200,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[55,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.5,0],[30,0.06,0,0.5,0]],"taming":{"eats":["Vegetables","Mejoberry","Berries","Stimberry"],"nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":1.333333,"affinityNeeded0":1900,"affinityIncreasePL":35,"foodConsumptionBase":0.000868,"foodConsumptionMult":2880.184326,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false}},{"name":"Pelagornis","breeding":{"pregnancyTime":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":[[210,0.2,0.27,0.5,0],[320,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[135,0.02,0.04,0,0],[1,0.05,0.1,0.65,0.4],[1,0,0.025,0.365,0],[120,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Prime Fish Meat","Cooked Prime Fish Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Compy","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":216.029373,"violent":true}},{"name":"Phiomia","breeding":{"pregnancyTime":35714.285156,"incubationTime":0,"maturationTime":416666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[23,24,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Spots 1","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Spots 2","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[300,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0.15],[200,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.35,0],[240,0.06,0,0.5,0]],"taming":{"eats":["Vegetables","Mejoberry","Berries","Stimberry"],"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.003156,"foodConsumptionMult":1584.283936,"violent":true}},{"name":"Plesiosaur","colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":"Facial Fins","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[2400,0.12,0.162,0.15,0],[200,0.1,0.1,0,0],[0,0.1,0.1,0,0],[5000,0.1,0.1,0,0.15],[800,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[1600,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Rex","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":0.75,"affinityNeeded0":5000,"affinityIncreasePL":250,"torporDepletionPS0":2.133333,"foodConsumptionBase":0.003858,"foodConsumptionMult":180.001144,"violent":true}},{"name":"Procoptodon","breeding":{"pregnancyTime":14285.713867,"incubationTime":0,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Back Stripes","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Inner Ear, Snout, Belly, Appendages","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[400,0.2,0.27,0.75,0],[350,0.1,0.1,0.1,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[450,0.02,0.04,0,0],[1,0.05,0.1,0.2,0.25],[1,0,0.02,0,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Rare Mushroom","Plant Species X Seed"],"nonViolent":false,"specialFoodValues":[{"Key":"Rare Mushroom","Value":{"d":[75,90]}},{"Key":"Plant Species X Seed","Value":{"d":[50,45]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.6666,"foodConsumptionBase":0.001929,"foodConsumptionMult":648.00415,"violent":true}},{"name":"Pteranodon","breeding":{"pregnancyTime":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.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[150,0.02,0.04,0,0],[1,0.05,0.1,0.65,0.4],[1,0,0.02,0.35,0],[120,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Dodo","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":216.029373,"violent":true}},{"name":"Pulmonoscorpius","colors":[{"name":"Plate Edges","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Claw Stripes, Barb Patterning, Body Joints","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Limb Joints","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Body","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Plates","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Legs","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[280,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[200,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1,0],[150,0.06,0,0.5,0]],"taming":{"eats":["Spoiled Meat","Raw Meat","Raw Fish Meat"],"nonViolent":false,"specialFoodValues":[{"Key":"Raw Meat","Value":{"d":[15,15]}},{"Key":"Raw Fish Meat","Value":{"d":[7.5,6]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":1500,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001929,"foodConsumptionMult":432.002777,"violent":true}},{"name":"Purlovia","breeding":{"pregnancyTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Main Body","colorIds":[20,22,39,37,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Belly","colorIds":[20,33,34,13,35]},{"name":"Highlights","colorIds":[21,38,32,33,8,14]}],"statsRaw":[[275,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[4000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Moschops","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[53.279999,400]}}],"tamingIneffectiveness":3.125,"affinityNeeded0":2250,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"violent":true}},{"name":"Quetzal","breeding":{"pregnancyTime":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.27,0.5,0],[750,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[780,0.02,0.04,0,0],[1,0.04,0.1,0.4,0.4],[1,0,0.025,0.365,0],[1850,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Rex","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":0.9375,"affinityNeeded0":6850,"affinityIncreasePL":300,"torporDepletionPS0":3.4,"foodConsumptionBase":0.0035,"foodConsumptionMult":140,"violent":true}},{"name":"Raptor","breeding":{"pregnancyTime":0,"incubationTime":7199.423828,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":20,"eggTempMax":28},"colors":[{"name":"Body Accent","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Feather Tips","colorIds":[19,21,23,25,26,28,30]},{"name":null,"colorIds":[]},{"name":"Body","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Feathers","colorIds":[19,21,23,25,26,28,30]},{"name":"Belly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[200,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[140,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[180,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Parasaur","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"violent":true}},{"name":"Rex","breeding":{"pregnancyTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":32,"eggTempMax":34},"colors":[{"name":"Body","colorIds":[20,22,24,27,33,34,13,35,14,36]},{"name":"Spine","colorIds":[20,22,24,27,33,34,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[20,22,24,27,33,34,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"Belly","colorIds":[20,22,24,27,33,34,13,35,14,36]}],"statsRaw":[[1100,0.2,0.27,0.5,0],[420,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[500,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[1550,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Pulminoscorpius","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.25,"affinityNeeded0":3450,"affinityIncreasePL":150,"torporDepletionPS0":0.725,"foodConsumptionBase":0.002314,"foodConsumptionMult":180.063385,"violent":true}},{"name":"Sabertooth","breeding":{"pregnancyTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[22,24,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Mane and Face","colorIds":[21,23,32,33,8,14]},{"name":"Stripes","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[250,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[200,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Bronto","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"violent":true}},{"name":"Sarco","breeding":{"pregnancyTime":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],[0,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[300,0.02,0.04,0,0],[1,0.05,0.1,0.8,0.5],[1,0,0.025,0.6,0],[400,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Trike","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":2000,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001578,"foodConsumptionMult":211.237854,"violent":true}},{"name":"Spinosaur","breeding":{"pregnancyTime":0,"incubationTime":13845.046875,"maturationTime":256410.25,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":30,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Sail Edge","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Face, Tail, Inner Sail, and Frill","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36]},{"name":"Belly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[700,0.2,0.27,0.5,0],[350,0.1,0.1,0,0],[650,0.1,0.1,0,0],[2600,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[850,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Argentavis","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.5,"affinityNeeded0":3200,"affinityIncreasePL":150,"torporDepletionPS0":2.133333,"foodConsumptionBase":0.002066,"foodConsumptionMult":150,"violent":true}},{"name":"Stegosaurus","breeding":{"pregnancyTime":0,"incubationTime":9999.200195,"maturationTime":185185.171875,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spine","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Plate Base and Spike Base","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Plate Edge and Spike Tips","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Belly","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[650,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[6000,0.1,0.1,0,0],[500,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.964,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Sarco","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.1,"affinityNeeded0":6000,"affinityIncreasePL":300,"torporDepletionPS0":0.3,"foodConsumptionBase":0.005341,"foodConsumptionMult":208.034286,"violent":true}},{"name":"Tapejara","breeding":{"pregnancyTime":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],[450,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1600,0.1,0.1,0,0.15],[330,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.365,0],[450,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Allosaurus","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":2200,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":216.029373,"violent":true}},{"name":"Terror Bird","breeding":{"pregnancyTime":0,"incubationTime":7199.423828,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":20,"eggTempMax":28},"colors":[{"name":"Feathers","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Belly/Wings Accent","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Beak, Skin, Legs","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[270,0.2,0.27,0.5,0],[160,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[120,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[300,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Gallimimus","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":1600,"affinityIncreasePL":85,"torporDepletionPS0":2.25,"foodConsumptionBase":0.001578,"foodConsumptionMult":352.06308,"violent":true}},{"name":"Therizinosaurus","breeding":{"pregnancyTime":0,"incubationTime":5999.520508,"maturationTime":416666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":32},"colors":[{"name":"Feathers Main","colorIds":[20,22,24,33,34,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"Body Highlights","colorIds":[23,24,25,32,8,36]},{"name":null,"colorIds":[]},{"name":"Feather Highlights","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Body Main","colorIds":[21,23,35,32,33,8,14]}],"statsRaw":[[870,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[365,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[925,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Megalosaurus","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[119.969994,400]}}],"tamingIneffectiveness":0.06,"affinityNeeded0":6800,"affinityIncreasePL":160,"torporDepletionPS0":2.833333,"foodConsumptionBase":0.002314,"foodConsumptionMult":180.063385,"violent":true}},{"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","Stimberry"],"favoriteKibble":"Carbonemys","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[53.279999,400]}}],"tamingIneffectiveness":0.06,"affinityNeeded0":10000,"affinityIncreasePL":500,"foodConsumptionBase":0.1,"foodConsumptionMult":13,"violent":true}},{"name":"Triceratops","breeding":{"pregnancyTime":0,"incubationTime":8999.280273,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Face and Feet","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Patterning","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Frill","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Body Accent","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[375,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[365,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1.226,0],[250,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Carno","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.003156,"foodConsumptionMult":352.06308,"violent":true}},{"name":"Troodon","breeding":{"pregnancyTime":0,"incubationTime":4090.581787,"maturationTime":75757.570313,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":28,"eggTempMax":32},"colors":[{"name":"Main Body","colorIds":[20,22,24,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Body Highlights and Feathers","colorIds":[21,23,32,33,8,14]},{"name":"Belly","colorIds":[21,23,13,28,32,33,8,14]}],"statsRaw":[[200,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[100,0.1,0.1,0,0],[140,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[180,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":8.333333,"affinityNeeded0":480,"affinityIncreasePL":45,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false}},{"name":"Tusoteuthis","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],[0,0.1,0.1,0,0],[3200,0.1,0.1,0,0.15],[800,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1,0],[1800,0.06,0,0.5,0]],"taming":{"eats":["Black Pearl","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Black Pearl","Value":{"d":[30,50]}},{"Key":"Raw Mutton","Value":{"d":[50,37.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,20.625]}},{"Key":"Raw Prime Meat","Value":{"d":[50,15]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,7.5]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,6]}},{"Key":"Raw Meat","Value":{"d":[50,5]}},{"Key":"Cooked Prime Fish Meat","Value":{"d":[25.686001,3]}},{"Key":"Cooked Meat","Value":{"d":[25,2.5]}},{"Key":"Raw Fish Meat","Value":{"d":[25,2]}},{"Key":"Cooked Fish Meat","Value":{"d":[12.5,1]}}],"tamingIneffectiveness":0.75,"affinityNeeded0":12500,"affinityIncreasePL":125,"foodConsumptionBase":0.005,"foodConsumptionMult":180.001144,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false}},{"name":"Wooly Rhino","breeding":{"pregnancyTime":14285.713867,"incubationTime":0,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Skins","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":"Back","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Underside","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Horn","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[500,0.2,0.27,0.5,0],[120,0.1,0.1,0,0],[100,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[750,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1.226,0],[600,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Terror Bird","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[53.279999,400]}}],"tamingIneffectiveness":1.25,"affinityNeeded0":3450,"affinityIncreasePL":125,"torporDepletionPS0":0.9,"foodConsumptionBase":0.003156,"foodConsumptionMult":150,"violent":true}},{"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],[0,0.1,0.1,0,0],[450,0,0,0,0.15],[170,0.02,0.04,0,0],[1,0.015,0.1,0.2,0],[1,0,0.025,2,0],[1000,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.333333,"affinityNeeded0":450,"affinityIncreasePL":22.5,"foodConsumptionBase":0,"foodConsumptionMult":0,"violent":false}},{"name":"Fire Wyvern","breeding":{"pregnancyTime":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]},{"name":null,"colorIds":[]},{"name":"Scales Main","colorIds":[13,21,33,39,22]},{"name":"Wings Main","colorIds":[39,38,35,22,13]},{"name":"Fins Highlight","colorIds":[10,20,21,35]},{"name":"Body Highlights","colorIds":[10,21,33]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[400,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0.025,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}},{"name":"Jerboa","breeding":{"pregnancyTime":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]},{"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]},{"name":"Belly and Highlights","colorIds":[13,9,33,39,37]}],"statsRaw":[[55,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[55,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.5,0],[30,0.06,0,0.5,0]],"taming":{"eats":["Plant Species Y Seed","Vegetables","Mejoberry","Berries","Stimberry"],"nonViolent":false,"specialFoodValues":[{"Key":"Plant Species Y Seed","Value":{"d":[65,160]}}],"tamingIneffectiveness":1.333333,"affinityNeeded0":1350,"affinityIncreasePL":22.5,"torporDepletionPS0":0.3,"foodConsumptionBase":0.000868,"foodConsumptionMult":2880.184326,"violent":true}},{"name":"Lightning Wyvern","breeding":{"pregnancyTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":80,"eggTempMax":90},"colors":[{"name":"Body Main","colorIds":[30,28,14,8,35]},{"name":"Fins","colorIds":[31,14,30,8]},{"name":"Wings","colorIds":[31,35,28,30,8]},{"name":"***NOT USED****","colorIds":[1]},{"name":"Scales Top","colorIds":[31,14,30,8]},{"name":"Fins","colorIds":[31,14,30,8]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[400,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0.025,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}},{"name":"Lymantria","colors":[{"name":"Facial Highlights","colorIds":[33,21,28,8,32]},{"name":"Wings Main","colorIds":[10,11,19,25,28,30,13]},{"name":"Legs","colorIds":[33,21,28,8,32]},{"name":"Wing Highlights","colorIds":[29,4,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":[[255,0.2,0.27,0.5,0],[180,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[175,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[550,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Thorny Dragon","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.875,"affinityNeeded0":1800,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true}},{"name":"Mantis","colors":[{"name":"Body","colorIds":[9,10,16,17,15,11,33,27,26]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[9,10,16,17,15,11,33,27,26]},{"name":"Underneath","colorIds":[9,10,16,17,15,11,33,27,26]}],"statsRaw":[[275,0.2,0.135,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[220,0.02,0.08,0,0],[1,0.025,0.1,0.5,0.4],[1,0,0.025,0.67,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Deathworm Horn","Spoiled Meat","Raw Meat","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Deathworm Horn","Value":{"d":[300,450]}},{"Key":"Raw Meat","Value":{"d":[15,15]}},{"Key":"Raw Fish Meat","Value":{"d":[7.5,6]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":1800,"affinityIncreasePL":75,"foodConsumptionBase":0.002314,"foodConsumptionMult":360,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false}},{"name":"Morellatops","breeding":{"pregnancyTime":0,"incubationTime":8999.280273,"maturationTime":111111.109375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[400,0.2,0.27,0.5,0],[220,0.1,0.1,0,0],[150,0.1,0.1,0,0],[6000,0.1,0.1,0,0],[440,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.964,0],[315,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Vulture","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.005341,"foodConsumptionMult":208.034286,"violent":true}},{"name":"Poison Wyvern","breeding":{"pregnancyTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":80,"eggTempMax":90},"colors":[{"name":"Body Main","colorIds":[35,27,26,24,8,40]},{"name":"Wings Main","colorIds":[35,27,26,24,8]},{"name":"Scales Main","colorIds":[32,25,23,8]},{"name":"Wings Highlight","colorIds":[7,11,23,24,25,26,27,30]},{"name":"Scale Highlights","colorIds":[32,25,23,8]},{"name":"Body Highlights","colorIds":[32,25,23,8]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[400,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0.025,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}},{"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],[0,0.1,0.1,0,0],[6000,0.1,0.1,0,0],[660,0.02,0.04,0,0],[1,0.05,0.1,0.125,0.4],[1,0,0.025,0,0],[5000,0.02,0,0.5,0]],"taming":{"eats":["Kibble","Sulfur","Clay","Stone"],"favoriteKibble":"Mantis","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[19.9995,400]}},{"Key":"Sulfur","Value":{"d":[25,25]}},{"Key":"Clay","Value":{"d":[25,15]}},{"Key":"Stone","Value":{"d":[50,7]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":6500,"affinityIncreasePL":325,"torporDepletionPS0":0.325,"foodConsumptionBase":0.002543,"foodConsumptionMult":180.063385,"violent":true}},{"name":"Thorny Dragon","breeding":{"pregnancyTime":0,"incubationTime":8999.280273,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[260,0.2,0.27,0.66,0],[350,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[300,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[450,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Camelsaurus","nonViolent":false,"specialFoodValues":[{"Key":"Raw Mutton","Value":{"d":[50,325]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,165]}},{"Key":"Raw Prime Meat","Value":{"d":[50,130]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,60]}},{"Key":"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":"Raw Fish Meat","Value":{"d":[25,16]}},{"Key":"Cooked Fish Meat","Value":{"d":[12.5,8]}}],"tamingIneffectiveness":1.5,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.5,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"violent":true}},{"name":"Vulture","breeding":{"pregnancyTime":0,"incubationTime":4864.475586,"maturationTime":90090.085938,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":35,"eggTempMax":38},"colors":[{"name":"Body Main","colorIds":[33,34,35,22,20,14,13]},{"name":"Head Highlight","colorIds":[19,20,21,22,28,29,30,31,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Head Main","colorIds":[37,32,33,21,35]},{"name":"Body Highlights","colorIds":[33,34,35,22,20,14,13,32,21]}],"statsRaw":[[125,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[50,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Spoiled Meat","Raw Meat","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Raw Meat","Value":{"d":[15,15]}},{"Key":"Raw Fish Meat","Value":{"d":[7.5,6]}}],"tamingIneffectiveness":4.166666,"affinityNeeded0":655,"affinityIncreasePL":45,"foodConsumptionBase":0.001302,"foodConsumptionMult":1152.07373,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false}},{"name":"Zombie Fire Wyvern","breeding":{"pregnancyTime":0,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[39,38,35,22,13]},{"name":null,"colorIds":[]},{"name":"Scales Main","colorIds":[13,21,33,39,22]},{"name":"Wings Main","colorIds":[39,38,35,22,13]},{"name":"Fins Highlight","colorIds":[10,20,21,35]},{"name":"Body Highlights","colorIds":[10,21,33]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[400,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0.025,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}},{"name":"Zombie Lightning Wyvern","breeding":{"pregnancyTime":0,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[30,28,14,8,35]},{"name":"Fins","colorIds":[31,14,30,8]},{"name":"Wings","colorIds":[31,35,28,30,8]},{"name":"wings","colorIds":[30,28,8]},{"name":"Scales Top","colorIds":[31,14,30,8]},{"name":"Fins","colorIds":[31,14,30,8]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[400,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0.025,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}},{"name":"Zombie Poison Wyvern","breeding":{"pregnancyTime":0,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[35,27,26,24,8,40]},{"name":"Wings Main","colorIds":[35,27,26,24,8]},{"name":"Scales Main","colorIds":[32,25,23,8]},{"name":"Wings Highlight","colorIds":[7,11,23,24,25,26,27,30]},{"name":"Scale Highlights","colorIds":[32,25,23,8]},{"name":"Body Highlights","colorIds":[32,25,23,8]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[400,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0.025,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}}]} \ No newline at end of file +{"version":2540003,"foodData":[{"Key":"Raw Meat","Value":{"d":[50,50]}},{"Key":"Cooked Meat","Value":{"d":[25,25]}},{"Key":"Cooked Meat Jerky","Value":{"d":[25,25]}},{"Key":"Raw Prime Meat","Value":{"d":[50,150]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,75]}},{"Key":"Prime Meat Jerky","Value":{"d":[49.945,75]}},{"Key":"Raw Fish Meat","Value":{"d":[25,20]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,60]}},{"Key":"Cooked Fish Meat","Value":{"d":[12.5,10]}},{"Key":"Cooked Prime Fish Meat","Value":{"d":[25.7,30]}},{"Key":"Raw Mutton","Value":{"d":[50,375]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,206.25]}},{"Key":"Spoiled Meat","Value":{"d":[50,100]}},{"Key":"Vegetables","Value":{"d":[40,40]}},{"Key":"Mejoberry","Value":{"d":[30,30]}},{"Key":"Berries","Value":{"d":[19.9999995,20]}},{"Key":"Stimberry","Value":{"d":[-15,1.5]}},{"Key":"Kibble","Value":{"d":[79.95,400]}}],"imprintingMultiplier":1,"statMultipliers":[[0.14,0.44,0.2,1],[1,1,1,1],[1,1,1,1],[1,1,1,1],[1,1,1,1],[0.14,0.44,0.17,1],[1,1,1,1],[1,1,1,1]],"tamingMultiplier":1,"species":[{"name":"Achatina","colors":[{"name":"unknown","colorIds":[22,33,34]},{"name":"unknown","colorIds":[19,21,22,23,24,28,30,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[19,28,33,30,32,21,25,23]},{"name":"unknown","colorIds":[19,21,32,30,25,23]},{"name":"unknown","colorIds":[19,21,33,30,25,23]}],"statsRaw":[[75,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0],[150,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[50,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Sweet Vegetable Cake"],"nonViolent":false,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[180,450]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":4000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001736,"foodConsumptionMult":864.055298,"violent":true}},{"name":"Allosaurus","breeding":{"pregnancyTime":0,"incubationTime":5999.520508,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Spine","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Belly","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]}],"statsRaw":[[630,0.2,0.27,0.5,0],[250,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0.15],[380,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[1000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Diplo","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.875,"affinityNeeded0":2400,"affinityIncreasePL":100,"torporDepletionPS0":0.8,"foodConsumptionBase":0.002052,"foodConsumptionMult":180.063385,"violent":true}},{"name":"Angler","colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36,1,4,3,2]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36]},{"name":"Tail fin and Accents","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36]}],"statsRaw":[[450,0.2,0.27,0.3,0],[240,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0.15],[350,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[900,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Kairuku","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":1800,"affinityIncreasePL":90,"torporDepletionPS0":2.8,"foodConsumptionBase":0.001852,"foodConsumptionMult":149.988007,"violent":true}},{"name":"Ankylosaurus","breeding":{"pregnancyTime":0,"incubationTime":9472.926758,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":16,"eggTempMax":20},"colors":[{"name":null,"colorIds":[]},{"name":"Spikes","colorIds":[21,23,32,33,8,14]},{"name":"Leg Plates","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Spike Tips","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Head and Back","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Underside","colorIds":[21,23,32,33,8,14]}],"statsRaw":[[700,0.2,0.27,0.5,0],[175,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0.15],[250,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.5,0],[420,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Dilo","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.003156,"foodConsumptionMult":176.03154,"violent":true}},{"name":"Araneo","colors":[{"name":"Thorax and Head","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Lower Abdomen","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Leg","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Scutes","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Upper Abdomen and Markings","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]}],"statsRaw":[[150,0.2,0.135,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[100,0.02,0.08,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.67,0],[80,0.06,0,0.5,0]],"taming":{"eats":["Spoiled Meat","Raw Meat","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Raw Meat","Value":{"d":[15,15]}},{"Key":"Raw Fish Meat","Value":{"d":[7.5,6]}}],"tamingIneffectiveness":4.166667,"affinityNeeded0":4000,"affinityIncreasePL":120,"foodConsumptionBase":0.001736,"foodConsumptionMult":864.055298,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false}},{"name":"Archaeopteryx","breeding":{"pregnancyTime":0,"incubationTime":9472.926758,"maturationTime":55555.554688,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":16,"eggTempMax":20},"colors":[{"name":"Sides, Tail, Wings and Face","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[21,23,32,33,8,14]},{"name":"Skin","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Top and Wing Tips","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Underside and Accents","colorIds":[19,21,23,25,26,28,30,32,33,8,14]}],"statsRaw":[[125,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[30,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Chitin"],"favoriteKibble":"Pelagornis","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[25,400]}},{"Key":"Chitin","Value":{"d":[50,50]}}],"tamingIneffectiveness":1.333333,"affinityNeeded0":500,"affinityIncreasePL":22.5,"torporDepletionPS0":0.8333,"foodConsumptionBase":0.001302,"foodConsumptionMult":1152.07373,"violent":true}},{"name":"Argentavis","breeding":{"pregnancyTime":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.27,0.5,0],[750,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[600,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Stego","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":2000,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true}},{"name":"Arthropluera","colors":[{"name":"Segments","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Head","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Sternites","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Legs, Antennae, and Forcipules","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"unknown","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Underside of Head/Segments","colorIds":[19,21,23,25,26,28,30,32,33,8,14]}],"statsRaw":[[500,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[100,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[175,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Broth of Enlightenment","Spoiled Meat","Raw Meat","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Broth of Enlightenment","Value":{"d":[20,1500]}},{"Key":"Raw Meat","Value":{"d":[15,15]}},{"Key":"Raw Fish Meat","Value":{"d":[7.5,6]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":3000,"affinityIncreasePL":75,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false}},{"name":"Baryonyx","breeding":{"pregnancyTime":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":"Top Fins","colorIds":[23,37,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Top Stripes","colorIds":[32,33,39,34,24,13]},{"name":"Underbelly","colorIds":[37,32,33,39,38,23,8]}],"statsRaw":[[440,0.2,0.27,0.5,0],[325,0.1,0.1,0,0],[225,0.1,0.1,0,0],[2250,0.1,0.1,0,0],[325,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[400,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Prime Fish Meat","Cooked Prime Fish Meat","Raw Fish Meat","Cooked 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}},{"name":"Basilosaurus","colors":[{"name":"Body Main","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Belly","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[2400,0.2,0.243,0.3,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[8000,0.1,0.1,0,0.15],[700,0.02,0.04,0,0],[1,0.05,0.1,0.9,0.4],[1,0,0.025,0,0],[2000,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Therizinosaurus","nonViolent":true,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[319.679993,500]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":6600,"affinityIncreasePL":250,"foodConsumptionBase":0.002929,"foodConsumptionMult":420,"wakeAffinityMult":1.6,"wakeFoodDeplMult":5,"violent":false}},{"name":"Beelzebufo","colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Spikes","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Stripes","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Belly and Accents","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[220,0.2,0.27,0.5,0],[190,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[160,0.02,0.04,0,0],[1,0.05,0.1,0.2,0.25],[1,0,0.025,1,0],[200,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Pulminoscorpius","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":0.4,"affinityNeeded0":1800,"affinityIncreasePL":75,"torporDepletionPS0":0.6666,"foodConsumptionBase":0.001929,"foodConsumptionMult":648.00415,"violent":true}},{"name":"Brontosaurus","breeding":{"pregnancyTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":28,"eggTempMax":31},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spine","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Legs","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[2300,0.2,0.19,0.5,0],[240,0.1,0.1,0,0],[150,0.1,0.1,0,0],[10000,0.1,0.1,0,0],[1600,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[2000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Carbonemys","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[53.279999,400]}}],"tamingIneffectiveness":0.06,"affinityNeeded0":10000,"affinityIncreasePL":500,"torporDepletionPS0":0.3,"foodConsumptionBase":0.007716,"foodConsumptionMult":180.001144,"violent":true}},{"name":"Carbonemys","breeding":{"pregnancyTime":0,"incubationTime":4499.640137,"maturationTime":83333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":30,"eggTempMax":34},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Shell Base","colorIds":[19,21,23,28,30,32,33,8,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Shell, Plates, and Claws","colorIds":[20,22,24,29,31,33,34,13,35,14]},{"name":"Body Accent","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[700,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[270,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.7,0],[275,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Pteranodon","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.003156,"foodConsumptionMult":352.06308,"violent":true}},{"name":"Carnotaurus","breeding":{"pregnancyTime":0,"incubationTime":5999.520508,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14,36]},{"name":"Horns","colorIds":[21,23,25,26,28,32,33,8,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Patterning","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[420,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0.15],[300,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Ankylo","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":2000,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true}},{"name":"Castoroides","breeding":{"pregnancyTime":28571.427734,"incubationTime":0,"maturationTime":222222.21875,"matingCooldownMin":64800,"matingCooldownMax":142800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":"Feet","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Stripe","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Tail","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[450,0.2,0.27,0.5,0],[180,0.1,0.1,0,0],[380,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[300,0.02,0.04,0,0],[1,0.04,0.1,0.5,0.4],[1,0,0.025,0.7,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Gallimimus","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.3,"affinityNeeded0":2000,"affinityIncreasePL":100,"torporDepletionPS0":1.5,"foodConsumptionBase":0.002314,"foodConsumptionMult":160.056335,"violent":true}},{"name":"Chalicotherium","breeding":{"pregnancyTime":28571.427734,"incubationTime":0,"maturationTime":296296.28125,"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":"Fur Highlights","colorIds":[20,33,34,13,35]},{"name":"Stripes and Belly","colorIds":[21,38,32,33,8,14]}],"statsRaw":[[600,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[4000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Beer Jar","Stimberry"],"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}},{"name":"Compy","breeding":{"pregnancyTime":0,"incubationTime":2999.760254,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[21,23,25,26,28,32,33,8,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Feathers","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Patterning","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Belly","colorIds":[20,22,24,26,27,33,34,13,35,14]}],"statsRaw":[[50,0.2,0.32,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[25,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,1,0],[25,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Raw Prime Meat","Raw Prime Fish Meat"],"nonViolent":false,"specialFoodValues":[{"Key":"Raw Mutton","Value":{"d":[20,1500]}},{"Key":"Raw Prime Meat","Value":{"d":[20,600]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[10,240]}}],"tamingIneffectiveness":8.333333,"affinityNeeded0":500,"affinityIncreasePL":65,"torporDepletionPS0":1.3,"foodConsumptionBase":0.000868,"foodConsumptionMult":1728.110596,"violent":true}},{"name":"Dilophosaur","breeding":{"pregnancyTime":0,"incubationTime":4090.581787,"maturationTime":75757.570313,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":28,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Back and Face","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spike Tips","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Spine and Spike Base","colorIds":[19,21,23,25,26,28,30,32,33,8,14,36]},{"name":"Frill, Crest and Belly","colorIds":[21,23,25,26,28,32,33,8,14]},{"name":"Legs and Arms","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[130,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[45,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,2,0],[75,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":8.333333,"affinityNeeded0":450,"affinityIncreasePL":22.5,"torporDepletionPS0":0.3,"foodConsumptionBase":0.000868,"foodConsumptionMult":1728.110596,"violent":true}},{"name":"Dimetrodon","breeding":{"pregnancyTime":0,"incubationTime":8999.280273,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":30,"eggTempMax":34},"colors":[{"name":"Body","colorIds":[21,23,25,26,32,33,8,14]},{"name":"Side Fin","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"Sail","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"Sail Spines","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"Legs and Belly","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]}],"statsRaw":[[350,0.2,0.27,0.65,0],[300,0.1,0.1,0,0],[500,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[250,0.02,0.04,0,0],[1,0.02,0.04,0.8,0.5],[1,0,0.025,0,0],[750,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Quetzal","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":1500,"affinityIncreasePL":90,"torporDepletionPS0":25,"foodConsumptionBase":0.001736,"foodConsumptionMult":160.010239,"violent":true}},{"name":"Dimorphodon","breeding":{"pregnancyTime":0,"incubationTime":4864.475586,"maturationTime":90090.085938,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":35,"eggTempMax":38},"colors":[{"name":"Body","colorIds":[20,21,22,23,24,32,33,34,8,13,35,14,36]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Face and Wing Membrane","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Feathers","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[125,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[50,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":4.166666,"affinityNeeded0":900,"affinityIncreasePL":45,"torporDepletionPS0":0.8333,"foodConsumptionBase":0.001302,"foodConsumptionMult":1152.07373,"violent":true}},{"name":"Diplocaulus","colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Fins","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Body Highlights","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14]},{"name":"Underbelly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[190,0.2,0.27,0.5,0],[165,0.1,0.1,0,0],[1050,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[150,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.25],[1,0,0.025,0,0],[220,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Archaeopteryx","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[119.969994,400]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":2000,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":225,"violent":true}},{"name":"Diplodocus","breeding":{"pregnancyTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":29},"colors":[{"name":"Sides, Legs, and Accents","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spines","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Underside","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[1700,0.2,0.27,0.5,0],[550,0.1,0.1,0,0],[300,0.1,0.1,0,0],[10000,0.1,0.1,0,0],[800,0.02,0.04,0,0],[1,0,0,0.5,0.4],[1,0,0.025,0,0],[3000,0.06,0,0.5,0]],"taming":{"eats":["Vegetables","Mejoberry","Berries","Stimberry"],"nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":0.08,"affinityNeeded0":7500,"affinityIncreasePL":375,"torporDepletionPS0":0.75,"foodConsumptionBase":0.007716,"foodConsumptionMult":180.001144,"wakeAffinityMult":3,"wakeFoodDeplMult":2,"violent":true}},{"name":"Direbear","breeding":{"pregnancyTime":14285.713867,"incubationTime":0,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Back and Head","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Belly and Legs","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[400,0.2,0.27,0.5,0],[500,0.1,0.1,0,0],[270,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[650,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1.226,0],[1000,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Mejoberry","Cooked Meat","Berries","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Carno","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.25,"affinityNeeded0":4000,"affinityIncreasePL":125,"torporDepletionPS0":0.9,"foodConsumptionBase":0.003156,"foodConsumptionMult":150,"violent":true}},{"name":"Direwolf","breeding":{"pregnancyTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[32,33,34,8,8,13,35,14,18,21]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Tail, Back, and Face","colorIds":[32,33,34,8,8,13,35,14,18,21]},{"name":"Feet","colorIds":[32,33,34,8,8,13,35,14,18,21]}],"statsRaw":[[330,0.2,0.27,0.66,0],[260,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[170,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[450,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Carno","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.5,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"violent":true}},{"name":"Dodo","breeding":{"pregnancyTime":0,"incubationTime":2999.760254,"maturationTime":55555.554688,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":30},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"Face","colorIds":[21,23,32,33,8,14]},{"name":"Beak","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Forehead, Neck, and Feet","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Head","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Wings and Patterning","colorIds":[19,21,23,25,26,28,30,32,33,8,14]}],"statsRaw":[[40,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[50,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,2,0],[30,0.06,0,0.5,0]],"taming":{"eats":["Vegetables","Mejoberry","Berries","Stimberry"],"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.333333,"affinityNeeded0":450,"affinityIncreasePL":22.5,"torporDepletionPS0":0.3,"foodConsumptionBase":0.000868,"foodConsumptionMult":2880.184326,"violent":true}},{"name":"Doedicurus","breeding":{"pregnancyTime":17857.142578,"incubationTime":0,"maturationTime":208333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Shell and Plates","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,29]},{"name":"Spikes and Claws","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,29]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Shell Patterning","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,29]},{"name":"Underside","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,29]}],"statsRaw":[[850,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0.15],[250,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,1.25,0],[800,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Dilo","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.2,"affinityNeeded0":4000,"affinityIncreasePL":150,"torporDepletionPS0":0.75,"foodConsumptionBase":0.003156,"foodConsumptionMult":176.03154,"violent":true}},{"name":"Dragon","statsRaw":[[20000,0.2,0.2,0.3,0],[400,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[2600,0.1,0.1,0,0],[3000,0.02,0.02,0,0],[1,0.05,0.04,0.3,0.3],[1,0,0,0,0],[350,0.06,0,0.5,0]],"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.5,"affinityNeeded0":8500,"affinityIncreasePL":150,"foodConsumptionBase":0.002066,"foodConsumptionMult":150,"violent":false}},{"name":"Dung Beetle","colors":[{"name":"Shell","colorIds":[20,22,24,26,27,29,31,14]},{"name":"Legs","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Palps and Leg Patterning","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Shell Patterning","colorIds":[20,22,24,26,27,29,31,14]},{"name":"Underside","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]}],"statsRaw":[[200,0.2,0.135,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[5,0.02,0.08,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[200,0.06,0,0.5,0]],"taming":{"eats":["Large Animal Feces","Medium Animal Feces","Spoiled Meat","Small Animal Feces","Human Feces","Raw Meat","Raw Fish 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]}},{"Key":"Raw Fish Meat","Value":{"d":[7.5,6]}}],"tamingIneffectiveness":4.166667,"affinityNeeded0":900,"affinityIncreasePL":50,"foodConsumptionBase":0.001488,"foodConsumptionMult":336.021515,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false}},{"name":"Dunkleosteus","colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Spots","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Head","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[710,0.2,0.27,0.3,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0.15],[910,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[1150,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Titanoboa","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.800003,400]}}],"tamingIneffectiveness":3.275,"affinityNeeded0":1300,"affinityIncreasePL":60,"torporDepletionPS0":1,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true}},{"name":"Gallimimus","breeding":{"pregnancyTime":0,"incubationTime":5142.445801,"maturationTime":95238.09375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Feathers","colorIds":[20,22,24,26,27,33,34,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14,36]},{"name":"Spine and Feather Tips","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Lower Body","colorIds":[19,21,23,25,26,32,33,8,14]}],"statsRaw":[[150,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1000,0.1,0.1,0,0],[270,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[420,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Dimetrodon","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.4,"affinityNeeded0":2200,"affinityIncreasePL":95,"torporDepletionPS0":4.175,"foodConsumptionBase":0.001929,"foodConsumptionMult":432.002777,"violent":true}},{"name":"Giganotosaurus","breeding":{"pregnancyTime":0,"incubationTime":179985.609375,"maturationTime":1010100.875,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":43,"eggTempMax":44},"colors":[{"name":"Body","colorIds":[20,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Back, Hands, and Feet","colorIds":[20,23,25,26,32,33,8,14]},{"name":"Belly","colorIds":[20,26,27,33,34,13,35,14]}],"statsRaw":[[80000,0.0005,0.002,-63000,0],[400,0.0005,0.01,0,0],[150,0.0025,0.025,0,0],[4000,0.0025,0.025,0,0],[700,0.01,0.01,0,0],[1,0.05,0.05,-0.8,0],[1,0,0.0031,0,0],[10000,0.06,0,0,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Quetzal","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.25,"affinityNeeded0":5000,"affinityIncreasePL":160,"torporDepletionPS0":120.000008,"foodConsumptionBase":0.002314,"foodConsumptionMult":160.056335,"violent":true}},{"name":"Gigantopithecus","breeding":{"pregnancyTime":23809.521484,"incubationTime":0,"maturationTime":277777.75,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Fur Mane","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Fur Accent","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Skins","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[640,0.1,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[220,0.02,0.04,0,0],[1,0.04,0.1,0.5,0.4],[1,0,0.025,0.06,0],[1100,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Titanoboa","nonViolent":true,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.98,300]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":4600,"affinityIncreasePL":75,"foodConsumptionBase":0.004156,"foodConsumptionMult":176.03154,"wakeAffinityMult":1.65,"wakeFoodDeplMult":2,"violent":false}},{"name":"Ichthy","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.05,0,0],[300,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Dodo","nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":1500,"affinityIncreasePL":75,"foodConsumptionBase":0.001929,"foodConsumptionMult":420,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2.5,"violent":false}},{"name":"Kairuku","breeding":{"pregnancyTime":0,"incubationTime":5454.108887,"maturationTime":101010.101563,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":30},"colors":[{"name":"Back and Markings","colorIds":[20,22,24,27,34,13,35,14]},{"name":"Beak","colorIds":[19,21,23,28,30,32,33,14,36]},{"name":"Feet","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Osteoderms","colorIds":[20,22,24,27,29,31,34,14]},{"name":null,"colorIds":[]}],"statsRaw":[[95,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0.15],[70,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,2,0],[300,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":4.166667,"affinityNeeded0":900,"affinityIncreasePL":45,"torporDepletionPS0":1,"foodConsumptionBase":0.001389,"foodConsumptionMult":1079.913574,"violent":true}},{"name":"Kaprosuchus","breeding":{"pregnancyTime":0,"incubationTime":7199.423828,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":29,"eggTempMax":35},"colors":[{"name":"Body","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":"Top Fins","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Top Scales","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":"Underbelly","colorIds":[23,24,26,27,33,34,13,35,14]}],"statsRaw":[[200,0.2,0.27,0.5,0],[350,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[140,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[200,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Tapejara","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[119.969994,400]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":2000,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"violent":true}},{"name":"Lystrosaurus","breeding":{"pregnancyTime":0,"incubationTime":2999.760254,"maturationTime":55555.554688,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Underside","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Spine and Feet","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[90,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[215,0.1,0.1,0,0],[500,0.1,0.1,0,0.15],[90,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,2,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Rare Flower","Vegetables","Mejoberry","Berries","Stimberry"],"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}},{"name":"Mammoth","breeding":{"pregnancyTime":28571.427734,"incubationTime":0,"maturationTime":296296.28125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Fur Mane","colorIds":[20,21,22,23,24,28,29,32,33,34,8,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"Tusks and Toes","colorIds":[23,28,32,33,8,14]},{"name":null,"colorIds":[]},{"name":"Fur Accent","colorIds":[20,21,22,23,24,28,29,32,33,34,8,13,35,14,36]},{"name":"unknown","colorIds":[20,21,22,23,24,28,29,32,33,34,8,13,35,14,36]}],"statsRaw":[[850,0.2,0.27,0.5,0],[330,0.1,0.1,0,0],[150,0.1,0.1,0,0],[5000,0.1,0.1,0,0],[500,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1.226,0],[550,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Raptor","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.12,"affinityNeeded0":5000,"affinityIncreasePL":250,"torporDepletionPS0":0.3,"foodConsumptionBase":0.004133,"foodConsumptionMult":192.027771,"violent":true}},{"name":"Manta","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":"Megaloceros","breeding":{"pregnancyTime":21978.021484,"incubationTime":0,"maturationTime":256410.25,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[]},{"name":"Antlers","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]},{"name":"Patterning","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]}],"statsRaw":[[300,0.2,0.27,0.5,0],[280,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[220,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[175,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Dimorph","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.5,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.2915,"foodConsumptionBase":0.001543,"foodConsumptionMult":432.058746,"violent":true}},{"name":"Megalodon","colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Stripes","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[600,0.2,0.27,0.3,0],[320,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0.15],[250,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[800,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Spino","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":2000,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true}},{"name":"Megalosaurus","breeding":{"pregnancyTime":0,"incubationTime":5999.520508,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":32},"colors":[{"name":"unknown","colorIds":[21,22,23,24,25,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[22,24,33,34,13,35,14]},{"name":"unknown","colorIds":[23,25,28,32,33,8,14]}],"statsRaw":[[1025,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0.15],[300,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[775,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Oviraptor","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[135,400]}}],"tamingIneffectiveness":1.875,"affinityNeeded0":3450,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true}},{"name":"Mesopithecus","breeding":{"pregnancyTime":9523.80957,"incubationTime":0,"maturationTime":111111.109375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[]},{"name":"Eye Markings","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39,28,28,28,30,30,30]},{"name":null,"colorIds":[]},{"name":"Back, Lower Limbs, and Tail Tip","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Skins","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[115,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[70,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,1.3,0],[60,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Dodo","nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":2200,"affinityIncreasePL":65,"foodConsumptionBase":0.000868,"foodConsumptionMult":2880.184326,"wakeAffinityMult":1.65,"wakeFoodDeplMult":2,"violent":false}},{"name":"Mosasaurus","colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spinal Ridge","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Sides of the Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Underside","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[3600,0.12,0.243,0.3,0],[400,0.1,0.1,0,0],[150,0.1,0.1,0,0],[8000,0.1,0.1,0,0.15],[1300,0.02,0.04,0,0],[1,0.05,0.1,0.9,0.4],[1,0,0.025,0,0],[3000,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Quetzal","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,550]}}],"tamingIneffectiveness":0.06,"affinityNeeded0":11000,"affinityIncreasePL":600,"torporDepletionPS0":12.8,"foodConsumptionBase":0.005,"foodConsumptionMult":180.001144,"violent":true}},{"name":"Moschops","breeding":{"pregnancyTime":0,"incubationTime":9472.926758,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":16,"eggTempMax":20},"colors":[{"name":"unknown","colorIds":[22,24,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,33,8,14]}],"statsRaw":[[375,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[300,0.1,0.1,0,0.15],[200,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.2,0],[300,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Raw Prime Fish Meat","Cooked Prime Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Vegetables","Raw Fish Meat","Cooked Fish Meat","Berries","Mejoberry"],"nonViolent":true,"specialFoodValues":[{"Key":"Raw Mutton","Value":{"d":[50,500]}},{"Key":"Raw Prime Meat","Value":{"d":[50,200]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,80]}},{"Key":"Vegetables","Value":{"d":[20,20]}},{"Key":"Berries","Value":{"d":[20,1.5]}},{"Key":"Mejoberry","Value":{"d":[30,1.5]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":6000,"affinityIncreasePL":150,"torporDepletionPS0":3,"foodConsumptionBase":0.001736,"foodConsumptionMult":176.03154,"wakeAffinityMult":2.5,"wakeFoodDeplMult":1.2,"violent":true}},{"name":"Onyc","colors":[{"name":"Main Body","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Claws","colorIds":[20,22,24,33,34,13,35,14]},{"name":"Membrane Shading","colorIds":[21,23,28,32,33,8,14]},{"name":null,"colorIds":[]},{"name":"Abdomen and Legs","colorIds":[21,23,28,32,33,8,14]},{"name":"Wing Membrane","colorIds":[21,23,28,32,33,8,14]}],"statsRaw":[[250,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[50,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[200,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":3000,"affinityIncreasePL":90,"foodConsumptionBase":0.002893,"foodConsumptionMult":192.034409,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false}},{"name":"Oviraptor","breeding":{"pregnancyTime":0,"incubationTime":4090.581787,"maturationTime":75757.570313,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":30},"colors":[{"name":"Body","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Crest and Beak","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Feathers","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":"Patterning","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[140,0.2,0.27,0.5,0],[120,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0.15],[100,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,1,0.15],[125,0.06,0,0.5,0]],"taming":{"eats":["Giganotosaurus Egg","Quetzal Egg","Rex Egg","Spino Egg","Bronto Egg","Carno Egg","Archaeopteryx Egg","Ankylo Egg","Oviraptor Egg","Baryonyx Egg","Pachyrhino Egg","Allosaurus Egg","Dimetrodon Egg","Dinosaur Egg"],"nonViolent":false,"specialFoodValues":[{"Key":"Giganotosaurus Egg","Value":{"d":[300,1200]}},{"Key":"Quetzal Egg","Value":{"d":[200,550]}},{"Key":"Rex Egg","Value":{"d":[200,100]}},{"Key":"Spino Egg","Value":{"d":[137.5,80]}},{"Key":"Bronto Egg","Value":{"d":[250,60]}},{"Key":"Carno Egg","Value":{"d":[137.5,30]}},{"Key":"Archaeopteryx Egg","Value":{"d":[20,9]}},{"Key":"Ankylo Egg","Value":{"d":[25,9]}},{"Key":"Oviraptor Egg","Value":{"d":[30,9]}},{"Key":"Baryonyx Egg","Value":{"d":[35,9]}},{"Key":"Pachyrhino Egg","Value":{"d":[45,9]}},{"Key":"Allosaurus Egg","Value":{"d":[55,9]}},{"Key":"Dimetrodon Egg","Value":{"d":[80,9]}},{"Key":"Dinosaur Egg","Value":{"d":[100,9]}}],"tamingIneffectiveness":16.666668,"affinityNeeded0":960,"affinityIncreasePL":42,"torporDepletionPS0":0.208,"foodConsumptionBase":0.001302,"foodConsumptionMult":768.049133,"violent":true}},{"name":"Ovis","breeding":{"pregnancyTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[100,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[90,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[85,0.06,0,0.5,0]],"taming":{"eats":["Sweet Vegetable Cake"],"nonViolent":true,"specialFoodValues":[{"Key":"Sweet Vegetable Cake","Value":{"d":[20,200000]}}],"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"foodConsumptionBase":0.003156,"foodConsumptionMult":1584.283936,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false}},{"name":"Pachy","breeding":{"pregnancyTime":0,"incubationTime":5142.445801,"maturationTime":95238.09375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Spikes and Claws","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Beak and Plates","colorIds":[19,21,23,25,26,28,30]},{"name":"Body Accent","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[175,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[150,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[160,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Dilo","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.5,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.2666,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"violent":true}},{"name":"Pachyrhinosaurus","breeding":{"pregnancyTime":0,"incubationTime":8999.280273,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":"unknown","colorIds":[22,24,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[20,22,24,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"unknown","colorIds":[20,22,24,29,31,33,34,13,35,14]},{"name":"unknown","colorIds":[21,23,25,32,33,8,14]}],"statsRaw":[[375,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[365,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[250,0.06,0,0.5,0]],"taming":{"eats":["Bug Repellant","Vegetables","Mejoberry","Berries","Stimberry"],"nonViolent":false,"specialFoodValues":[{"Key":"Bug Repellant","Value":{"d":[25,200]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":4500,"affinityIncreasePL":175,"torporDepletionPS0":3.5,"foodConsumptionBase":0.003156,"foodConsumptionMult":352.06308,"violent":true}},{"name":"Paracer","breeding":{"pregnancyTime":28571.427734,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Underside","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[1140,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[6500,0.1,0.1,0,0],[850,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[1300,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Pachy","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.0923,"affinityNeeded0":6500,"affinityIncreasePL":325,"torporDepletionPS0":0.9025,"foodConsumptionBase":0.0035,"foodConsumptionMult":327.6474,"violent":true}},{"name":"Parasaur","breeding":{"pregnancyTime":0,"incubationTime":5142.445801,"maturationTime":95238.09375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":24,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Beak and Frill","colorIds":[20,22,24,26,27,33,34,13,35,14,36]},{"name":"Frill Edge","colorIds":[19,21,23,25,26,32,33,8,14]},{"name":"Crest","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14,36]},{"name":"Patterning","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[19,21,23,25,26,32,33,8,14]}],"statsRaw":[[200,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[280,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.67,0],[150,0.06,0,0.5,0]],"taming":{"eats":["Vegetables","Mejoberry","Berries","Stimberry"],"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.4,"affinityNeeded0":1500,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001929,"foodConsumptionMult":864.005554,"violent":true}},{"name":"Pegomastax","breeding":{"pregnancyTime":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,28]},{"name":null,"colorIds":[]},{"name":"Back Fur","colorIds":[37,39,33,34,13,35,14]},{"name":"Limb Highlights","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[200,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[55,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.5,0],[30,0.06,0,0.5,0]],"taming":{"eats":["Vegetables","Mejoberry","Berries","Stimberry"],"nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":1.333333,"affinityNeeded0":1900,"affinityIncreasePL":35,"foodConsumptionBase":0.000868,"foodConsumptionMult":2880.184326,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false}},{"name":"Pelagornis","breeding":{"pregnancyTime":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":[[210,0.2,0.27,0.5,0],[320,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[135,0.02,0.04,0,0],[1,0.05,0.1,0.65,0.4],[1,0,0.025,0.365,0],[120,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Prime Fish Meat","Cooked Prime Fish Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Compy","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":216.029373,"violent":true}},{"name":"Phiomia","breeding":{"pregnancyTime":35714.285156,"incubationTime":0,"maturationTime":416666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[23,24,32,33,34,8,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Spots 1","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Spots 2","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[300,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0.15],[200,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.35,0],[240,0.06,0,0.5,0]],"taming":{"eats":["Vegetables","Mejoberry","Berries","Stimberry"],"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.003156,"foodConsumptionMult":1584.283936,"violent":true}},{"name":"Plesiosaur","colors":[{"name":"Body","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":"Facial Fins","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Belly","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[2400,0.12,0.162,0.15,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[5000,0.1,0.1,0,0.15],[800,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0,0],[1600,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Rex","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":0.75,"affinityNeeded0":5000,"affinityIncreasePL":250,"torporDepletionPS0":2.133333,"foodConsumptionBase":0.003858,"foodConsumptionMult":180.001144,"violent":true}},{"name":"Procoptodon","breeding":{"pregnancyTime":14285.713867,"incubationTime":0,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Back Stripes","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Inner Ear, Snout, Belly, Appendages","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[400,0.2,0.27,0.75,0],[350,0.1,0.1,0.1,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[450,0.02,0.04,0,0],[1,0.05,0.1,0.2,0.25],[1,0,0.02,0,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Rare Mushroom","Plant Species X Seed"],"nonViolent":false,"specialFoodValues":[{"Key":"Rare Mushroom","Value":{"d":[75,90]}},{"Key":"Plant Species X Seed","Value":{"d":[50,45]}}],"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.6666,"foodConsumptionBase":0.001929,"foodConsumptionMult":648.00415,"violent":true}},{"name":"Pteranodon","breeding":{"pregnancyTime":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.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[150,0.02,0.04,0,0],[1,0.05,0.1,0.65,0.4],[1,0,0.02,0.35,0],[120,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Dodo","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":216.029373,"violent":true}},{"name":"Pulmonoscorpius","colors":[{"name":"Plate Edges","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Claw Stripes, Barb Patterning, Body Joints","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"Limb Joints","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Body","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Plates","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Legs","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[280,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[200,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1,0],[150,0.06,0,0.5,0]],"taming":{"eats":["Spoiled Meat","Raw Meat","Raw Fish Meat"],"nonViolent":false,"specialFoodValues":[{"Key":"Raw Meat","Value":{"d":[15,15]}},{"Key":"Raw Fish Meat","Value":{"d":[7.5,6]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":1500,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001929,"foodConsumptionMult":432.002777,"violent":true}},{"name":"Purlovia","breeding":{"pregnancyTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Main Body","colorIds":[20,22,39,37,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Belly","colorIds":[20,33,34,13,35]},{"name":"Highlights","colorIds":[21,38,32,33,8,14]}],"statsRaw":[[275,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[4000,0.1,0.1,0,0],[400,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Moschops","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[53.279999,400]}}],"tamingIneffectiveness":3.125,"affinityNeeded0":2250,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"violent":true}},{"name":"Quetzal","breeding":{"pregnancyTime":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.27,0.5,0],[750,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[780,0.02,0.04,0,0],[1,0.04,0.1,0.4,0.4],[1,0,0.025,0.365,0],[1850,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Rex","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":0.9375,"affinityNeeded0":6850,"affinityIncreasePL":300,"torporDepletionPS0":3.4,"foodConsumptionBase":0.0035,"foodConsumptionMult":140,"violent":true}},{"name":"Raptor","breeding":{"pregnancyTime":0,"incubationTime":7199.423828,"maturationTime":133333.328125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":20,"eggTempMax":28},"colors":[{"name":"Body Accent","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Feather Tips","colorIds":[19,21,23,25,26,28,30]},{"name":null,"colorIds":[]},{"name":"Body","colorIds":[20,21,22,23,24,25,26,27,32,33,34,8,13,35,14]},{"name":"Feathers","colorIds":[19,21,23,25,26,28,30]},{"name":"Belly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[200,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0],[140,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[180,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Parasaur","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"violent":true}},{"name":"Rex","breeding":{"pregnancyTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":32,"eggTempMax":34},"colors":[{"name":"Body","colorIds":[20,22,24,27,33,34,13,35,14,36]},{"name":"Spine","colorIds":[20,22,24,27,33,34,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[20,22,24,27,33,34,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"Belly","colorIds":[20,22,24,27,33,34,13,35,14,36]}],"statsRaw":[[1100,0.2,0.27,0.5,0],[420,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[500,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[1550,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Pulminoscorpius","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.25,"affinityNeeded0":3450,"affinityIncreasePL":150,"torporDepletionPS0":0.725,"foodConsumptionBase":0.002314,"foodConsumptionMult":180.063385,"violent":true}},{"name":"Sabertooth","breeding":{"pregnancyTime":15037.592773,"incubationTime":0,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body","colorIds":[22,24,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Mane and Face","colorIds":[21,23,32,33,8,14]},{"name":"Stripes","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]}],"statsRaw":[[250,0.2,0.27,0.5,0],[200,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[200,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Bronto","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":1200,"affinityIncreasePL":60,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"violent":true}},{"name":"Sarco","breeding":{"pregnancyTime":0,"incubationTime":8999.280273,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":30,"eggTempMax":34},"colors":[{"name":"Body","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Stripe, Face, and Tail","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":"Snout and Tail Tip","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":"Plates","colorIds":[23,24,26,27,33,34,13,35,14]},{"name":"Body Accent","colorIds":[23,24,26,27,33,34,13,35,14]}],"statsRaw":[[400,0.2,0.27,0.65,0],[450,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[300,0.02,0.04,0,0],[1,0.05,0.1,0.8,0.5],[1,0,0.025,0.6,0],[400,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Trike","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":2000,"affinityIncreasePL":75,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001578,"foodConsumptionMult":211.237854,"violent":true}},{"name":"Spinosaur","breeding":{"pregnancyTime":0,"incubationTime":13845.046875,"maturationTime":256410.25,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":30,"eggTempMax":32},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Sail Edge","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Face, Tail, Inner Sail, and Frill","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,14,36]},{"name":"Belly","colorIds":[21,23,25,26,28,32,33,8,14]}],"statsRaw":[[700,0.2,0.27,0.5,0],[350,0.1,0.1,0,0],[650,0.1,0.1,0,0],[2600,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[850,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Argentavis","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[79.919998,400]}}],"tamingIneffectiveness":1.5,"affinityNeeded0":3200,"affinityIncreasePL":150,"torporDepletionPS0":2.133333,"foodConsumptionBase":0.002066,"foodConsumptionMult":150,"violent":true}},{"name":"Stegosaurus","breeding":{"pregnancyTime":0,"incubationTime":9999.200195,"maturationTime":185185.171875,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Spine","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Plate Base and Spike Base","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Back","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Plate Edge and Spike Tips","colorIds":[19,21,23,25,26,28,30,32,33,8,14]},{"name":"Belly","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[650,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[6000,0.1,0.1,0,0],[500,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.964,0],[500,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Sarco","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.1,"affinityNeeded0":6000,"affinityIncreasePL":300,"torporDepletionPS0":0.3,"foodConsumptionBase":0.005341,"foodConsumptionMult":208.034286,"violent":true}},{"name":"Tapejara","breeding":{"pregnancyTime":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],[450,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1600,0.1,0.1,0,0.15],[330,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.365,0],[450,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Allosaurus","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":3.125,"affinityNeeded0":2200,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001543,"foodConsumptionMult":216.029373,"violent":true}},{"name":"Terror Bird","breeding":{"pregnancyTime":0,"incubationTime":7199.423828,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":20,"eggTempMax":28},"colors":[{"name":"Feathers","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Belly/Wings Accent","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Beak, Skin, Legs","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[270,0.2,0.27,0.5,0],[160,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1500,0.1,0.1,0,0],[120,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[300,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Gallimimus","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":2.5,"affinityNeeded0":1600,"affinityIncreasePL":85,"torporDepletionPS0":2.25,"foodConsumptionBase":0.001578,"foodConsumptionMult":352.06308,"violent":true}},{"name":"Therizinosaurus","breeding":{"pregnancyTime":0,"incubationTime":5999.520508,"maturationTime":416666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":26,"eggTempMax":32},"colors":[{"name":"Feathers Main","colorIds":[20,22,24,33,34,13,35,14,36]},{"name":null,"colorIds":[]},{"name":"Body Highlights","colorIds":[23,24,25,32,8,36]},{"name":null,"colorIds":[]},{"name":"Feather Highlights","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Body Main","colorIds":[21,23,35,32,33,8,14]}],"statsRaw":[[870,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[365,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[925,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Megalosaurus","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[119.969994,400]}}],"tamingIneffectiveness":0.06,"affinityNeeded0":6800,"affinityIncreasePL":160,"torporDepletionPS0":2.833333,"foodConsumptionBase":0.002314,"foodConsumptionMult":180.063385,"violent":true}},{"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","Stimberry"],"favoriteKibble":"Carbonemys","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[53.279999,400]}}],"tamingIneffectiveness":0.06,"affinityNeeded0":10000,"affinityIncreasePL":500,"foodConsumptionBase":0.1,"foodConsumptionMult":13,"violent":true}},{"name":"Triceratops","breeding":{"pregnancyTime":0,"incubationTime":8999.280273,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":"Body","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Face and Feet","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":"Patterning","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Frill","colorIds":[20,22,24,26,27,29,31,33,34,13,35,14]},{"name":"Body Accent","colorIds":[21,23,25,26,32,33,8,14]}],"statsRaw":[[375,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[365,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1.226,0],[250,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Carno","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.003156,"foodConsumptionMult":352.06308,"violent":true}},{"name":"Troodon","breeding":{"pregnancyTime":0,"incubationTime":4090.581787,"maturationTime":75757.570313,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":28,"eggTempMax":32},"colors":[{"name":"Main Body","colorIds":[20,22,24,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Body Highlights and Feathers","colorIds":[21,23,32,33,8,14]},{"name":"Belly","colorIds":[21,23,13,28,32,33,8,14]}],"statsRaw":[[200,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[100,0.1,0.1,0,0],[140,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.2,0],[180,0.06,0,0.5,0]],"taming":{"eats":["Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"nonViolent":true,"specialFoodValues":null,"tamingIneffectiveness":8.333333,"affinityNeeded0":480,"affinityIncreasePL":45,"foodConsumptionBase":0.001543,"foodConsumptionMult":648.088135,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false}},{"name":"Tusoteuthis","colors":[{"name":"Body Highlights","colorIds":[19,20,21,22,23,24,28,29,14]},{"name":"Tentacle Highlights","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Tentacle Main","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"Body Main","colorIds":[21,23,28,32,33,8,14,36]}],"statsRaw":[[3333,0.2,0.27,0.5,0],[300,0.1,0.1,0,0],[215,0.1,0.1,0,0],[3200,0.1,0.1,0,0.15],[800,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1,0],[1800,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Black Pearl","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Black Pearl","Value":{"d":[30,50,50]}},{"Key":"Raw Mutton","Value":{"d":[50,37.5]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,20.625,30]}},{"Key":"Raw Prime Meat","Value":{"d":[50,15]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,7.5,30]}},{"Key":"Raw Prime Fish Meat","Value":{"d":[25,6]}},{"Key":"Raw Meat","Value":{"d":[50,5,20]}},{"Key":"Cooked Prime Fish Meat","Value":{"d":[25.686001,3,30]}},{"Key":"Cooked Meat","Value":{"d":[25,2.5,30]}},{"Key":"Raw Fish Meat","Value":{"d":[25,2,20]}},{"Key":"Cooked Fish Meat","Value":{"d":[12.5,1,30]}}],"tamingIneffectiveness":0.75,"affinityNeeded0":12500,"affinityIncreasePL":125,"foodConsumptionBase":0.005,"foodConsumptionMult":180.001144,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false}},{"name":"Wooly Rhino","breeding":{"pregnancyTime":14285.713867,"incubationTime":0,"maturationTime":166666.65625,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Skins","colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":"Back","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Underside","colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":"Horn","colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[500,0.2,0.27,0.5,0],[120,0.1,0.1,0,0],[100,0.1,0.1,0,0],[3000,0.1,0.1,0,0],[750,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,1.226,0],[600,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Terror Bird","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[53.279999,400]}}],"tamingIneffectiveness":1.25,"affinityNeeded0":3450,"affinityIncreasePL":125,"torporDepletionPS0":0.9,"foodConsumptionBase":0.003156,"foodConsumptionMult":150,"violent":true}},{"name":"Zomdodo","colors":[{"name":"unknown","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14]},{"name":"unknown","colorIds":[21,23,32,33,8,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[20,22,24,26,27,33,34,13,35,14]},{"name":"unknown","colorIds":[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,8,13,35,14,36]},{"name":"unknown","colorIds":[19,21,23,25,26,28,30,32,33,8,14]}],"statsRaw":[[700,0.2,0.27,0.2,0],[1000,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0,0,0,0.15],[170,0.02,0.04,0,0],[1,0.015,0.1,0.2,0],[1,0,0.025,2,0],[1000,0.06,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.333333,"affinityNeeded0":450,"affinityIncreasePL":22.5,"foodConsumptionBase":0,"foodConsumptionMult":0,"violent":false}},{"name":"Fire Wyvern","breeding":{"pregnancyTime":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]},{"name":null,"colorIds":[]},{"name":"Scales Main","colorIds":[13,21,33,39,22]},{"name":"Wings Main","colorIds":[39,38,35,22,13]},{"name":"Fins Highlight","colorIds":[10,20,21,35]},{"name":"Body Highlights","colorIds":[10,21,33]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[400,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0.025,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}},{"name":"Jerboa","breeding":{"pregnancyTime":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]},{"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]},{"name":"Belly and Highlights","colorIds":[13,9,33,39,37]}],"statsRaw":[[55,0.2,0.27,0.5,0],[100,0.1,0.1,0,0],[150,0.1,0.1,0,0],[450,0.1,0.1,0,0.15],[55,0.02,0.04,0,0],[1,0.05,0.1,1,0.4],[1,0,0.025,0.5,0],[30,0.06,0,0.5,0]],"taming":{"eats":["Plant Species Y Seed","Vegetables","Mejoberry","Berries","Stimberry"],"nonViolent":false,"specialFoodValues":[{"Key":"Plant Species Y Seed","Value":{"d":[65,160]}}],"tamingIneffectiveness":1.333333,"affinityNeeded0":1350,"affinityIncreasePL":22.5,"torporDepletionPS0":0.3,"foodConsumptionBase":0.000868,"foodConsumptionMult":2880.184326,"violent":true}},{"name":"Lightning Wyvern","breeding":{"pregnancyTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":80,"eggTempMax":90},"colors":[{"name":"Body Main","colorIds":[30,28,14,8,35]},{"name":"Fins","colorIds":[31,14,30,8]},{"name":"Wings","colorIds":[31,35,28,30,8]},{"name":"***NOT USED****","colorIds":[1]},{"name":"Scales Top","colorIds":[31,14,30,8]},{"name":"Fins","colorIds":[31,14,30,8]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[400,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0.025,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}},{"name":"Lymantria","colors":[{"name":"Facial Highlights","colorIds":[33,21,28,8,32]},{"name":"Wings Main","colorIds":[10,11,19,25,28,30,13]},{"name":"Legs","colorIds":[33,21,28,8,32]},{"name":"Wing Highlights","colorIds":[29,4,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":[[255,0.2,0.27,0.5,0],[180,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[175,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[550,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Thorny Dragon","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":1.875,"affinityNeeded0":1800,"affinityIncreasePL":100,"torporDepletionPS0":0.3,"foodConsumptionBase":0.001852,"foodConsumptionMult":199.983994,"violent":true}},{"name":"Mantis","colors":[{"name":"Body","colorIds":[9,10,16,17,15,11,33,27,26]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Back","colorIds":[9,10,16,17,15,11,33,27,26]},{"name":"Underneath","colorIds":[9,10,16,17,15,11,33,27,26]}],"statsRaw":[[275,0.2,0.135,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[220,0.02,0.08,0,0],[1,0.025,0.1,0.5,0.4],[1,0,0.025,0.67,0],[350,0.06,0,0.5,0]],"taming":{"eats":["Deathworm Horn","Spoiled Meat","Raw Meat","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Deathworm Horn","Value":{"d":[300,450]}},{"Key":"Raw Meat","Value":{"d":[15,15]}},{"Key":"Raw Fish Meat","Value":{"d":[7.5,6]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":1800,"affinityIncreasePL":75,"foodConsumptionBase":0.002314,"foodConsumptionMult":360,"wakeAffinityMult":1,"wakeFoodDeplMult":2,"violent":false}},{"name":"Morellatops","breeding":{"pregnancyTime":0,"incubationTime":8999.280273,"maturationTime":111111.109375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[400,0.2,0.27,0.5,0],[220,0.1,0.1,0,0],[150,0.1,0.1,0,0],[6000,0.1,0.1,0,0],[440,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0.964,0],[315,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Vegetables","Mejoberry","Berries","Stimberry"],"favoriteKibble":"Vulture","nonViolent":false,"specialFoodValues":null,"tamingIneffectiveness":0.2,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.3,"foodConsumptionBase":0.005341,"foodConsumptionMult":208.034286,"violent":true}},{"name":"Poison Wyvern","breeding":{"pregnancyTime":0,"incubationTime":17998.560547,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":80,"eggTempMax":90},"colors":[{"name":"Body Main","colorIds":[35,27,26,24,8,40]},{"name":"Wings Main","colorIds":[35,27,26,24,8]},{"name":"Scales Main","colorIds":[32,25,23,8]},{"name":"Wings Highlight","colorIds":[7,11,23,24,25,26,27,30]},{"name":"Scale Highlights","colorIds":[32,25,23,8]},{"name":"Body Highlights","colorIds":[32,25,23,8]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[400,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0.025,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}},{"name":"Rock Elemental","colors":[{"name":null,"colorIds":[1]},{"name":"Body","colorIds":[1,17,19,23,24,28,36,14]},{"name":null,"colorIds":[1]},{"name":null,"colorIds":[1]},{"name":null,"colorIds":[1]},{"name":null,"colorIds":[1]}],"statsRaw":[[25000,0.0125,0.135,-22000,0],[300,0.1,0.1,0,0],[150,0.1,0.1,0,0],[6000,0.1,0.1,0,0],[660,0.02,0.04,0,0],[1,0.05,0.1,0.125,0.4],[1,0,0.025,0,0],[5000,0.02,0,0.5,0]],"doesNotUseOxygen":true,"taming":{"eats":["Kibble","Sulfur","Clay","Stone"],"favoriteKibble":"Mantis","nonViolent":false,"specialFoodValues":[{"Key":"Kibble","Value":{"d":[19.9995,400]}},{"Key":"Sulfur","Value":{"d":[25,25]}},{"Key":"Clay","Value":{"d":[25,15]}},{"Key":"Stone","Value":{"d":[50,7]}}],"tamingIneffectiveness":2.5,"affinityNeeded0":6500,"affinityIncreasePL":325,"torporDepletionPS0":0.325,"foodConsumptionBase":0.002543,"foodConsumptionMult":180.063385,"violent":true}},{"name":"Thorny Dragon","breeding":{"pregnancyTime":0,"incubationTime":8999.280273,"maturationTime":175438.59375,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":22,"eggTempMax":28},"colors":[{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,37,37,37,37,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,38,38,38,38,39]},{"name":null,"colorIds":[21,22,32,33,34,8,13,35,14,37,38,39,39,39,39,39]}],"statsRaw":[[260,0.2,0.27,0.66,0],[350,0.1,0.1,0,0],[150,0.1,0.1,0,0],[1200,0.1,0.1,0,0.15],[300,0.02,0.04,0,0],[1,0.05,0.1,0.4,0.35],[1,0,0.025,0.3,0],[450,0.06,0,0.5,0]],"taming":{"eats":["Kibble","Raw Mutton","Cooked Lamb Chop","Raw Prime Meat","Cooked Prime Meat","Raw Prime Fish Meat","Raw Meat","Cooked Prime Fish Meat","Cooked Meat","Raw Fish Meat","Cooked Fish Meat"],"favoriteKibble":"Camelsaurus","nonViolent":false,"specialFoodValues":[{"Key":"Raw Mutton","Value":{"d":[50,325]}},{"Key":"Cooked Lamb Chop","Value":{"d":[49.945,165]}},{"Key":"Raw Prime Meat","Value":{"d":[50,130]}},{"Key":"Cooked Prime Meat","Value":{"d":[49.945,60]}},{"Key":"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":"Raw Fish Meat","Value":{"d":[25,16]}},{"Key":"Cooked Fish Meat","Value":{"d":[12.5,8]}}],"tamingIneffectiveness":1.5,"affinityNeeded0":3000,"affinityIncreasePL":150,"torporDepletionPS0":0.5,"foodConsumptionBase":0.001543,"foodConsumptionMult":288.039185,"violent":true}},{"name":"Vulture","breeding":{"pregnancyTime":0,"incubationTime":4864.475586,"maturationTime":90090.085938,"matingCooldownMin":64800,"matingCooldownMax":172800,"eggTempMin":35,"eggTempMax":38},"colors":[{"name":"Body Main","colorIds":[33,34,35,22,20,14,13]},{"name":"Head Highlight","colorIds":[19,20,21,22,28,29,30,31,14]},{"name":null,"colorIds":[]},{"name":null,"colorIds":[]},{"name":"Head Main","colorIds":[37,32,33,21,35]},{"name":"Body Highlights","colorIds":[33,34,35,22,20,14,13,32,21]}],"statsRaw":[[125,0.2,0.27,0.5,0],[150,0.1,0.1,0,0],[150,0.1,0.1,0,0],[900,0.1,0.1,0,0],[50,0.02,0.04,0,0],[1,0.05,0.1,0.5,0.4],[1,0,0.025,0,0],[100,0.06,0,0.5,0]],"taming":{"eats":["Spoiled Meat","Raw Meat","Raw Fish Meat"],"nonViolent":true,"specialFoodValues":[{"Key":"Raw Meat","Value":{"d":[15,15]}},{"Key":"Raw Fish Meat","Value":{"d":[7.5,6]}}],"tamingIneffectiveness":4.166666,"affinityNeeded0":655,"affinityIncreasePL":45,"foodConsumptionBase":0.001302,"foodConsumptionMult":1152.07373,"wakeAffinityMult":1.6,"wakeFoodDeplMult":2,"violent":false}},{"name":"Zombie Fire Wyvern","breeding":{"pregnancyTime":0,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[39,38,35,22,13]},{"name":null,"colorIds":[]},{"name":"Scales Main","colorIds":[13,21,33,39,22]},{"name":"Wings Main","colorIds":[39,38,35,22,13]},{"name":"Fins Highlight","colorIds":[10,20,21,35]},{"name":"Body Highlights","colorIds":[10,21,33]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[400,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0.025,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}},{"name":"Zombie Lightning Wyvern","breeding":{"pregnancyTime":0,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[30,28,14,8,35]},{"name":"Fins","colorIds":[31,14,30,8]},{"name":"Wings","colorIds":[31,35,28,30,8]},{"name":"wings","colorIds":[30,28,8]},{"name":"Scales Top","colorIds":[31,14,30,8]},{"name":"Fins","colorIds":[31,14,30,8]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[400,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0.025,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}},{"name":"Zombie Poison Wyvern","breeding":{"pregnancyTime":0,"incubationTime":0,"maturationTime":333333.3125,"matingCooldownMin":64800,"matingCooldownMax":172800},"colors":[{"name":"Body Main","colorIds":[35,27,26,24,8,40]},{"name":"Wings Main","colorIds":[35,27,26,24,8]},{"name":"Scales Main","colorIds":[32,25,23,8]},{"name":"Wings Highlight","colorIds":[7,11,23,24,25,26,27,30]},{"name":"Scale Highlights","colorIds":[32,25,23,8]},{"name":"Body Highlights","colorIds":[32,25,23,8]}],"statsRaw":[[1725,0.15,0.2025,-1050,0],[400,0.1,0.1,0,0],[150,0.1,0.1,0,0],[2000,0.1,0.1,0,0],[350,0.02,0.04,0,0],[1,0.05,0.1,-0.25,0.4],[1,0,0.025,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}}]} \ No newline at end of file diff --git a/ARKBreedingStats/ver.txt b/ARKBreedingStats/ver.txt index c427b58e..b1099d35 100644 --- a/ARKBreedingStats/ver.txt +++ b/ARKBreedingStats/ver.txt @@ -1 +1 @@ -2540002,0.21.3 \ No newline at end of file +2540003,0.21.4 \ No newline at end of file