-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for VexedTree's mods (Robots and Skeletons). Coolant vomit filth added. Chance changed to 95% chance for coolant vomit for non-coolant using creatures. Added patch and edit support. A list of coolant users is available in the Defs folder
- Loading branch information
Showing
26 changed files
with
217 additions
and
39 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<Defs> | ||
|
||
<!--=================== Fluids etc =================--> | ||
|
||
<ThingDef ParentName="BaseFilth"> | ||
<defName>ROMV_Filth_Coolant</defName> | ||
<label>coolant</label> | ||
<statBases> | ||
<Beauty>-30</Beauty> | ||
<Cleanliness>-10</Cleanliness> | ||
</statBases> | ||
<graphicData> | ||
<texPath>Things/Filth/Spatter</texPath> | ||
<color>(220, 220, 220, 180)</color> | ||
</graphicData> | ||
<filth> | ||
<ignoreFilthMultiplierStat>true</ignoreFilthMultiplierStat> | ||
<disappearsInDays>35~40</disappearsInDays> | ||
<rainWashes>true</rainWashes> | ||
<cleaningWorkToReduceThickness>70</cleaningWorkToReduceThickness> | ||
<canFilthAttach>true</canFilthAttach> | ||
<cleaningSound>Interact_CleanFilth_Fluid</cleaningSound> | ||
</filth> | ||
</ThingDef> | ||
|
||
</Defs> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<Defs> | ||
|
||
<Vampire.CoolantUsers> | ||
<defName>ROMV_CoolantUsers</defName> | ||
<label>Users of coolant instead of Blood Meter in Needs Menu</label> | ||
<description>Put Thing Classes and Race Defs (ThingDefs) for things that you want to have coolant meters instead of blood in the Needs menu.</description> | ||
<!-- | ||
<raceThingDefs> | ||
<li>Example</li> | ||
</raceThingDefs> | ||
--> | ||
<hediffGiverDefs> | ||
<li>ChjAndroidStandard</li> | ||
<li>AndroidStandardAtlas</li> | ||
<li>MechanicalStandard</li> | ||
<li>MechanentStandard</li> | ||
<li>PersonaStandard</li> | ||
</hediffGiverDefs> | ||
</Vampire.CoolantUsers> | ||
|
||
</Defs> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.23.1.0 | ||
1.24.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using Verse; | ||
using UnityEngine; | ||
using RimWorld; | ||
|
||
namespace Vampire | ||
{ | ||
public class CoolantUsers : Def | ||
{ | ||
public List<string> thingClasses = null; | ||
public List<string> raceThingDefs = null; | ||
public List<string> hediffGiverDefs = null; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.