커스텀 코어 업데이트

This commit is contained in:
Cocopomel 2021-10-08 16:58:46 +09:00
parent 3e9807049b
commit e1ee37f5ac
12 changed files with 397 additions and 119 deletions

View File

@ -723,7 +723,7 @@
<PainShockThreshold>0.99</PainShockThreshold>
<ToxicSensitivity>0.2</ToxicSensitivity>
<PsychicSensitivity>0.6</PsychicSensitivity>
<GlobalLearningFactor>0.25</GlobalLearningFactor>
<GlobalLearningFactor>0.00</GlobalLearningFactor>
<FoodPoisonChance>0.0</FoodPoisonChance>
<MeatAmount>0</MeatAmount>
<LeatherAmount>0</LeatherAmount>

View File

@ -6,7 +6,7 @@
<label>Automaton immune system</label>
<description>Automaton immune system</description>
<hediffClass>HediffWithComps</hediffClass>
<defaultLabelColor>(1,1,0.5)</defaultLabelColor>
<defaultLabelColor>(0.8, 0.8, 0.8)</defaultLabelColor>
<scenarioCanAdd>false</scenarioCanAdd>
<maxSeverity>1</maxSeverity>
<initialSeverity>1</initialSeverity>
@ -33,6 +33,35 @@
</modExtensions>
</HediffDef>
<!--==================================== 학습 제한 ====================================-->
<HediffDef>
<defName>PN_Learning_Limit_System</defName>
<label>Automaton learning limit system</label>
<description>Automaton learning limit system</description>
<hediffClass>HediffWithComps</hediffClass>
<defaultLabelColor>(0.8, 0.8, 0.8)</defaultLabelColor>
<scenarioCanAdd>false</scenarioCanAdd>
<maxSeverity>1</maxSeverity>
<initialSeverity>1</initialSeverity>
<isBad>false</isBad>
<countsAsAddedPartOrImplant>true</countsAsAddedPartOrImplant>
<stages>
<li>
<becomeVisible>false</becomeVisible>
<statFactors>
<GlobalLearningFactor>0</GlobalLearningFactor>
</statFactors>
</li>
</stages>
<comps>
<li Class="MoharHediffs.HediffCompProperties_PostRemoveTrigger_HediffAdd">
<triggeredHediff>
<li>PN_Ex_filterA</li>
</triggeredHediff>
</li>
</comps>
</HediffDef>
<!--==================================== 오토마톤 기본 ====================================-->
<HediffDef>
<defName>PanielBaseHediff</defName>

View File

@ -223,10 +223,17 @@
<label>filter(PNgrade C norm)</label>
<defName>PN_Give_Normal_Combat</defName>
<comps>
<li Class="MoharHediffs.HediffCompProperties_HediffExclusive">
<hediffToApply>PN_SyncNormal_Combat</hediffToApply>
<bodyDef>PanielBody</bodyDef>
</li>
<li Class="MoharHediffs.HediffCompProperties_MultipleHediff">
<bodyDef>PanielBody</bodyDef>
<hediffAndBodypart>
<li>
<hediff>PN_SyncNormal_Combat</hediff>
</li>
<li>
<hediff>PN_Learning_Limit_System</hediff>
</li>
</hediffAndBodypart>
</li>
</comps>
</HediffDef>
@ -241,10 +248,17 @@
<label>filter(PNgrade C good)</label>
<defName>PN_Give_Good_Combat</defName>
<comps>
<li Class="MoharHediffs.HediffCompProperties_HediffExclusive">
<hediffToApply>PN_SyncGood_Combat</hediffToApply>
<bodyDef>PanielBody</bodyDef>
</li>
<li Class="MoharHediffs.HediffCompProperties_MultipleHediff">
<bodyDef>PanielBody</bodyDef>
<hediffAndBodypart>
<li>
<hediff>PN_SyncGood_Combat</hediff>
</li>
<li>
<hediff>PN_Learning_Limit_System</hediff>
</li>
</hediffAndBodypart>
</li>
</comps>
</HediffDef>
@ -259,10 +273,17 @@
<label>filter(PNgrade C exc)</label>
<defName>PN_Give_Excellent_Combat</defName>
<comps>
<li Class="MoharHediffs.HediffCompProperties_HediffExclusive">
<hediffToApply>PN_SyncExcellent_Combat</hediffToApply>
<bodyDef>PanielBody</bodyDef>
</li>
<li Class="MoharHediffs.HediffCompProperties_MultipleHediff">
<bodyDef>PanielBody</bodyDef>
<hediffAndBodypart>
<li>
<hediff>PN_SyncExcellent_Combat</hediff>
</li>
<li>
<hediff>PN_Learning_Limit_System</hediff>
</li>
</hediffAndBodypart>
</li>
</comps>
</HediffDef>
@ -277,10 +298,17 @@
<label>filter(PNgrade C mast)</label>
<defName>PN_Give_Masterwork_Combat</defName>
<comps>
<li Class="MoharHediffs.HediffCompProperties_HediffExclusive">
<hediffToApply>PN_SyncMasterwork_Combat</hediffToApply>
<bodyDef>PanielBody</bodyDef>
</li>
<li Class="MoharHediffs.HediffCompProperties_MultipleHediff">
<bodyDef>PanielBody</bodyDef>
<hediffAndBodypart>
<li>
<hediff>PN_SyncMasterwork_Combat</hediff>
</li>
<li>
<hediff>PN_Learning_Limit_System</hediff>
</li>
</hediffAndBodypart>
</li>
</comps>
</HediffDef>
@ -321,10 +349,17 @@
<label>filter(PNgrade C legd)</label>
<defName>PN_Give_Legendary_Combat</defName>
<comps>
<li Class="MoharHediffs.HediffCompProperties_HediffExclusive">
<hediffToApply>PN_SyncLegendary_Combat</hediffToApply>
<bodyDef>PanielBody</bodyDef>
</li>
<li Class="MoharHediffs.HediffCompProperties_MultipleHediff">
<bodyDef>PanielBody</bodyDef>
<hediffAndBodypart>
<li>
<hediff>PN_SyncLegendary_Combat</hediff>
</li>
<li>
<hediff>PN_Learning_Limit_System</hediff>
</li>
</hediffAndBodypart>
</li>
</comps>
</HediffDef>
@ -367,10 +402,17 @@
<label>filter(PNgrade E norm)</label>
<defName>PN_Give_Normal_Engineer</defName>
<comps>
<li Class="MoharHediffs.HediffCompProperties_HediffExclusive">
<hediffToApply>PN_SyncNormal_Engineer</hediffToApply>
<bodyDef>PanielBody</bodyDef>
</li>
<li Class="MoharHediffs.HediffCompProperties_MultipleHediff">
<bodyDef>PanielBody</bodyDef>
<hediffAndBodypart>
<li>
<hediff>PN_SyncNormal_Engineer</hediff>
</li>
<li>
<hediff>PN_Learning_Limit_System</hediff>
</li>
</hediffAndBodypart>
</li>
</comps>
</HediffDef>
@ -385,10 +427,17 @@
<label>filter(PNgrade E good)</label>
<defName>PN_Give_Good_Engineer</defName>
<comps>
<li Class="MoharHediffs.HediffCompProperties_HediffExclusive">
<hediffToApply>PN_SyncGood_Engineer</hediffToApply>
<bodyDef>PanielBody</bodyDef>
</li>
<li Class="MoharHediffs.HediffCompProperties_MultipleHediff">
<bodyDef>PanielBody</bodyDef>
<hediffAndBodypart>
<li>
<hediff>PN_SyncGood_Engineer</hediff>
</li>
<li>
<hediff>PN_Learning_Limit_System</hediff>
</li>
</hediffAndBodypart>
</li>
</comps>
</HediffDef>
@ -403,10 +452,17 @@
<label>filter(PNgrade E exc)</label>
<defName>PN_Give_Excellent_Engineer</defName>
<comps>
<li Class="MoharHediffs.HediffCompProperties_HediffExclusive">
<hediffToApply>PN_SyncExcellent_Engineer</hediffToApply>
<bodyDef>PanielBody</bodyDef>
</li>
<li Class="MoharHediffs.HediffCompProperties_MultipleHediff">
<bodyDef>PanielBody</bodyDef>
<hediffAndBodypart>
<li>
<hediff>PN_SyncExcellent_Engineer</hediff>
</li>
<li>
<hediff>PN_Learning_Limit_System</hediff>
</li>
</hediffAndBodypart>
</li>
</comps>
</HediffDef>
@ -421,10 +477,17 @@
<label>filter(PNgrade E mast)</label>
<defName>PN_Give_Masterwork_Engineer</defName>
<comps>
<li Class="MoharHediffs.HediffCompProperties_HediffExclusive">
<hediffToApply>PN_SyncMasterwork_Engineer</hediffToApply>
<bodyDef>PanielBody</bodyDef>
</li>
<li Class="MoharHediffs.HediffCompProperties_MultipleHediff">
<bodyDef>PanielBody</bodyDef>
<hediffAndBodypart>
<li>
<hediff>PN_SyncMasterwork_Engineer</hediff>
</li>
<li>
<hediff>PN_Learning_Limit_System</hediff>
</li>
</hediffAndBodypart>
</li>
</comps>
</HediffDef>
@ -465,10 +528,17 @@
<label>filter(PNgrade E legd)</label>
<defName>PN_Give_Legendary_Engineer</defName>
<comps>
<li Class="MoharHediffs.HediffCompProperties_HediffExclusive">
<hediffToApply>PN_SyncLegendary_Engineer</hediffToApply>
<bodyDef>PanielBody</bodyDef>
</li>
<li Class="MoharHediffs.HediffCompProperties_MultipleHediff">
<bodyDef>PanielBody</bodyDef>
<hediffAndBodypart>
<li>
<hediff>PN_SyncLegendary_Engineer</hediff>
</li>
<li>
<hediff>PN_Learning_Limit_System</hediff>
</li>
</hediffAndBodypart>
</li>
</comps>
</HediffDef>
@ -511,10 +581,17 @@
<label>filter(PNgrade D norm)</label>
<defName>PN_Give_Normal_Domestic</defName>
<comps>
<li Class="MoharHediffs.HediffCompProperties_HediffExclusive">
<hediffToApply>PN_SyncNormal_Domestic</hediffToApply>
<bodyDef>PanielBody</bodyDef>
</li>
<li Class="MoharHediffs.HediffCompProperties_MultipleHediff">
<bodyDef>PanielBody</bodyDef>
<hediffAndBodypart>
<li>
<hediff>PN_SyncNormal_Domestic</hediff>
</li>
<li>
<hediff>PN_Learning_Limit_System</hediff>
</li>
</hediffAndBodypart>
</li>
</comps>
</HediffDef>
@ -529,10 +606,17 @@
<label>filter(PNgrade D good)</label>
<defName>PN_Give_Good_Domestic</defName>
<comps>
<li Class="MoharHediffs.HediffCompProperties_HediffExclusive">
<hediffToApply>PN_SyncGood_Domestic</hediffToApply>
<bodyDef>PanielBody</bodyDef>
</li>
<li Class="MoharHediffs.HediffCompProperties_MultipleHediff">
<bodyDef>PanielBody</bodyDef>
<hediffAndBodypart>
<li>
<hediff>PN_SyncGood_Domestic</hediff>
</li>
<li>
<hediff>PN_Learning_Limit_System</hediff>
</li>
</hediffAndBodypart>
</li>
</comps>
</HediffDef>
@ -547,10 +631,17 @@
<label>filter(PNgrade D exc)</label>
<defName>PN_Give_Excellent_Domestic</defName>
<comps>
<li Class="MoharHediffs.HediffCompProperties_HediffExclusive">
<hediffToApply>PN_SyncExcellent_Domestic</hediffToApply>
<bodyDef>PanielBody</bodyDef>
</li>
<li Class="MoharHediffs.HediffCompProperties_MultipleHediff">
<bodyDef>PanielBody</bodyDef>
<hediffAndBodypart>
<li>
<hediff>PN_SyncExcellent_Domestic</hediff>
</li>
<li>
<hediff>PN_Learning_Limit_System</hediff>
</li>
</hediffAndBodypart>
</li>
</comps>
</HediffDef>
@ -565,10 +656,17 @@
<label>filter(PNgrade D mast)</label>
<defName>PN_Give_Masterwork_Domestic</defName>
<comps>
<li Class="MoharHediffs.HediffCompProperties_HediffExclusive">
<hediffToApply>PN_SyncMasterwork_Domestic</hediffToApply>
<bodyDef>PanielBody</bodyDef>
</li>
<li Class="MoharHediffs.HediffCompProperties_MultipleHediff">
<bodyDef>PanielBody</bodyDef>
<hediffAndBodypart>
<li>
<hediff>PN_SyncMasterwork_Domestic</hediff>
</li>
<li>
<hediff>PN_Learning_Limit_System</hediff>
</li>
</hediffAndBodypart>
</li>
</comps>
</HediffDef>
@ -609,10 +707,17 @@
<label>filter(PNgrade D legd)</label>
<defName>PN_Give_Legendary_Domestic</defName>
<comps>
<li Class="MoharHediffs.HediffCompProperties_HediffExclusive">
<hediffToApply>PN_SyncLegendary_Domestic</hediffToApply>
<bodyDef>PanielBody</bodyDef>
</li>
<li Class="MoharHediffs.HediffCompProperties_MultipleHediff">
<bodyDef>PanielBody</bodyDef>
<hediffAndBodypart>
<li>
<hediff>PN_SyncLegendary_Domestic</hediff>
</li>
<li>
<hediff>PN_Learning_Limit_System</hediff>
</li>
</hediffAndBodypart>
</li>
</comps>
</HediffDef>
@ -665,6 +770,42 @@
<HediffDef ParentName="PN_SyncGood_Base">
<defName>PN_SyncGood_Testsubject</defName>
<label>Test model (good)</label>
<stages Inherit="false">
<li>
<capMods>
<li>
<capacity>Consciousness</capacity>
<offset>0.05</offset>
</li>
<li>
<capacity>Moving</capacity>
<offset>0.10</offset>
</li>
<li>
<capacity>Sight</capacity>
<offset>0.10</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>0.10</offset>
</li>
</capMods>
<statOffsets>
<PsychicSensitivity>1.0</PsychicSensitivity>
<ResearchSpeed>0.9</ResearchSpeed>
<GlobalLearningFactor>1.50</GlobalLearningFactor>
<MentalBreakThreshold>0.12</MentalBreakThreshold>
</statOffsets>
</li>
</stages>
</HediffDef>
<!--개조당함-->
<HediffDef ParentName="PN_SyncNormal_Base">
<defName>PN_SyncNormal_Modified</defName>
<label>modified model</label>
<description>This pawn is an automaton.\nAfter production, It has been modified in an unauthorized way.</description>
</HediffDef>
<!--꽝끔찍-->
@ -673,10 +814,17 @@
<label>filter(PNgrade awfl)</label>
<defName>PN_Give_Awful_Failure</defName>
<comps>
<li Class="MoharHediffs.HediffCompProperties_HediffExclusive">
<hediffToApply>PN_SyncAwful_Failure</hediffToApply>
<bodyDef>PanielBody</bodyDef>
</li>
<li Class="MoharHediffs.HediffCompProperties_MultipleHediff">
<bodyDef>PanielBody</bodyDef>
<hediffAndBodypart>
<li>
<hediff>PN_SyncAwful_Failure</hediff>
</li>
<li>
<hediff>PN_Learning_Limit_System</hediff>
</li>
</hediffAndBodypart>
</li>
</comps>
</HediffDef>
@ -691,15 +839,22 @@
<label>filter(PNgrade poor)</label>
<defName>PN_Give_Poor_Failure</defName>
<comps>
<li Class="MoharHediffs.HediffCompProperties_HediffExclusive">
<hediffToApply>PN_SyncGood_Failure</hediffToApply>
<bodyDef>PanielBody</bodyDef>
</li>
<li Class="MoharHediffs.HediffCompProperties_MultipleHediff">
<bodyDef>PanielBody</bodyDef>
<hediffAndBodypart>
<li>
<hediff>PN_SyncPoor_Failure</hediff>
</li>
<li>
<hediff>PN_Learning_Limit_System</hediff>
</li>
</hediffAndBodypart>
</li>
</comps>
</HediffDef>
<HediffDef ParentName="PN_SyncPoor_Base">
<defName>PN_SyncGood_Failure</defName>
<defName>PN_SyncPoor_Failure</defName>
<label>Failure (poor)</label>
</HediffDef>
</Defs>

View File

@ -30,6 +30,7 @@
<alwaysHaulable>true</alwaysHaulable>
<isTechHediff>true</isTechHediff>
<pathCost>14</pathCost>
<tradeability>Buyable</tradeability>
<statBases>
<MaxHitPoints>50</MaxHitPoints>
<Flammability>0.7</Flammability>
@ -147,8 +148,13 @@
<!--==================================== 실험적 임플란트 ====================================-->
<HediffDef ParentName="PN_ImplantHediffBase">
<defName>PN_ExperimentalModuleHediff</defName>
<label>Experimental implant</label>
<description>This is a implant being tested by PnL industry.\n\nMakes the automaton behave more like a human, but makes it mentally unstable.\n\nWarning: automata equipped with this implant will periodically mental break.</description>
<label>custom core implant</label>
<description>
Warning: This implant is not a PnL licensed implant. When installed, the performance of the Automaton will decrease.\n\n
This implant makes the automaton learn like a human, but makes it mentally unstable.\n\n
This implant cannot be removed after installation.</description>
<descriptionHyperlinks>
<ThingDef>PN_ExperimentalModule</ThingDef>
</descriptionHyperlinks>
@ -156,58 +162,131 @@
<li>
<statOffsets>
<PsychicSensitivity>1.0</PsychicSensitivity>
<GlobalLearningFactor>1.20</GlobalLearningFactor>
<ResearchSpeed>0.9</ResearchSpeed>
<MentalBreakThreshold>0.08</MentalBreakThreshold>
<GlobalLearningFactor>0.80</GlobalLearningFactor>
<MentalBreakThreshold>0.12</MentalBreakThreshold>
</statOffsets>
<mentalStateGivers>
<li>
<mentalState>WanderConfused</mentalState>
<mtbDays>60</mtbDays>
</li>
<li>
<mentalState>Tantrum</mentalState>
<mtbDays>120</mtbDays>
</li>
<li>
<mentalState>Wander_OwnRoom</mentalState>
<mtbDays>60</mtbDays>
</li>
</mentalStateGivers>
</li>
</stages>
<comps>
<li Class="MoharHediffs.HediffCompProperties_PostRemoveTrigger_HediffAdd">
<triggeredHediff>
<li>PN_Learning_Limit_System</li>
</triggeredHediff>
</li>
<li Class="MoharHediffs.HediffCompProperties_HediffNullifier">
<hediffToNullify>
<li>PN_Learning_Limit_System</li>
</hediffToNullify>
</li>
</comps>
</HediffDef>
<HediffDef>
<defName>PN_Ex_filterA</defName>
<hediffClass>HediffWithComps</hediffClass>
<label>custom core filter A</label>
<description>This pawn is Automaton.</description>
<defaultLabelColor>(1,1,0.5)</defaultLabelColor>
<scenarioCanAdd>false</scenarioCanAdd>
<maxSeverity>1</maxSeverity>
<initialSeverity>1</initialSeverity>
<isBad>false</isBad>
<stages>
</stages>
<comps>
<li Class="MoharHediffs.HediffCompProperties_MultipleHediff">
<bodyDef>PanielBody</bodyDef>
<hediffAndBodypart>
<li>
<hediff>PN_Ex_filterB</hediff>
</li>
<li>
<hediff>PN_SyncNormal_Modified</hediff>
</li>
</hediffAndBodypart>
</li>
</comps>
</HediffDef>
<HediffDef>
<defName>PN_Ex_filterB</defName>
<hediffClass>HediffWithComps</hediffClass>
<label>custom core filter B</label>
<description>This pawn is Automaton.</description>
<defaultLabelColor>(1,1,0.5)</defaultLabelColor>
<scenarioCanAdd>false</scenarioCanAdd>
<maxSeverity>1</maxSeverity>
<initialSeverity>1</initialSeverity>
<isBad>false</isBad>
<stages>
</stages>
<comps>
<li Class="MoharHediffs.HediffCompProperties_HediffExclusive">
<hediffToNullify>
<li>PN_SyncNormal_Combat</li>
<li>PN_SyncGood_Combat</li>
<li>PN_SyncExcellent_Combat</li>
<li>PN_SyncMasterwork_Combat</li>
<li>PN_SyncLegendary_Combat</li>
<li>PN_SyncNormal_Engineer</li>
<li>PN_SyncGood_Engineer</li>
<li>PN_SyncExcellent_Engineer</li>
<li>PN_SyncMasterwork_Engineer</li>
<li>PN_SyncLegendary_Engineer</li>
<li>PN_SyncNormal_Domestic</li>
<li>PN_SyncGood_Domestic</li>
<li>PN_SyncExcellent_Domestic</li>
<li>PN_SyncMasterwork_Domestic</li>
<li>PN_SyncLegendary_Domestic</li>
<li>PN_SyncGood_Testsubject</li>
<li>PN_SyncAwful_Failure</li>
<li>PN_SyncPoor_Failure</li>
<li>PN_Learning_Limit_System</li>
</hediffToNullify>
</li>
</comps>
</HediffDef>
<ThingDef ParentName="PN_BodyPartNormalBase">
<defName>PN_ExperimentalModule</defName>
<label>automaton experimental implant</label>
<description>This is a implant being tested by PnL industry.\n\nMakes the automaton behave more like a human, but makes it mentally unstable.\n\nWarning: automata equipped with this implant will periodically mental break.</description>
<label>automaton custom core implant</label>
<description>Warning: This implant is not a PnL licensed implant. When installed, the performance of the Automaton will decrease.\n\n
This implant makes the automaton learn like a human, but makes it mentally unstable.\n\n
This implant cannot be removed after installation.</description>
<descriptionHyperlinks>
<RecipeDef>PN_InstallExperimentalModule</RecipeDef>
</descriptionHyperlinks>
<tradeability>None</tradeability>
<costList>
<ComponentIndustrial>2</ComponentIndustrial>
<AIPersonaCore>1</AIPersonaCore>
<ComponentSpacer>1</ComponentSpacer>
<PN_ComponentRoyal>1</PN_ComponentRoyal>
</costList>
<statBases>
<Mass>0.3</Mass>
</statBases>
<recipeMaker Inherit="False">
<recipeMaker>
<researchPrerequisite>PNRP_ExperimentalModule</researchPrerequisite>
</recipeMaker>
<techHediffsTags>
<li>PN_TestsubjectHadiff</li>
</techHediffsTags>
</ThingDef>
<RecipeDef ParentName="PN_SurgeryInstallImplantBase">
<defName>PN_InstallExperimentalModule</defName>
<label>install experimental implant</label>
<description>Install a experimental implant.</description>
<label>install custom core implant</label>
<description>Install a custom core implant.</description>
<descriptionHyperlinks>
<ThingDef>PN_ExperimentalModule</ThingDef>
<HediffDef>PN_ExperimentalModuleHediff</HediffDef>
</descriptionHyperlinks>
<jobString>Installing experimental implant.</jobString>
<jobString>Installing custom core implant.</jobString>
<ingredients>
<li>
<filter>

View File

@ -75,7 +75,7 @@
</capMods>
<statOffsets>
<PsychicSensitivity>-0.20</PsychicSensitivity>
<MentalBreakThreshold>-0.08</MentalBreakThreshold>
<MentalBreakThreshold>-0.04</MentalBreakThreshold>
<WorkSpeedGlobal>0.10</WorkSpeedGlobal>
<MoveSpeed>0.2</MoveSpeed>
</statOffsets>

View File

@ -81,10 +81,9 @@
</li>
</backstoryFiltersOverride>
<apparelAllowHeadgearChance>0</apparelAllowHeadgearChance>
<techHediffsChance>1</techHediffsChance>
<techHediffsMoney>4120</techHediffsMoney>
<techHediffsChance>0</techHediffsChance>
<techHediffsMoney>0</techHediffsMoney>
<techHediffsTags>
<li>PN_TestsubjectHadiff</li>
</techHediffsTags>
<minGenerationAge>1</minGenerationAge>
<maxGenerationAge>2</maxGenerationAge>

View File

@ -45,10 +45,24 @@
<researchViewX>3.0</researchViewX>
<researchViewY>0</researchViewY>
<tags>
</tags>
</ResearchProjectDef>
<ResearchProjectDef>
<defName>PNRP_ExperimentalModule</defName>
<label>custom core module</label>
<description>Research how to make custom core implants. This implant makes the automaton learn like a human, but makes it mentally unstable.\n\nWarning: This implant is not a PnL licensed implant. When installed, the performance of the Automaton will decrease.</description>
<tab>PN_technology</tab>
<baseCost>1500</baseCost>
<techLevel>Industrial</techLevel>
<prerequisites>
<li>PNRP_Brain</li>
</prerequisites>
<researchViewX>4.0</researchViewX>
<researchViewY>0.7</researchViewY>
</ResearchProjectDef>
<ResearchProjectDef>
<defName>PNRP_BrainCasing</defName>
<label>core casing</label>
@ -79,12 +93,12 @@
<li>MicroelectronicsBasics</li>
</prerequisites>
<researchViewX>3.0</researchViewX>
<researchViewY>0.7</researchViewY>
<researchViewY>1.4</researchViewY>
</ResearchProjectDef>
<ResearchProjectDef>
<defName>PNRP_ResurrectModule</defName>
<label>resurrect module</label>
<label>resurrect implant</label>
<description>Research how to embed the resurrector mech serum into the Automaton.</description>
<tab>PN_technology</tab>
<baseCost>500</baseCost>
@ -93,7 +107,7 @@
<li>PNRP_SelfRepairKit</li>
</prerequisites>
<researchViewX>4.0</researchViewX>
<researchViewY>0.7</researchViewY>
<researchViewY>1.4</researchViewY>
</ResearchProjectDef>
<!--==================================== 의상 ====================================-->

View File

@ -99,10 +99,6 @@
<thingDef>PN_ResurrectModule</thingDef>
<countRange>-9~1</countRange>
</li>
<li Class="StockGenerator_SingleDef">
<thingDef>PN_ExperimentalModule</thingDef>
<countRange>-9~1</countRange>
</li>
<!-- Buildings -->

View File

@ -18,6 +18,8 @@
<PN_AutomatonFuel_Addiction.stages.1.label>필요함</PN_AutomatonFuel_Addiction.stages.1.label>
<PN_Immune_System.label>오토마톤 면역 시스템</PN_Immune_System.label>
<PN_Immune_System.description>오토마톤 면역 시스템</PN_Immune_System.description>
<PN_Learning_Limit_System.label>오토마톤 학습 제한 시스템</PN_Learning_Limit_System.label>
<PN_Learning_Limit_System.description>오토마톤 학습 제한 시스템</PN_Learning_Limit_System.description>
<PanielBaseHediff.label>오토마톤 기본</PanielBaseHediff.label>
<PanielBaseHediff.description>이 폰은 오토마톤입니다.</PanielBaseHediff.description>
<PN_OilLoss.label>오일 누출</PN_OilLoss.label>
@ -77,8 +79,10 @@
<PN_SyncAwful_Failure.label>실패작 (끔찍)</PN_SyncAwful_Failure.label>
<PN_SyncGood_Failure.description>이 오토마톤은 생산된 후 빈약 등급을 받았습니다.</PN_SyncGood_Failure.description>
<PN_SyncGood_Failure.label>실패작 (빈약)</PN_SyncGood_Failure.label>
<PN_ExperimentalModuleHediff.label>실험 임플란트</PN_ExperimentalModuleHediff.label>
<PN_ExperimentalModuleHediff.description>PnL 인더스트리에서 실험중인 오토마톤 임플란트입니다.\n\n오토마톤을 더욱 사람같이 만들지만 정신적으로 불안정하게 된다는 부작용이 보고되었습니다.\n\n경고 : 이 임플란트를 장착한 오토마톤은 주기적으로 정신 광란을 일으킵니다.</PN_ExperimentalModuleHediff.description>
<PN_SyncNormal_Modified.description>이 오토마톤은 생산된 후 허가되지 않은 방법으로 개조되었습니다.</PN_SyncNormal_Modified.description>
<PN_SyncNormal_Modified.label>개조된 모델</PN_SyncNormal_Modified.label>
<PN_ExperimentalModuleHediff.label>커스텀 코어 임플란트</PN_ExperimentalModuleHediff.label>
<PN_ExperimentalModuleHediff.description>경고 : 이 임플란트는 PnL에서 인증되지 않은 임플란트입니다. 설치하면 오토마톤의 성능이 저하됩니다.\n\n이 임플란트는 오토마톤을 사람처럼 학습할 수 있게 만들지만 정신적으로 불안정하게 만듭니다.\n\n이 임플란트는 설치 후 제거할 수 없습니다.</PN_ExperimentalModuleHediff.description>
<PN_ResurrectModule.label>부활 임플란트</PN_ResurrectModule.label>
<PN_ResurrectModule.labelNoun>부활 임플란트</PN_ResurrectModule.labelNoun>
<PN_ResurrectModule.description>부활 혈청을 이용한 오토마톤 임플란트입니다.\n이 임플란트를 장착한 오토마톤은 죽은   초후에 부활합니다.</PN_ResurrectModule.description>

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<LanguageData>
<PN_InstallExperimentalModule.label>실험 임플란트 설치</PN_InstallExperimentalModule.label>
<PN_InstallExperimentalModule.description>실험 임플란트 설치</PN_InstallExperimentalModule.description>
<PN_InstallExperimentalModule.jobString>실험 임플란트 설치중.</PN_InstallExperimentalModule.jobString>
<PN_InstallExperimentalModule.label>커스텀 코어 임플란트 설치</PN_InstallExperimentalModule.label>
<PN_InstallExperimentalModule.description>커스텀 코어 임플란트 설치</PN_InstallExperimentalModule.description>
<PN_InstallExperimentalModule.jobString>커스텀 코어 임플란트 설치중.</PN_InstallExperimentalModule.jobString>
<PN_InstallResurrectModule.label>부활 임플란트 설치</PN_InstallResurrectModule.label>
<PN_InstallResurrectModule.description>부활 임플란트 설치</PN_InstallResurrectModule.description>
<PN_InstallResurrectModule.jobString>부활 임플란트 설치중.</PN_InstallResurrectModule.jobString>

View File

@ -4,6 +4,8 @@
<PNRP_Production.description>오토마톤을 제작하는 방법을 연구합니다</PNRP_Production.description>
<PNRP_Brain.label>코어 분석</PNRP_Brain.label>
<PNRP_Brain.description>중추 신경계를 추출하여 오토마톤을 제작하는 방법을 연구합니다.</PNRP_Brain.description>
<PNRP_ExperimentalModule.label>커스텀 코어 임플란트</PNRP_ExperimentalModule.label>
<PNRP_ExperimentalModule.description>커스텀 코어 임플란트를 만드는 방법을 연구합니다. 이 임플란트는 오토마톤을 사람처럼 학습할 수 있게 만들지만 정신적으로 불안정하게 만듭니다.\n\n경고 : 이 임플란트는 PnL에서 인증되지 않은 임플란트입니다. 설치하면 오토마톤의 성능이 저하됩니다.</PNRP_ExperimentalModule.description>
<PNRP_BrainCasing.label>코어 보관법</PNRP_BrainCasing.label>
<PNRP_BrainCasing.description>중추 신경계를 장기 보관하는 방법을 연구합니다.</PNRP_BrainCasing.description>
<PNRP_SelfRepairKit.label>자가 수리 키트</PNRP_SelfRepairKit.label>

View File

@ -9,8 +9,8 @@
<PN_AutomatonFuel.description>경고 : 사람에게 사용하지 마십시오.\n이 연료는 오토마톤 전용입니다.\n\n오토마톤이 사용하는 연료. 정신적 안정을 위해 대량의 사이카이트가 농축되어 있습니다.</PN_AutomatonFuel.description>
<PN_AutomatonFuel.ingestible.ingestCommandString>{0} 마시기</PN_AutomatonFuel.ingestible.ingestCommandString>
<PN_AutomatonFuel.ingestible.ingestReportString>{0} 마시는중.</PN_AutomatonFuel.ingestible.ingestReportString>
<PN_ExperimentalModule.label>오토마톤 실험 임플란트</PN_ExperimentalModule.label>
<PN_ExperimentalModule.description>PnL 인더스트리에 신형 오토마톤에 적용하기위해 테스트중인 임플란트.\n\n오토마톤을 보다 인간과 같이 행동하게 하지만 정신적으로 불안정해지는 현상이 보고되었습니다.\n\n경고 : 이 임플란트를 설치하면 주기적으로 정신 이상을 일으킵니다.</PN_ExperimentalModule.description>
<PN_ExperimentalModule.label>오토마톤 커스텀 코어 임플란트</PN_ExperimentalModule.label>
<PN_ExperimentalModule.description>경고 : 이 임플란트는 PnL에서 인증되지 않은 임플란트입니다. 설치하면 오토마톤의 성능이 저하됩니다.\n\n이 임플란트는 오토마톤을 사람처럼 학습할 수 있게 만들지만 정신적으로 불안정하게 만듭니다.\n\n이 임플란트는 설치 후 제거할 수 없습니다.</PN_ExperimentalModule.description>
<PN_ResurrectModule.label>오토마톤 부활 임플란트</PN_ResurrectModule.label>
<PN_ResurrectModule.description>부활 혈청을 이용해 제작하는 임플란트\n오토마톤이 이 임플란트 설치하면 오토마톤이 사망 몇초 뒤 자동으로 부활합니다.</PN_ResurrectModule.description>
<PN_ApparelBasic.label>파니엘 셔츠와 부츠</PN_ApparelBasic.label>