forked from mastertea/kNumbers
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added normalized stats, officially 1.2
- Loading branch information
Mehni
committed
Dec 13, 2020
1 parent
6c1c3c2
commit 60e889b
Showing
16 changed files
with
102 additions
and
55 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<Defs> | ||
|
||
<StatDef> | ||
<defName>WorkSpeedGlobal_Normalized</defName> | ||
<label>global work speed (normalized)</label> | ||
<description>A multiplier on a character's speed at doing any kind of work. Environmental factors such as darkness are removed for better comparison values.</description> | ||
<category>PawnWork</category> | ||
<defaultBaseValue>1</defaultBaseValue> | ||
<minValue>0.3</minValue> | ||
<toStringStyle>PercentZero</toStringStyle> | ||
<alwaysHide>true</alwaysHide> | ||
<scenarioRandomizable>true</scenarioRandomizable> | ||
<displayPriorityInCategory>5000</displayPriorityInCategory> | ||
</StatDef> | ||
|
||
<StatDef> | ||
<defName>MoveSpeed_Normalized</defName> | ||
<label>move speed (normalized)</label> | ||
<description>Speed of movement in cells per second. Environmental factors such as darkness are removed for better comparison values.</description> | ||
<category>BasicsPawn</category> | ||
<defaultBaseValue>3.0</defaultBaseValue> | ||
<minValue>0.15</minValue> | ||
<toStringStyle>FloatTwo</toStringStyle> | ||
<formatString>{0} c/s</formatString> | ||
<capacityFactors> | ||
<li> | ||
<capacity>Moving</capacity> | ||
<weight>1</weight> | ||
</li> | ||
</capacityFactors> | ||
<alwaysHide>true</alwaysHide> | ||
<scenarioRandomizable>true</scenarioRandomizable> | ||
<displayPriorityInCategory>2500</displayPriorityInCategory> | ||
</StatDef> | ||
|
||
</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
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
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
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
namespace Numbers | ||
{ | ||
using System; | ||
using RimWorld; | ||
using Verse; | ||
|
||
|
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