Entity Study Rate

From RimWorld Wiki
Revision as of 16:39, 27 August 2024 by JuliaCat (talk | contribs) (Entity Study Rate stub)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Entity Study Rate is a stat: The rate at which this person generates knowledge from studying unnatural entities. Its minimum allowed value is 0%. Its default value is 100%.

Factors

A pawn's entity study rate has a base value of 100%, a minimum of 0.1%, and is affected by the following factors:

EntityStudyRate StatDef

  <StatDef ParentName="IntellectualSkillBase">
    <defName>EntityStudyRate</defName>
    <label>entity study rate</label>
    <description>The rate at which this person generates knowledge from studying unnatural entities.</description>
    <showOnDefaultValue>false</showOnDefaultValue>
    <minValue>0.001</minValue>
    <showOnAnimals>false</showOnAnimals>
    <showOnMechanoids>false</showOnMechanoids>
    <scenarioRandomizable>true</scenarioRandomizable>
    <displayPriorityInCategory>211</displayPriorityInCategory>
  </StatDef>

IntellectualSkillBase StatDef

  <StatDef Abstract="True" Name="IntellectualSkillBase">
    <defaultBaseValue>1</defaultBaseValue>
    <toStringStyle>PercentZero</toStringStyle>
    <category>PawnWork</category>
    <statFactors>
      <li>WorkSpeedGlobal</li>
    </statFactors>
    <skillNeedFactors>
      <li Class="SkillNeed_BaseBonus">
        <skill>Intellectual</skill>
        <baseValue>0.08</baseValue>
        <bonusPerLevel>0.115</bonusPerLevel>
      </li>
    </skillNeedFactors>
    <capacityFactors>
      <li>
        <capacity>Manipulation</capacity>
        <weight>0.5</weight>
        <max>1.1</max>
      </li>
      <li>
        <capacity>Sight</capacity>
        <weight>0.5</weight>
        <max>1.1</max>
      </li>
    </capacityFactors>
    <scenarioRandomizable>true</scenarioRandomizable>
  </StatDef>