Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions About/About.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<ModMetaData>
<name>Priority Treatment</name>
<author>Aristocat</author>
<url>https://github.com/AristocatHAHA/Priority-Treatment</url>
<targetVersion>0.18.1722</targetVersion>
<description>

Colonists priority treating wounds over sleeping, eating and joy.

This mod set doctoring as same priority as firefighting, as in emergency. Recommended to set doctoring as priority 1.

</description>
</ModMetaData>
54 changes: 54 additions & 0 deletions Defs/WorkGiverDefs/WorkGivers.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="utf-8" ?>
<Defs>



<WorkGiverDef>
<defName>DoctorTendToHumanlikes</defName>
<label>tend to patients</label>
<giverClass>WorkGiver_TendOther</giverClass>
<workType>Doctor</workType>
<verb>tend to</verb>
<gerund>tending to</gerund>
<emergency>true</emergency>
<requiredCapacities>
<li>Manipulation</li>
</requiredCapacities>
<priorityInType>70</priorityInType>
<prioritizeSustains>true</prioritizeSustains>
<tendToHumanlikesOnly>true</tendToHumanlikesOnly>
</WorkGiverDef>

<WorkGiverDef>
<defName>DoctorTendToSelf</defName>
<label>tend to self</label>
<giverClass>WorkGiver_TendSelf</giverClass>
<workType>Doctor</workType>
<verb>tend to</verb>
<gerund>tending to</gerund>
<emergency>true</emergency>
<requiredCapacities>
<li>Manipulation</li>
</requiredCapacities>
<priorityInType>65</priorityInType>
<prioritizeSustains>true</prioritizeSustains>
</WorkGiverDef>


<WorkGiverDef>
<defName>DoctorTendToAnimals</defName>
<label>tend to animals</label>
<giverClass>WorkGiver_TendOther</giverClass>
<workType>Doctor</workType>
<verb>tend to</verb>
<gerund>tending to</gerund>
<emergency>true</emergency>
<requiredCapacities>
<li>Manipulation</li>
</requiredCapacities>
<priorityInType>40</priorityInType>
<prioritizeSustains>true</prioritizeSustains>
<tendToAnimalsOnly>true</tendToAnimalsOnly>
</WorkGiverDef>

</Defs>