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"> <ThingDef ParentName="SexToyBase">
<defName>SexToysDildo</defName> <defName>SexToysDildo</defName>
<label>Dildo</label> <label>dildo</label>
<description>A simple dildo for masturbation.</description> <description>A simple dildo for masturbation.</description>
<graphicData> <graphicData>
@ -43,6 +43,7 @@
<WorkToMake>1200</WorkToMake> <WorkToMake>1200</WorkToMake>
<MaxHitPoints>20</MaxHitPoints> <MaxHitPoints>20</MaxHitPoints>
<Flammability>0</Flammability> <Flammability>0</Flammability>
<SellPriceFactor>1.10</SellPriceFactor>
<Beauty>1</Beauty> <Beauty>1</Beauty>
<MarketValue>85</MarketValue> <MarketValue>85</MarketValue>
<Cleanliness>0</Cleanliness> <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>
<ItemGroup> <ItemGroup>
<Content Include="Defs\JobDefs\Jobs_MasturbateToy.xml" /> <Content Include="Defs\JobDefs\Jobs_MasturbateToy.xml" />
<Content Include="Patches\HumpshroomPatch.xml" />
<Content Include="Defs\ThingDefs\SexToys.xml" /> <Content Include="Defs\ThingDefs\SexToys.xml" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View file

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