diff --git a/About/About.xml b/About/About.xml index 7e330b3..9939913 100644 --- a/About/About.xml +++ b/About/About.xml @@ -3,7 +3,7 @@ Infused Latta & NotFood https://ludeon.com/forums/index.php?topic=21884.0 - 0.18.0 + 0.19.0 Equipment enchantment diff --git a/About/PublishedFileId.txt b/About/PublishedFileId.txt index 4249ec5..cd1e2ae 100644 --- a/About/PublishedFileId.txt +++ b/About/PublishedFileId.txt @@ -1 +1 @@ -731284821 \ No newline at end of file +731287727 diff --git a/Assemblies/0Harmony.dll b/Assemblies/0Harmony.dll index a95b6df..6c0dd94 100644 Binary files a/Assemblies/0Harmony.dll and b/Assemblies/0Harmony.dll differ diff --git a/Assemblies/Infused.dll b/Assemblies/Infused.dll index 7f03b29..8f8315a 100755 Binary files a/Assemblies/Infused.dll and b/Assemblies/Infused.dll differ diff --git a/Defs/InfusionDefs/Chances.xml b/Defs/InfusionDefs/Chances.xml index a4c0abd..c51e3ce 100644 --- a/Defs/InfusionDefs/Chances.xml +++ b/Defs/InfusionDefs/Chances.xml @@ -11,11 +11,9 @@ 0.08 - 0.08 0.08 0.1 0.2 - 0.33 0.45 0.67 0.88 @@ -37,11 +35,9 @@ 0.05 - 0.05 0.05 0.07 0.1 - 0.15 0.25 0.40 0.50 diff --git a/Defs/InfusionDefs/Prefixes.xml b/Defs/InfusionDefs/Prefixes.xml index 1856dd6..aeefe90 100644 --- a/Defs/InfusionDefs/Prefixes.xml +++ b/Defs/InfusionDefs/Prefixes.xml @@ -795,6 +795,12 @@ 1.07 +
  • + HuntingStealth + + 2.0 + +
  • @@ -813,7 +819,7 @@
  • - BrewingSpeed + DrugCookingSpeed 1.07 diff --git a/Defs/InfusionDefs/Suffixes.xml b/Defs/InfusionDefs/Suffixes.xml index d82cae6..d132bf7 100644 --- a/Defs/InfusionDefs/Suffixes.xml +++ b/Defs/InfusionDefs/Suffixes.xml @@ -82,6 +82,12 @@ 1.03
  • +
  • + HuntingStealth + + 2.0 + +
  • @@ -217,7 +223,7 @@
  • MoveSpeed - 1.05 + 1.10
  • diff --git a/README.md b/README.md index 370c7e5..f8cd1f2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # RimWorld-Infused -[![Version](https://img.shields.io/badge/Rimworld-A17-green.svg)](http://rimworldgame.com/) +[![Version](https://img.shields.io/badge/Rimworld-B19-green.svg)](http://rimworldgame.com/) [![License](https://img.shields.io/badge/license-Custom-blue.svg)](https://ludeon.com/forums/index.php?topic=11171.msg111243#msg111243) A unique way to make unique items for your special colonists: Randomly enchants equipment. diff --git a/Source/Defs/ChanceDef.cs b/Source/Defs/ChanceDef.cs index efe1f7d..cfeee50 100644 --- a/Source/Defs/ChanceDef.cs +++ b/Source/Defs/ChanceDef.cs @@ -1,6 +1,4 @@ -using System; - -using RimWorld; +using RimWorld; using Verse; namespace Infused @@ -8,11 +6,9 @@ namespace Infused public class QualityChances { public float awful; - public float shoddy; public float poor; public float normal; public float good; - public float superior; public float excellent; public float masterwork; public float legendary; @@ -21,7 +17,7 @@ public class QualityChances public class TechLevelRange { public TechLevel min = TechLevel.Undefined; - public TechLevel max = TechLevel.Transcendent; + public TechLevel max = TechLevel.Ultra; } public class ChanceDef : Verse.Def @@ -43,16 +39,12 @@ public float Chance(QualityCategory qc) { { case QualityCategory.Awful: return chances.awful; - case QualityCategory.Shoddy: - return chances.shoddy; case QualityCategory.Poor: return chances.poor; case QualityCategory.Normal: return chances.normal; case QualityCategory.Good: return chances.good; - case QualityCategory.Superior: - return chances.superior; case QualityCategory.Excellent: return chances.excellent; case QualityCategory.Masterwork: @@ -68,7 +60,7 @@ public override void ResolveReferences () { base.ResolveReferences (); - this.match.ResolveReferences (); + match.ResolveReferences (); } } } diff --git a/Source/Infused.csproj b/Source/Infused.csproj index 9eb76ff..113010f 100644 --- a/Source/Infused.csproj +++ b/Source/Infused.csproj @@ -32,11 +32,11 @@ - ..\..\..\..\..\Steam\steamapps\common\RimWorld\RimWorldLinux_Data\Managed\Assembly-CSharp.dll + ..\Dlls\Assembly-CSharp.dll False - ..\..\..\..\..\Steam\steamapps\common\RimWorld\RimWorldLinux_Data\Managed\UnityEngine.dll + ..\Dlls\UnityEngine.dll False