25 lines
832 B
XML
25 lines
832 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Defs>
|
|
|
|
<!--
|
|
The Yard/Lockup schedule blocks. They show in the Restrict tab for any pawn that HAS a timetable;
|
|
vanilla prisoners do not, so this pairs with Prison Labor (which gives prisoners a timetable). Yard
|
|
allows recreation, so with the prisoner Joy need enabled the held head out to a rec area; Lockup
|
|
denies it and confines them to the cell. MapComponent_Lockup adds the mood cost of being locked up.
|
|
-->
|
|
<TimeAssignmentDef>
|
|
<defName>Institution_Yard</defName>
|
|
<label>yard</label>
|
|
<color>(74, 138, 90)</color>
|
|
</TimeAssignmentDef>
|
|
|
|
<TimeAssignmentDef>
|
|
<defName>Institution_Lockup</defName>
|
|
<label>lockup</label>
|
|
<color>(120, 70, 70)</color>
|
|
<allowJoy>false</allowJoy>
|
|
<allowRest>true</allowRest>
|
|
</TimeAssignmentDef>
|
|
|
|
</Defs>
|