first commit

This commit is contained in:
c0ffeeeeeeee 2020-11-05 14:52:02 -08:00
parent 39924e2af5
commit b1ac13f3a1
4 changed files with 17 additions and 2 deletions

View File

@ -30,7 +30,7 @@
<ThingDef ParentName="SexToyBase">
<defName>SexToysDildo</defName>
<label>Dildo</label>
<label>dildo</label>
<description>A simple dildo for masturbation.</description>
<graphicData>
@ -43,6 +43,7 @@
<WorkToMake>1200</WorkToMake>
<MaxHitPoints>20</MaxHitPoints>
<Flammability>0</Flammability>
<SellPriceFactor>1.10</SellPriceFactor>
<Beauty>1</Beauty>
<MarketValue>85</MarketValue>
<Cleanliness>0</Cleanliness>

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8" ?>
<Patch>
<Operation Class="PatchOperationSequence">
<operations>
<li Class="PatchOperationAdd">
<xpath>Defs/ThingDef[defName="HumpShroom"]/comps</xpath>
<value>
<li Class="RJW_ToysAndMasturbation.CompProperties_SexToy" />
</value>
</li>
</operations>
</Operation>
</Patch>

View File

@ -72,6 +72,7 @@
</ItemGroup>
<ItemGroup>
<Content Include="Defs\JobDefs\Jobs_MasturbateToy.xml" />
<Content Include="Patches\HumpshroomPatch.xml" />
<Content Include="Defs\ThingDefs\SexToys.xml" />
</ItemGroup>
<ItemGroup>

View File

@ -53,7 +53,7 @@ namespace RJW_ToysAndMasturbation {
}
private string FloatMenuOptionLabel(Pawn pawn) {
return "Use sex toy";
return "Masturbate with toy";
}
}
}