-
-
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
10 changed files
with
4,182 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<Defs> | ||
|
||
<JobDef> | ||
<defName>TendSelf</defName> | ||
<driverClass>Dubs_Rimkit.JobDriver_TendSelf</driverClass> | ||
<reportString>tending to TargetA with kit.</reportString> | ||
</JobDef> | ||
|
||
<!--<JobDef> | ||
<defName>Bandage</defName> | ||
<driverClass>Dubs_Rimkit.JobDriver_Bandage</driverClass> | ||
<reportString>Bandaging with kit.</reportString> | ||
</JobDef>--> | ||
|
||
<JobDef> | ||
<defName>BandageOthers</defName> | ||
<driverClass>Dubs_Rimkit.JobDriver_BandageOthers</driverClass> | ||
<reportString>tending to TargetA with kit.</reportString> | ||
</JobDef> | ||
|
||
|
||
<JobDef> | ||
<defName>FixBrokenDownBuildingRepairKit</defName> | ||
<driverClass>Dubs_Rimkit.JobDriver_FixBrokenDownBuilding</driverClass> | ||
<reportString>replacing broken components in TargetA with kit.</reportString> | ||
</JobDef> | ||
|
||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<Defs> | ||
|
||
<RecipeDef> | ||
<defName>RepairComponent</defName> | ||
<label>fix component</label> | ||
<description>Fix a broken component.</description> | ||
<jobString>Fixing component.</jobString> | ||
<workSpeedStat>GeneralLaborSpeed</workSpeedStat> | ||
<effectWorking>Cook</effectWorking> | ||
<soundWorking>Recipe_Machining</soundWorking> | ||
<workAmount>900</workAmount> | ||
<unfinishedThingDef>UnfinishedComponent</unfinishedThingDef> | ||
<ingredients> | ||
<li> | ||
<filter> | ||
<thingDefs> | ||
<li>Steel</li> | ||
</thingDefs> | ||
</filter> | ||
<count>10</count> | ||
</li> | ||
<li> | ||
<filter> | ||
<thingDefs> | ||
<li>SalvagedComponent</li> | ||
</thingDefs> | ||
</filter> | ||
<count>1</count> | ||
</li> | ||
</ingredients> | ||
<products> | ||
<ComponentIndustrial>1</ComponentIndustrial> | ||
</products> | ||
<recipeUsers> | ||
<li>TableMachining</li> | ||
</recipeUsers> | ||
</RecipeDef> | ||
|
||
</Defs> |
Oops, something went wrong.