暂存
This commit is contained in:
18
1.6/1.6/Defs/LifeStageDefs/LifeStages.xml
Normal file
18
1.6/1.6/Defs/LifeStageDefs/LifeStages.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Defs>
|
||||
|
||||
<LifeStageDef>
|
||||
<defName>ARA_Queen_Adult</defName>
|
||||
<label>adult</label>
|
||||
<workerClass MayRequire="Ludeon.RimWorld.Biotech">LifeStageWorker_HumanlikeAdult</workerClass>
|
||||
<visible>false</visible>
|
||||
<reproductive>true</reproductive>
|
||||
<sittingOffset>0.18</sittingOffset>
|
||||
<silhouetteGraphicData>
|
||||
<texPath>Things/Pawn/Humanlike/Silhouettes/Silhouette_HumanAdult</texPath>
|
||||
<graphicClass>Graphic_Single</graphicClass>
|
||||
<drawSize>1</drawSize>
|
||||
</silhouetteGraphicData>
|
||||
</LifeStageDef>
|
||||
|
||||
</Defs>
|
||||
@@ -1,56 +1,91 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Defs>
|
||||
<!-- 定义一个基础的ThingDef,作为阿拉克涅Pawn的基类 -->
|
||||
<ThingDef Name="Arachnae_PawnBase" ParentName="BasePawn" Abstract="True">
|
||||
<!-- 屠宰产品设置 -->
|
||||
<butcherProducts>
|
||||
</butcherProducts>
|
||||
<!-- 种族相关设置 -->
|
||||
<race>
|
||||
<!-- 可以成为蹒跚怪 -->
|
||||
<canBecomeShambler>true</canBecomeShambler>
|
||||
<!-- 异常知识类别(需要Anomaly模组) -->
|
||||
<knowledgeCategory MayRequire="Ludeon.RimWorld.Anomaly">Basic</knowledgeCategory>
|
||||
<!-- 异常知识点数 -->
|
||||
<anomalyKnowledge>3</anomalyKnowledge>
|
||||
</race>
|
||||
<!-- 组件设置 -->
|
||||
<comps>
|
||||
<!-- 持有平台目标组件(需要Anomaly模组) -->
|
||||
<li MayRequire="Ludeon.RimWorld.Anomaly" Class="CompProperties_HoldingPlatformTarget">
|
||||
<!-- 基础逃脱间隔(天) -->
|
||||
<baseEscapeIntervalMtbDays>8</baseEscapeIntervalMtbDays>
|
||||
<!-- 是否获得低温收容奖励 -->
|
||||
<getsColdContainmentBonus>true</getsColdContainmentBonus>
|
||||
</li>
|
||||
<!-- 可研究组件(需要Anomaly模组) -->
|
||||
<li MayRequire="Ludeon.RimWorld.Anomaly" Class="CompProperties_Studiable">
|
||||
<!-- 研究频率(ticks) -->
|
||||
<frequencyTicks>120000</frequencyTicks>
|
||||
<!-- 研究所需的最低单极水平 -->
|
||||
<minMonolithLevelForStudy>1</minMonolithLevelForStudy>
|
||||
<!-- 是否需要监禁 -->
|
||||
<requiresImprisonment>true</requiresImprisonment>
|
||||
</li>
|
||||
</comps>
|
||||
<!-- 基础属性设置 -->
|
||||
<statBases>
|
||||
<!-- 最低收容强度(需要Anomaly模组) -->
|
||||
<MinimumContainmentStrength MayRequire="Ludeon.RimWorld.Anomaly">120</MinimumContainmentStrength>
|
||||
</statBases>
|
||||
</ThingDef>
|
||||
|
||||
<!-- 定义阿拉克涅女皇种族,继承自Arachnae_PawnBase -->
|
||||
<AlienRace.ThingDef_AlienRace ParentName="Arachnae_PawnBase" Name="ArachnaeQueenBase">
|
||||
<!-- 伤害倍数设置 -->
|
||||
<damageMultipliers>
|
||||
</damageMultipliers>
|
||||
<!-- 组件设置 -->
|
||||
<comps>
|
||||
<!-- 传播污泥组件 -->
|
||||
<li Class="CompProperties_SpreadSludge">
|
||||
<!-- 平均间隔时间(ticks) -->
|
||||
<mtbTicks>15000</mtbTicks>
|
||||
<!-- 使用的能力定义 -->
|
||||
<abilityDef>ARA_EggSpew</abilityDef>
|
||||
</li>
|
||||
<!-- 揭露时发送信件组件 -->
|
||||
<li Class="CompProperties_LetterOnRevealed">
|
||||
<!-- 信件标题 -->
|
||||
<label>Hive queen</label>
|
||||
<!-- 信件内容 -->
|
||||
<text>You've discovered the center of the nest. It's guarded by a massive insect queen!</text>
|
||||
<!-- 信件类型 -->
|
||||
<letterDef>ThreatBig</letterDef>
|
||||
</li>
|
||||
</comps>
|
||||
<!-- 定义名称 -->
|
||||
<defName>ArachnaeQueen_Race</defName>
|
||||
<!-- 显示标签 -->
|
||||
<label>阿拉克涅女皇种</label>
|
||||
<!-- 描述 -->
|
||||
<description>总之是阿拉克涅女皇原型机咯</description>
|
||||
<!-- 外星种族设置 -->
|
||||
<alienRace>
|
||||
<!-- 通用设置 -->
|
||||
<generalSettings>
|
||||
<!-- 繁殖设置 -->
|
||||
<reproduction>
|
||||
<!-- 子代Pawn类型定义 -->
|
||||
<childKindDef>ARA_ArachnaeQueen</childKindDef>
|
||||
<!-- 女性生育能力年龄因子 -->
|
||||
<femaleFertilityAgeFactor>
|
||||
<points>
|
||||
<li>(1, 1)</li>
|
||||
<li>(9999, 1)</li>
|
||||
</points>
|
||||
</femaleFertilityAgeFactor>
|
||||
<!-- 男性生育能力年龄因子 -->
|
||||
<maleFertilityAgeFactor>
|
||||
<points>
|
||||
<li>(1, 1)</li>
|
||||
@@ -58,6 +93,7 @@
|
||||
</points>
|
||||
</maleFertilityAgeFactor>
|
||||
</reproduction>
|
||||
<!-- 新生儿背景故事过滤器 -->
|
||||
<newbornBackstoryFilter>
|
||||
<li>
|
||||
<categories>
|
||||
@@ -68,6 +104,7 @@
|
||||
</li>
|
||||
</newbornBackstoryFilter>
|
||||
|
||||
<!-- 儿童背景故事过滤器 -->
|
||||
<childBackstoryFilter>
|
||||
<li>
|
||||
<categories>
|
||||
@@ -78,6 +115,7 @@
|
||||
</li>
|
||||
</childBackstoryFilter>
|
||||
|
||||
<!-- 成人背景故事过滤器 -->
|
||||
<adultBackstoryFilter>
|
||||
<li>
|
||||
<categories>
|
||||
@@ -88,23 +126,33 @@
|
||||
</li>
|
||||
</adultBackstoryFilter>
|
||||
|
||||
<!-- 成长年龄(需要Biotech模组) -->
|
||||
<growthAges MayRequire="Ludeon.RimWorld.Biotech">
|
||||
<li>1</li>
|
||||
<li>3</li>
|
||||
<li>5</li>
|
||||
</growthAges>
|
||||
|
||||
<!-- 种族基因 -->
|
||||
<raceGenes>
|
||||
</raceGenes>
|
||||
|
||||
<maleGenderProbability>0</maleGenderProbability> <!-- 성비 -->
|
||||
<immuneToAge>true</immuneToAge> <!-- 노화면역 -->
|
||||
<humanRecipeImport>true</humanRecipeImport> <!-- 인간이 사용하는 수술 사용 -->
|
||||
<!-- 男性性别概率 -->
|
||||
<maleGenderProbability>0</maleGenderProbability> <!-- 性别比例 -->
|
||||
<!-- 免疫衰老 -->
|
||||
<immuneToAge>true</immuneToAge> <!-- 免疫衰老 -->
|
||||
<!-- 导入人类手术 -->
|
||||
<humanRecipeImport>true</humanRecipeImport> <!-- 使用人类手术 -->
|
||||
<!-- 可以躺下 -->
|
||||
<canLayDown>true</canLayDown>
|
||||
<maxDamageForSocialfight>25</maxDamageForSocialfight> <!-- 사교적 싸움 최대 데미지 -->
|
||||
<immuneToXenophobia>true</immuneToXenophobia> <!-- 이종족 혐오 대상 -->
|
||||
<minAgeForAdulthood>6</minAgeForAdulthood> <!-- 성년기 백스토리 조건 나이 -->
|
||||
<!-- 社交战斗最大伤害 -->
|
||||
<maxDamageForSocialfight>25</maxDamageForSocialfight> <!-- 社交战斗最大伤害 -->
|
||||
<!-- 免疫种族厌恶 -->
|
||||
<immuneToXenophobia>true</immuneToXenophobia> <!-- 种族厌恶免疫 -->
|
||||
<!-- 成年期最小年龄 -->
|
||||
<minAgeForAdulthood>6</minAgeForAdulthood> <!-- 成年期背景故事条件年龄 -->
|
||||
|
||||
<!-- 禁止的特性 -->
|
||||
<disallowedTraits>
|
||||
<li>
|
||||
<defName>DrugDesire</defName>
|
||||
@@ -160,7 +208,7 @@
|
||||
</li>
|
||||
<li>
|
||||
<defName>BodyPurist</defName>
|
||||
<chance>100</chance>
|
||||
<chance>10</chance>
|
||||
</li>
|
||||
<li>
|
||||
<defName>DislikesMen</defName>
|
||||
@@ -171,6 +219,7 @@
|
||||
<chance>100</chance>
|
||||
</li>
|
||||
</disallowedTraits>
|
||||
<!-- 强制种族特性条目 -->
|
||||
<forcedRaceTraitEntries>
|
||||
<li>
|
||||
<options>
|
||||
@@ -192,30 +241,36 @@
|
||||
</li>
|
||||
</forcedRaceTraitEntries>
|
||||
|
||||
<!-- 外星种族部位生成器 -->
|
||||
<alienPartGenerator>
|
||||
<borderScale>4</borderScale> <!-- 그림이 표시되는 범위 크기 -->
|
||||
<atlasScale>4</atlasScale> <!-- 화질 -->
|
||||
<headTypes> <!--머리-->
|
||||
<!-- 边框缩放比例 -->
|
||||
<borderScale>4</borderScale> <!-- 图像显示范围大小 -->
|
||||
<!-- 图集缩放比例 -->
|
||||
<atlasScale>4</atlasScale> <!-- 图像质量 -->
|
||||
<!-- 头部类型 -->
|
||||
<headTypes> <!-- 头部 -->
|
||||
<li>ARA_QUEEN_Female_AverageNormalA</li>
|
||||
</headTypes> <!--머리-->
|
||||
</headTypes> <!-- 头部 -->
|
||||
|
||||
<bodyTypes> <!--몸-->
|
||||
<!-- 身体类型 -->
|
||||
<bodyTypes> <!-- 身体 -->
|
||||
<li>ARA_QUEEN_Thin</li>
|
||||
</bodyTypes> <!--몸-->
|
||||
</bodyTypes> <!-- 身体 -->
|
||||
|
||||
<!-- <useGenderedHeads>false</useGenderedHeads> --> <!--성별머리-->
|
||||
<!-- <useGenderedBodies>false</useGenderedBodies> --> <!--성별몸-->
|
||||
|
||||
<customDrawSize>(4,4)</customDrawSize> <!--전체크기-->
|
||||
<customHeadDrawSize>(1.75,1.75)</customHeadDrawSize> <!--머리크기-->
|
||||
<customPortraitDrawSize>(2,2)</customPortraitDrawSize> <!--초상화크기-->
|
||||
<!-- 自定义绘制大小 -->
|
||||
<customDrawSize>(4,4)</customDrawSize> <!-- 整体大小 -->
|
||||
<!-- 自定义头部绘制大小 -->
|
||||
<customHeadDrawSize>(1.75,1.75)</customHeadDrawSize> <!-- 头部大小 -->
|
||||
<!-- 自定义肖像绘制大小 -->
|
||||
<customPortraitDrawSize>(2,2)</customPortraitDrawSize> <!-- 肖像大小 -->
|
||||
<!-- 头部偏移 -->
|
||||
<headOffset>(0,0)</headOffset>
|
||||
<headOffsetDirectional>
|
||||
</headOffsetDirectional>
|
||||
|
||||
<!-- 老年头发年龄范围 -->
|
||||
<oldHairAgeRange>65.0~85.0</oldHairAgeRange>
|
||||
|
||||
<colorChannels Inherit="False"> <!--색-->
|
||||
<!-- 颜色通道设置 -->
|
||||
<colorChannels Inherit="False"> <!-- 颜色 -->
|
||||
<li>
|
||||
<name>skin</name>
|
||||
<first Class="ColorGenerator_Options">
|
||||
@@ -230,13 +285,13 @@
|
||||
<colorChannel>skin_1</colorChannel>
|
||||
</second>
|
||||
</li>
|
||||
<li> <!--헤어컬러-->
|
||||
<li> <!-- 头发颜色 -->
|
||||
<name>hair</name>
|
||||
<first Class="ColorGenerator_Options">
|
||||
<options>
|
||||
<li>
|
||||
<weight>100</weight>
|
||||
<only>(255,255,255)</only>
|
||||
<only>(255,25)</only>
|
||||
</li>
|
||||
</options>
|
||||
</first>
|
||||
@@ -244,26 +299,36 @@
|
||||
<color>(35, 20, 120)</color>
|
||||
</second>
|
||||
</li>
|
||||
</colorChannels> <!--색-->
|
||||
<bodyAddons> <!-- 몸부착물 -->
|
||||
</colorChannels> <!-- 颜色 -->
|
||||
<!-- 身体附件 -->
|
||||
<bodyAddons> <!-- 身体附件 -->
|
||||
</bodyAddons>
|
||||
</alienPartGenerator>
|
||||
</generalSettings>
|
||||
|
||||
<graphicPaths> <!-- 텍스쳐 -->
|
||||
<!-- 图形路径设置 -->
|
||||
<graphicPaths> <!-- 纹理 -->
|
||||
<!-- 皮肤颜色 -->
|
||||
<skinColor>(1,1,1,1)</skinColor>
|
||||
<!-- 皮肤着色器 -->
|
||||
<skinShader>Cutout</skinShader>
|
||||
<!-- 头部纹理路径 -->
|
||||
<head>Pawns/General/Invisible/Inv</head>
|
||||
<!-- 身体纹理路径 -->
|
||||
<body>Pawns/ARA_HiveQueen/Bodies/Naked_Thin</body>
|
||||
<!-- 骨骼纹理路径 -->
|
||||
<skeleton>Things/Pawn/Insect/HiveQueen/Dessicated_HiveQueen</skeleton>
|
||||
<!-- 残肢纹理路径 -->
|
||||
<stump>Things/Pawn/Insect/HiveQueen/HiveQueen</stump>
|
||||
|
||||
<!-- 服装设置 -->
|
||||
<apparel>
|
||||
<bodyTypeFallback>Thin</bodyTypeFallback>
|
||||
<femaleBodyTypeFallback>Thin</femaleBodyTypeFallback>
|
||||
</apparel>
|
||||
</graphicPaths> <!-- 텍스쳐 -->
|
||||
</graphicPaths> <!-- 纹理 -->
|
||||
|
||||
<!-- 样式设置 -->
|
||||
<styleSettings>
|
||||
<li>
|
||||
<key>HairDef</key>
|
||||
@@ -285,49 +350,70 @@
|
||||
</li>
|
||||
</styleSettings>
|
||||
|
||||
<relationSettings> <!-- 관계 -->
|
||||
<!-- 关系设置 -->
|
||||
<relationSettings> <!-- 关系 -->
|
||||
<!-- 恋人关系概率修正 -->
|
||||
<relationChanceModifierLover>0</relationChanceModifierLover>
|
||||
<!-- 前恋人关系概率修正 -->
|
||||
<relationChanceModifierExLover>0</relationChanceModifierExLover>
|
||||
|
||||
<!-- 订婚关系概率修正 -->
|
||||
<relationChanceModifierFiance>0</relationChanceModifierFiance>
|
||||
<!-- 配偶关系概率修正 -->
|
||||
<relationChanceModifierSpouse>0</relationChanceModifierSpouse>
|
||||
<!-- 前配偶关系概率修正 -->
|
||||
<relationChanceModifierExSpouse>0</relationChanceModifierExSpouse>
|
||||
|
||||
<!-- 父母关系概率修正 -->
|
||||
<relationChanceModifierParent>0</relationChanceModifierParent>
|
||||
<!-- 子女关系概率修正 -->
|
||||
<relationChanceModifierChild>0</relationChanceModifierChild>
|
||||
<!-- 兄弟姐妹关系概率修正 -->
|
||||
<relationChanceModifierSibling>0</relationChanceModifierSibling>
|
||||
</relationSettings> <!-- 관계 -->
|
||||
</relationSettings> <!-- 关系 -->
|
||||
|
||||
<raceRestriction> <!-- 종족제한 -->
|
||||
<onlyUseRaceRestrictedApparel>true</onlyUseRaceRestrictedApparel> <!-- 종족옷제한설정 -->
|
||||
<!-- 种族限制设置 -->
|
||||
<raceRestriction> <!-- 种族限制 -->
|
||||
<!-- 仅使用种族限制的服装 -->
|
||||
<onlyUseRaceRestrictedApparel>true</onlyUseRaceRestrictedApparel> <!-- 种族服装限制设置 -->
|
||||
|
||||
<apparelList> <!-- 옷 -->
|
||||
</apparelList> <!-- 옷 -->
|
||||
<!-- 服装列表 -->
|
||||
<apparelList> <!-- 服装 -->
|
||||
</apparelList> <!-- 服装 -->
|
||||
|
||||
<!-- 白名单服装列表 -->
|
||||
<whiteApparelList>
|
||||
</whiteApparelList>
|
||||
|
||||
<buildingList> <!-- 건물 -->
|
||||
</buildingList> <!-- 건물 -->
|
||||
<!-- 建筑列表 -->
|
||||
<buildingList> <!-- 建筑 -->
|
||||
</buildingList> <!-- 建筑 -->
|
||||
|
||||
<weaponList> <!-- 무기 -->
|
||||
</weaponList> <!-- 무기 -->
|
||||
<!-- 武器列表 -->
|
||||
<weaponList> <!-- 武器 -->
|
||||
</weaponList> <!-- 武器 -->
|
||||
|
||||
<researchList> <!-- 연구 -->
|
||||
</researchList> <!-- 연구 -->
|
||||
<!-- 研究列表 -->
|
||||
<researchList> <!-- 研究 -->
|
||||
</researchList> <!-- 研究 -->
|
||||
|
||||
<recipeList> <!-- 제작 -->
|
||||
</recipeList> <!-- 제작 -->
|
||||
<!-- 配方列表 -->
|
||||
<recipeList> <!-- 制作 -->
|
||||
</recipeList> <!-- 制作 -->
|
||||
|
||||
<traitList> <!-- 특성 -->
|
||||
</traitList> <!-- 특성 -->
|
||||
<!-- 特性列表 -->
|
||||
<traitList> <!-- 特性 -->
|
||||
</traitList> <!-- 特性 -->
|
||||
|
||||
<plantList> <!-- 식물 -->
|
||||
</plantList> <!-- 식물 -->
|
||||
<!-- 植物列表 -->
|
||||
<plantList> <!-- 植物 -->
|
||||
</plantList> <!-- 植物 -->
|
||||
|
||||
<!-- 食物列表 -->
|
||||
<foodList>
|
||||
</foodList>
|
||||
|
||||
<!-- 黑名单内源性基因类别 -->
|
||||
<blackEndoCategories>
|
||||
<li>Melanin</li>
|
||||
<li>HairColor</li>
|
||||
@@ -342,6 +428,7 @@
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Jaw</li>
|
||||
</blackEndoCategories>
|
||||
|
||||
<!-- 黑名单基因列表 -->
|
||||
<blackGeneList>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Furskin</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Brow_Heavy</li>
|
||||
@@ -351,6 +438,7 @@
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">FacialRidges</li>
|
||||
</blackGeneList>
|
||||
|
||||
<!-- 黑名单基因标签 -->
|
||||
<blackGeneTags>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">EyeColor</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Tail</li>
|
||||
@@ -358,9 +446,11 @@
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Fur</li>
|
||||
</blackGeneTags>
|
||||
|
||||
<!-- 异种类型列表 -->
|
||||
<xenotypeList>
|
||||
</xenotypeList>
|
||||
|
||||
<!-- 黑名单异种类型列表 -->
|
||||
<blackXenotypeList MayRequire="Ludeon.RimWorld.Biotech">
|
||||
<!-- <li MayRequire="Ludeon.RimWorld.Biotech">Baseliner</li> -->
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Dirtmole</li>
|
||||
@@ -377,10 +467,13 @@
|
||||
<li MayRequire="Ludeon.RimWorld.Odyssey">Starjack</li>
|
||||
</blackXenotypeList>
|
||||
|
||||
<!-- 仅使用种族限制的异种类型 -->
|
||||
<onlyUseRaceRestrictedXenotypes>true</onlyUseRaceRestrictedXenotypes> <!-- asd -->
|
||||
|
||||
</raceRestriction>
|
||||
<!-- 思想设置 -->
|
||||
<thoughtSettings>
|
||||
<!-- 无法接收的思想 -->
|
||||
<cannotReceiveThoughts>
|
||||
<li>Naked</li>
|
||||
<li>ApparelDamaged</li>
|
||||
@@ -410,51 +503,83 @@
|
||||
</thoughtSettings>
|
||||
</alienRace>
|
||||
|
||||
<statBases> <!-- 능력치 -->
|
||||
<MarketValue>2000</MarketValue> <!-- 가격 -->
|
||||
<!-- 基础属性设置 -->
|
||||
<statBases> <!-- 能力值 -->
|
||||
<!-- 市场价值 -->
|
||||
<MarketValue>2000</MarketValue> <!-- 价格 -->
|
||||
<!-- 皇家恩 favor值 -->
|
||||
<RoyalFavorValue>5</RoyalFavorValue>
|
||||
|
||||
<MoveSpeed>3.4</MoveSpeed> <!-- 이속 -->
|
||||
<Mass>80</Mass> <!-- 무게 -->
|
||||
<!-- 移动速度 -->
|
||||
<MoveSpeed>3.4</MoveSpeed> <!-- 移动速度 -->
|
||||
<!-- 质量 -->
|
||||
<Mass>80</Mass> <!-- 重量 -->
|
||||
|
||||
<ComfyTemperatureMax>45</ComfyTemperatureMax> <!-- 편한최대온도 -->
|
||||
<ComfyTemperatureMin>-45</ComfyTemperatureMin> <!-- 편한최소온도 -->
|
||||
<!-- 舒适温度上限 -->
|
||||
<ComfyTemperatureMax>45</ComfyTemperatureMax> <!-- 舒适最高温度 -->
|
||||
<!-- 舒适温度下限 -->
|
||||
<ComfyTemperatureMin>-45</ComfyTemperatureMin> <!-- 舒适最低温度 -->
|
||||
|
||||
<RestRateMultiplier>1</RestRateMultiplier> <!-- 잠 -->
|
||||
<!-- <HungerRateMultiplier>1</HungerRateMultiplier> --> <!-- 허기 -->
|
||||
<EatingSpeed>1.25</EatingSpeed> <!-- 먹는속도 -->
|
||||
<!-- 休息速率倍数 -->
|
||||
<RestRateMultiplier>1</RestRateMultiplier> <!-- 睡眠 -->
|
||||
<!-- 进食速度 -->
|
||||
<EatingSpeed>1.25</EatingSpeed> <!-- 进食速度 -->
|
||||
<!-- 最大营养值 -->
|
||||
<MaxNutrition>2.3</MaxNutrition>
|
||||
|
||||
<CarryingCapacity>150</CarryingCapacity> <!-- 운반량 -->
|
||||
<MeatAmount>45</MeatAmount> <!-- 고기량 -->
|
||||
<LeatherAmount>0</LeatherAmount> <!-- 가죽량 --> <!-- 가죽종류 밑에 있음 -->
|
||||
<!-- 携带能力 -->
|
||||
<CarryingCapacity>150</CarryingCapacity> <!-- 携带量 -->
|
||||
<!-- 肉量 -->
|
||||
<MeatAmount>45</MeatAmount> <!-- 肉量 -->
|
||||
<!-- 皮革量 -->
|
||||
<LeatherAmount>0</LeatherAmount> <!-- 皮革量 --> <!-- 皮革类型在下面 -->
|
||||
|
||||
<PainShockThreshold>0.75</PainShockThreshold> <!-- 쓰러짐고통 -->
|
||||
<PsychicSensitivity>1</PsychicSensitivity> <!-- 정신민감도 -->
|
||||
<MentalBreakThreshold>0.18</MentalBreakThreshold> <!-- 정신이상임계 -->
|
||||
<ToxicResistance>0.6</ToxicResistance> <!-- 직접 독성민감도 -->
|
||||
<ToxicEnvironmentResistance MayRequire="Ludeon.RimWorld.Biotech">0.6</ToxicEnvironmentResistance> <!-- 환경 독성민감도 -->
|
||||
<Flammability>0.7</Flammability> <!-- 가연성 -->
|
||||
<!-- 疼痛休克阈值 -->
|
||||
<PainShockThreshold>0.75</PainShockThreshold> <!-- 昏厥疼痛 -->
|
||||
<!-- 心灵敏感度 -->
|
||||
<PsychicSensitivity>1</PsychicSensitivity> <!-- 心灵敏感度 -->
|
||||
<!-- 精神崩溃阈值 -->
|
||||
<MentalBreakThreshold>0.18</MentalBreakThreshold> <!-- 精神异常阈值 -->
|
||||
<!-- 毒素抗性 -->
|
||||
<ToxicResistance>0.6</ToxicResistance> <!-- 直接毒素敏感度 -->
|
||||
<!-- 环境毒素抗性(需要Biotech模组) -->
|
||||
<ToxicEnvironmentResistance MayRequire="Ludeon.RimWorld.Biotech">0.6</ToxicEnvironmentResistance> <!-- 环境毒素敏感度 -->
|
||||
<!-- 易燃性 -->
|
||||
<Flammability>0.7</Flammability> <!-- 易燃性 -->
|
||||
|
||||
<MeleeDodgeChance>1.2</MeleeDodgeChance> <!-- 근접회피확률 -->
|
||||
<MeleeHitChance>1</MeleeHitChance> <!-- 근접적중확률 -->
|
||||
<!-- 近战闪避概率 -->
|
||||
<MeleeDodgeChance>1.2</MeleeDodgeChance> <!-- 近战闪避概率 -->
|
||||
<!-- 近战命中概率 -->
|
||||
<MeleeHitChance>1</MeleeHitChance> <!-- 近战命中概率 -->
|
||||
|
||||
<NegotiationAbility>1.15</NegotiationAbility> <!-- 외교영향력 -->
|
||||
<SellPriceFactor>1</SellPriceFactor> <!-- 판매가격 -->
|
||||
<SocialImpact>1.25</SocialImpact> <!-- 사회영향력 -->
|
||||
<TradePriceImprovement>0.5</TradePriceImprovement> <!-- 거래가격개선 -->
|
||||
<!-- 外交能力 -->
|
||||
<NegotiationAbility>1.15</NegotiationAbility> <!-- 外交影响力 -->
|
||||
<!-- 销售价格因子 -->
|
||||
<SellPriceFactor>1</SellPriceFactor> <!-- 销售价格 -->
|
||||
<!-- 社会影响 -->
|
||||
<SocialImpact>1.25</SocialImpact> <!-- 社会影响 -->
|
||||
<!-- 交易价格改善 -->
|
||||
<TradePriceImprovement>0.5</TradePriceImprovement> <!-- 交易价格改善 -->
|
||||
|
||||
<!-- 钝器护甲 -->
|
||||
<ArmorRating_Blunt>0.27</ArmorRating_Blunt>
|
||||
<!-- 锐器护甲 -->
|
||||
<ArmorRating_Sharp>0.22</ArmorRating_Sharp>
|
||||
<!-- 热能护甲 -->
|
||||
<ArmorRating_Heat>0.40</ArmorRating_Heat>
|
||||
|
||||
<!-- 伤势愈合因子 -->
|
||||
<InjuryHealingFactor>5</InjuryHealingFactor>
|
||||
|
||||
<!-- 每日觅食营养值 -->
|
||||
<ForagedNutritionPerDay>5</ForagedNutritionPerDay>
|
||||
<!-- 污垢率 -->
|
||||
<FilthRate>28</FilthRate>
|
||||
<!-- 野性 -->
|
||||
<Wildness>0.99</Wildness>
|
||||
</statBases> <!-- 능력치 -->
|
||||
</statBases> <!-- 能力值 -->
|
||||
|
||||
<!-- 工具设置(攻击方式) -->
|
||||
<tools>
|
||||
<li>
|
||||
<label>head claw</label>
|
||||
@@ -478,31 +603,56 @@
|
||||
</li>
|
||||
</tools>
|
||||
|
||||
<!-- 种族设置 -->
|
||||
<race>
|
||||
<!-- 主要思考树 -->
|
||||
<thinkTreeMain>Humanlike</thinkTreeMain>
|
||||
<!-- 常驻思考树 -->
|
||||
<thinkTreeConstant>HumanlikeConstant</thinkTreeConstant>
|
||||
<!-- 智力类型 -->
|
||||
<intelligence>Humanlike</intelligence>
|
||||
<!-- 会留下足迹 -->
|
||||
<makesFootprints>true</makesFootprints>
|
||||
<lifeExpectancy>850</lifeExpectancy> <!-- 수명 -->
|
||||
<leatherDef>Leather_Light</leatherDef> <!-- 가죽 -->
|
||||
<!-- 预期寿命 -->
|
||||
<lifeExpectancy>850</lifeExpectancy> <!-- 寿命 -->
|
||||
<!-- 皮革定义 -->
|
||||
<leatherDef>Leather_Light</leatherDef> <!-- 皮革 -->
|
||||
<!-- 名称类别 -->
|
||||
<nameCategory>HumanStandard</nameCategory>
|
||||
<bloodDef>Filth_Blood</bloodDef> <!-- 피 -->
|
||||
<!-- 血液定义 -->
|
||||
<bloodDef>Filth_Blood</bloodDef> <!-- 血液 -->
|
||||
<!-- 血迹定义 -->
|
||||
<bloodSmearDef>Filth_BloodSmear</bloodSmearDef>
|
||||
<body>BeetleLikeWithClaw</body> <!-- 몸 -->
|
||||
<!-- 身体结构 -->
|
||||
<body>BeetleLikeWithClaw</body> <!-- 身体 -->
|
||||
<!-- 基础身体大小 -->
|
||||
<baseBodySize>4.5</baseBodySize>
|
||||
<!-- 基础健康比例 -->
|
||||
<baseHealthScale>9.8</baseHealthScale>
|
||||
<useMeatFrom>Megaspider</useMeatFrom> <!-- 체력배율 -->
|
||||
<foodType>OmnivoreHuman, VegetarianRoughAnimal</foodType> <!-- 섭취음식 종류 -->
|
||||
<gestationPeriodDays>60</gestationPeriodDays> <!-- 출산주기 -->
|
||||
<meatMarketValue>1.85</meatMarketValue> <!-- 고기 가격비율 -->
|
||||
<!-- 使用蜘蛛的肉 -->
|
||||
<useMeatFrom>Megaspider</useMeatFrom> <!-- 健康比例 -->
|
||||
<!-- 食物类型 -->
|
||||
<foodType>OmnivoreHuman, VegetarianRoughAnimal</foodType> <!-- 食物种类 -->
|
||||
<!-- 妊娠期天数 -->
|
||||
<gestationPeriodDays>60</gestationPeriodDays> <!-- 生产周期 -->
|
||||
<!-- 肉类市场价格 -->
|
||||
<meatMarketValue>1.85</meatMarketValue> <!-- 肉类价格比例 -->
|
||||
<!-- 受伤时变为猎人概率 -->
|
||||
<manhunterOnDamageChance>1</manhunterOnDamageChance>
|
||||
<manhunterOnTameFailChance>1</manhunterOnTameFailChance> <!-- 조련실패시 받을시 반격확률 -->
|
||||
<!-- 驯服失败时反击概率 -->
|
||||
<manhunterOnTameFailChance>1</manhunterOnTameFailChance> <!-- 驯服失败反击概率 -->
|
||||
<!-- 渲染树 -->
|
||||
<renderTree>Humanlike</renderTree>
|
||||
<!-- 肉体类型 -->
|
||||
<fleshType>Normal</fleshType>
|
||||
<!-- 是否有非自然尸体 -->
|
||||
<hasUnnaturalCorpse>false</hasUnnaturalCorpse>
|
||||
<!-- 预期寿命 -->
|
||||
<lifeExpectancy>75</lifeExpectancy>
|
||||
<!-- 训练能力 -->
|
||||
<trainability>Advanced</trainability>
|
||||
<litterSizeCurve> <!-- 번식 수 비율 -->
|
||||
<!-- 一胎产仔数曲线 -->
|
||||
<litterSizeCurve> <!-- 繁殖数量比例 -->
|
||||
<points>
|
||||
<li>(0.5, 0)</li>
|
||||
<li>(1, 1)</li>
|
||||
@@ -510,15 +660,17 @@
|
||||
<li>(3.5, 0)</li>
|
||||
</points>
|
||||
</litterSizeCurve>
|
||||
<!-- 生命阶段年龄 -->
|
||||
<lifeStageAges>
|
||||
<li>
|
||||
<def>EusocialInsectAdult</def>
|
||||
<def>ARA_Queen_Adult</def>
|
||||
<soundWounded>Pawn_HiveQueen_Wounded</soundWounded>
|
||||
<soundDeath>Pawn_HiveQueen_Death</soundDeath>
|
||||
<soundCall>Pawn_HiveQueen_Call</soundCall>
|
||||
<soundAngry>Pawn_HiveQueen_Angry</soundAngry>
|
||||
</li>
|
||||
</lifeStageAges>
|
||||
<!-- 生命阶段工作设置(需要Biotech模组) -->
|
||||
<lifeStageWorkSettings MayRequire="Ludeon.RimWorld.Biotech">
|
||||
<Firefighter>7</Firefighter>
|
||||
<Patient>0</Patient>
|
||||
@@ -543,15 +695,21 @@
|
||||
<Research>13</Research>
|
||||
<DarkStudy MayRequire="Ludeon.RimWorld.Anomaly">13</DarkStudy>
|
||||
</lifeStageWorkSettings>
|
||||
<!-- 近战命中Pawn音效 -->
|
||||
<soundMeleeHitPawn>Pawn_Melee_BigBash_HitPawn</soundMeleeHitPawn>
|
||||
<!-- 近战命中建筑音效 -->
|
||||
<soundMeleeHitBuilding>Pawn_Melee_BigBash_HitBuilding</soundMeleeHitBuilding>
|
||||
<!-- 近战未命中音效 -->
|
||||
<soundMeleeMiss>Pawn_Melee_BigBash_Miss</soundMeleeMiss>
|
||||
<!-- 近战闪避音效 -->
|
||||
<soundMeleeDodge>Pawn_MeleeDodge</soundMeleeDodge>
|
||||
<!-- 特殊阴影数据 -->
|
||||
<specialShadowData>
|
||||
<volume>(0.3, 0.8, 0.4)</volume>
|
||||
<offset>(0,0,-0.3)</offset>
|
||||
</specialShadowData>
|
||||
<ageGenerationCurve> <!-- 생성시 나이 비율 -->
|
||||
<!-- 年龄生成曲线 -->
|
||||
<ageGenerationCurve> <!-- 生成时年龄比例 -->
|
||||
<points>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">(0,0)</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">(0.001,43)</li>
|
||||
@@ -572,15 +730,17 @@
|
||||
<li>(70,18)</li>
|
||||
<li>(80,10)</li>
|
||||
<li>(90,3)</li>
|
||||
<li>(100,0)</li>
|
||||
<li>(10,0)</li>
|
||||
</points>
|
||||
</ageGenerationCurve>
|
||||
<hediffGiverSets> <!-- 상황별 건강상태 부여 -->
|
||||
<!-- 疾病给予集合 -->
|
||||
<hediffGiverSets> <!-- 不同情况下的健康状态给予 -->
|
||||
<li>OrganicStandard</li>
|
||||
<li>Human</li>
|
||||
</hediffGiverSets>
|
||||
</race>
|
||||
|
||||
<!-- 可用的手术/配方 -->
|
||||
<recipes>
|
||||
<li>ExciseCarcinoma</li>
|
||||
<li>AdministerMechSerumHealer</li>
|
||||
@@ -601,8 +761,7 @@
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">ImplantIUD</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">RemoveIUD</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">TerminatePregnancy</li>
|
||||
</recipes> <!-- 수술 -->
|
||||
</recipes> <!-- 手术 -->
|
||||
</AlienRace.ThingDef_AlienRace>
|
||||
|
||||
|
||||
</Defs>
|
||||
Reference in New Issue
Block a user