-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
192 additions
and
25 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
17 changes: 17 additions & 0 deletions
17
...s Patches Compilation/Mods/RJW/CoreMod/1.5/Defs/ThingCategoryDefs/ThingCategories_RJW.xml
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,17 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<Defs> | ||
<ThingCategoryDef> | ||
<defName>RJWDrugs</defName> | ||
<label>Sexual stuff</label> | ||
<parent>Drugs</parent> | ||
<resourceReadoutRoot>true</resourceReadoutRoot> | ||
<iconPath>UI/Icons/ThingCategories/Drugs</iconPath> | ||
</ThingCategoryDef> | ||
<ThingCategoryDef> | ||
<defName>RJWBondageAdd</defName> | ||
<label>Sexual gear</label> | ||
<parent>Manufactured</parent> | ||
<resourceReadoutRoot>true</resourceReadoutRoot> | ||
<iconPath>UI/Icons/ThingCategories/Drugs</iconPath> | ||
</ThingCategoryDef> | ||
</Defs> |
7 changes: 7 additions & 0 deletions
7
...ds/RJW/CoreMod/1.5/Languages/Russian/DefInjected/ThingCategoryDef/ThingCategories_RJW.xml
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,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<LanguageData> | ||
|
||
<RJWDrugs.label>Для секса</RJWDrugs.label> | ||
<RJWBondageAdd.label>Для секса</RJWBondageAdd.label> | ||
|
||
</LanguageData> |
66 changes: 66 additions & 0 deletions
66
Pacas Patches Compilation/Mods/RJW/CoreMod/1.5/Patches/Patch_RJW_Core.xml
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,66 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Patch> | ||
<Operation Class="PatchOperationSequence"> | ||
<operations> | ||
<li Class="PatchOperationRemove"> | ||
<xpath>Defs/ThingDef[defName="HumpShroom"]/thingCategories</xpath> | ||
</li> | ||
<li Class="PatchOperationReplace"> | ||
<xpath>Defs/ThingDef[defName="UsedCondom"]/thingCategories</xpath> | ||
<value> | ||
<thingCategories Inherit="False"> | ||
<li>MeatSubRaw</li> | ||
</thingCategories> | ||
</value> | ||
</li> | ||
<li Class="PatchOperationAdd"> | ||
<xpath>Defs/ThingDef[ | ||
defName="Aphrodisiac" or | ||
defName="RJW_Contraceptive" or | ||
defName="RJW_FertPill" or | ||
defName="HumpShroom" | ||
] | ||
</xpath> | ||
<value> | ||
<thingCategories Inherit="False"> | ||
<li>RJWDrugs</li> | ||
</thingCategories> | ||
</value> | ||
</li> | ||
<li Class="PatchOperationReplace"> | ||
<xpath>Defs/ThingDef[ | ||
defName="Hololock" or | ||
defName="Holokey" or | ||
defName="Condom" | ||
]/thingCategories | ||
</xpath> | ||
<value> | ||
<thingCategories> | ||
<li>RJWBondageAdd</li> | ||
</thingCategories> | ||
</value> | ||
</li> | ||
|
||
<li Class="PatchOperationAdd"> | ||
<xpath>Defs/ThingDef[defName="Condom"]/statBases</xpath> | ||
<value> | ||
<Bulk>0.03</Bulk> | ||
</value> | ||
</li> | ||
|
||
<li Class="PatchOperationAdd"> | ||
<xpath>Defs/ThingDef[defName="UsedCondom"]/statBases</xpath> | ||
<value> | ||
<Bulk>0.3</Bulk> | ||
</value> | ||
</li> | ||
|
||
<li Class="PatchOperationAdd"> | ||
<xpath>Defs/ThingDef[defName="RJW_Contraceptive" or defName="RJW_FertPill" or defName="Aphrodisiac"]/statBases</xpath> | ||
<value> | ||
<Bulk>0.05</Bulk> | ||
</value> | ||
</li> | ||
</operations> | ||
</Operation> | ||
</Patch> |
16 changes: 16 additions & 0 deletions
16
Pacas Patches Compilation/Mods/RJW/Sexperience/1.4/Patches/Sexperience.xml
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,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Patch> | ||
<Operation Class="PatchOperationSequence"> | ||
<operations> | ||
<li Class="PatchOperationReplace"> | ||
<xpath>Defs/ThingDef[defName="GatheredCum"]/thingCategories</xpath> | ||
<value> | ||
<thingCategories Inherit="False"> | ||
<li>RJWDrugs</li> | ||
<li>MeatSubRaw</li> | ||
</thingCategories> | ||
</value> | ||
</li> | ||
</operations> | ||
</Operation> | ||
</Patch> |
50 changes: 50 additions & 0 deletions
50
Pacas Patches Compilation/Mods/RJW/Sexperience/1.5/Patches/Patch_Sexperience_Skills.xml
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,50 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Patch> | ||
|
||
<!-- GenTicks.--> | ||
<!-- Skill decays 300 times a day, make sure the rate * 300 won't be greater than the threshold --> | ||
|
||
<Operation Class="PatchOperationAddModExtension"> | ||
<xpath>Defs/SkillDef[defName="Sex"] | ||
</xpath> | ||
<value> | ||
<li Class="SK.SkillDecayExtension"> | ||
<xpThresholdPerDay>8000</xpThresholdPerDay> | ||
<decayCurve> | ||
<points> | ||
<li>(8,-0.2)</li> | ||
<li>(9,-0.5)</li> | ||
<li>(10,-1)</li> | ||
<li>(11,-2)</li> | ||
<li>(12,-3)</li> | ||
<li>(13,-4)</li> | ||
<li>(14,-4)</li> | ||
<li>(15,-3)</li> | ||
<li>(16,-2)</li> | ||
<li>(17,-1)</li> | ||
<li>(18,-0.5)</li> | ||
<li>(19,-0.2)</li> | ||
<li>(20,0)</li> | ||
</points> | ||
</decayCurve> | ||
<lossThreshold> | ||
<points> | ||
<li>(8,-840)</li> | ||
<li>(9,-2100)</li> | ||
<li>(10,-3150)</li> | ||
<li>(11,-4830)</li> | ||
<li>(12,-7140)</li> | ||
<li>(13,-10500)</li> | ||
<li>(14,-10080)</li> | ||
<li>(15,-6720)</li> | ||
<li>(16,-5040)</li> | ||
<li>(17,-3990)</li> | ||
<li>(18,-2100)</li> | ||
<li>(19,-1050)</li> | ||
</points> | ||
</lossThreshold> | ||
</li> | ||
</value> | ||
</Operation> | ||
|
||
</Patch> |
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,30 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Patch> | ||
<Operation Class="PatchOperationFindMod"> | ||
<mods> | ||
<li>Cumpilation</li> | ||
</mods> | ||
<match Class="PatchOperationSequence"> | ||
<operations> | ||
<li Class="PatchOperationReplace"> | ||
<xpath>Defs/ThingDef[defName="Cumpilation_Cum" or defName="Cumpilation_Lecithin"]/thingCategories</xpath> | ||
<value> | ||
<thingCategories Inherit="False"> | ||
<li>RJWDrugs</li> | ||
<li>MeatSubRaw</li> | ||
</thingCategories> | ||
</value> | ||
</li> | ||
<li Class="PatchOperationAdd"> | ||
<xpath>Defs/ThingDef[defName="Cumpilation_Lecithin" or defName="Cumpilation_Galactogogues"]</xpath> | ||
<value> | ||
<thingCategories Inherit="False"> | ||
<li>RJWDrugs</li> | ||
<li>MeatSubRaw</li> | ||
</thingCategories> | ||
</value> | ||
</li> | ||
</operations> | ||
</match> | ||
</Operation> | ||
</Patch> |
This file was deleted.
Oops, something went wrong.
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