forked from Khaligufzel/RimStory
-
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
123 changed files
with
3,011 additions
and
2,512 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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
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
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
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
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,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Defs> | ||
<MainButtonDef> | ||
<defName>Story</defName> | ||
<label>Story</label> | ||
<description>View story of your colony.</description> | ||
<tabWindowClass>RimStory.Window_Story</tabWindowClass> | ||
<order>71</order> | ||
<validWithoutMap>true</validWithoutMap> | ||
</MainButtonDef> | ||
</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,56 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Defs> | ||
<DutyDef> | ||
<defName>Funeral</defName> | ||
<hook>MediumPriority</hook> | ||
<thinkNode Class="ThinkNode_Priority"> | ||
<subNodes> | ||
<li Class="ThinkNode_ConditionalInGatheringArea"> | ||
<subNodes> | ||
<!-- Eat --> | ||
<li Class="ThinkNode_ConditionalRandom"> | ||
<chance>0.01</chance> | ||
<subNodes> | ||
<li Class="JobGiver_EatInGatheringArea" /> | ||
</subNodes> | ||
</li> | ||
<!-- Stand where you are and be socially active --> | ||
<li Class="ThinkNode_ConditionalRandom"> | ||
<chance>0.70</chance> | ||
<subNodes> | ||
<li Class="JobGiver_StandAndBeSociallyActive"> | ||
<ticksRange> | ||
<min>5000</min> | ||
<max>7500</max> | ||
</ticksRange> | ||
</li> | ||
</subNodes> | ||
</li> | ||
<!-- Get joy --> | ||
<li Class="ThinkNode_ConditionalRandom"> | ||
<chance>0.1</chance> | ||
<subNodes> | ||
<li Class="JobGiver_GetJoyInGatheringArea" /> | ||
</subNodes> | ||
</li> | ||
<!-- Wander --> | ||
<li Class="JobGiver_WanderInGatheringArea"> | ||
<ticksBetweenWandersRange> | ||
<min>10</min> | ||
<max>15</max> | ||
</ticksBetweenWandersRange> | ||
</li> | ||
</subNodes> | ||
</li> | ||
<!-- Reach the party area --> | ||
<li Class="JobGiver_WanderInGatheringArea"> | ||
<ticksBetweenWandersRange> | ||
<min>50</min> | ||
<max>250</max> | ||
</ticksBetweenWandersRange> | ||
<locomotionUrgency>Jog</locomotionUrgency> | ||
</li> | ||
</subNodes> | ||
</thinkNode> | ||
</DutyDef> | ||
</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,113 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Defs> | ||
<!-- Relative Died --> | ||
<ThoughtDef> | ||
<defName>RS_DayDiedLover</defName> | ||
<durationDays>1.0</durationDays> | ||
<stackLimit>1</stackLimit> | ||
<stages> | ||
<li> | ||
<label>Today is the day my lover died.</label> | ||
<description>No one can replace my lover.</description> | ||
<baseMoodEffect>-15</baseMoodEffect> | ||
</li> | ||
</stages> | ||
</ThoughtDef> | ||
<ThoughtDef> | ||
<defName>RS_DayDiedSpouse</defName> | ||
<durationDays>1.0</durationDays> | ||
<stackLimit>1</stackLimit> | ||
<stages> | ||
<li> | ||
<label>Today is the day my spouse died.</label> | ||
<description>No one can replace my dear spouse.</description> | ||
<baseMoodEffect>-20</baseMoodEffect> | ||
</li> | ||
</stages> | ||
</ThoughtDef> | ||
<ThoughtDef> | ||
<defName>RS_DayDiedFiance</defName> | ||
<durationDays>1.0</durationDays> | ||
<stackLimit>1</stackLimit> | ||
<stages> | ||
<li> | ||
<label>Today is the day my fiance died.</label> | ||
<description>No one can replace my fiance.</description> | ||
<baseMoodEffect>-15</baseMoodEffect> | ||
</li> | ||
</stages> | ||
</ThoughtDef> | ||
<ThoughtDef> | ||
<defName>RS_DayDiedChild</defName> | ||
<durationDays>1.0</durationDays> | ||
<stackLimit>1</stackLimit> | ||
<stages> | ||
<li> | ||
<label>Today is the day my child died.</label> | ||
<description>No one can replace my poor child.</description> | ||
<baseMoodEffect>-20</baseMoodEffect> | ||
</li> | ||
</stages> | ||
</ThoughtDef> | ||
<ThoughtDef> | ||
<defName>RS_DayDiedMother</defName> | ||
<durationDays>1.0</durationDays> | ||
<stackLimit>1</stackLimit> | ||
<stages> | ||
<li> | ||
<label>Today is the day my mother died.</label> | ||
<description>Rest in peace, mother.</description> | ||
<baseMoodEffect>-10</baseMoodEffect> | ||
</li> | ||
</stages> | ||
</ThoughtDef> | ||
<ThoughtDef> | ||
<defName>RS_DayDiedFather</defName> | ||
<durationDays>1.0</durationDays> | ||
<stackLimit>1</stackLimit> | ||
<stages> | ||
<li> | ||
<label>Today is the day my father died.</label> | ||
<description>Rest in peace, father.</description> | ||
<baseMoodEffect>-10</baseMoodEffect> | ||
</li> | ||
</stages> | ||
</ThoughtDef> | ||
<ThoughtDef> | ||
<defName>RS_DayDiedSibling</defName> | ||
<durationDays>1.0</durationDays> | ||
<stackLimit>1</stackLimit> | ||
<stages> | ||
<li> | ||
<label>Today is the day my sibling died.</label> | ||
<description>I miss you.</description> | ||
<baseMoodEffect>-15</baseMoodEffect> | ||
</li> | ||
</stages> | ||
</ThoughtDef> | ||
<!-- Other --> | ||
<ThoughtDef> | ||
<defName>RS_DayBreakup</defName> | ||
<durationDays>1.0</durationDays> | ||
<stackLimit>1</stackLimit> | ||
<stages> | ||
<li> | ||
<label>Year ago</label> | ||
<description>I miss you.</description> | ||
<baseMoodEffect>-5</baseMoodEffect> | ||
</li> | ||
</stages> | ||
</ThoughtDef> | ||
<ThoughtDef> | ||
<defName>RS_ChitchatPast</defName> | ||
<durationDays>1.0</durationDays> | ||
<stackLimit>1</stackLimit> | ||
<stages> | ||
<li> | ||
<label>Today is the day my lover died.</label> | ||
<description>No one can replace my lover.</description> | ||
<baseMoodEffect>50</baseMoodEffect> | ||
</li> | ||
</stages> | ||
</ThoughtDef> | ||
</Defs> |
Oops, something went wrong.