暂存小女皇
This commit is contained in:
82
1.6/1.6/Defs/AbilityDefs/ARA_Abilities.xml
Normal file
82
1.6/1.6/Defs/AbilityDefs/ARA_Abilities.xml
Normal file
@@ -0,0 +1,82 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Defs>
|
||||
|
||||
<AbilityDef>
|
||||
<defName>ARA_EggSpew</defName>
|
||||
<label>egg spew</label>
|
||||
<description>Launch an egg sac and a spray of acidic sludge at the target area. The sludge will stick to targets and burn them.</description>
|
||||
<iconPath>UI/Commands/EggSpew</iconPath>
|
||||
<cooldownTicksRange>5000</cooldownTicksRange> <!-- 2 hours -->
|
||||
<aiCanUse>true</aiCanUse>
|
||||
<displayOrder>300</displayOrder>
|
||||
<displayGizmoWhileUndrafted>true</displayGizmoWhileUndrafted>
|
||||
<disableGizmoWhileUndrafted>false</disableGizmoWhileUndrafted>
|
||||
<warmupStartSound>AcidSpray_Warmup</warmupStartSound>
|
||||
<verbProperties>
|
||||
<verbClass>Verb_CastAbility</verbClass>
|
||||
<range>14.9</range>
|
||||
<warmupTime>0.25</warmupTime>
|
||||
<soundCast>AcidSpray_Resolve</soundCast>
|
||||
<targetParams>
|
||||
<canTargetLocations>true</canTargetLocations>
|
||||
</targetParams>
|
||||
</verbProperties>
|
||||
<comps>
|
||||
<li Class="CompProperties_AbilitySprayLiquid">
|
||||
<projectileDef>ARA_Proj_StrongSludgeSpray</projectileDef>
|
||||
<numCellsToHit>18</numCellsToHit>
|
||||
<sprayEffecter>AcidSpray_Directional</sprayEffecter>
|
||||
</li>
|
||||
<li Class="CompProperties_AbilityLaunchProjectile">
|
||||
<projectileDef>ARA_Proj_EggSac</projectileDef>
|
||||
</li>
|
||||
</comps>
|
||||
</AbilityDef>
|
||||
<ThingDef>
|
||||
<defName>ARA_Proj_StrongSludgeSpray</defName>
|
||||
<label>sludge</label>
|
||||
<thingClass>Projectile_Liquid</thingClass>
|
||||
<category>Projectile</category>
|
||||
<tickerType>Normal</tickerType>
|
||||
<altitudeLayer>Projectile</altitudeLayer>
|
||||
<useHitPoints>False</useHitPoints>
|
||||
<neverMultiSelect>True</neverMultiSelect>
|
||||
<graphicData>
|
||||
<texPath>Things/Projectile/SludgeSpray</texPath>
|
||||
<graphicClass>Graphic_Random</graphicClass>
|
||||
<shaderType>MoteGlow</shaderType>
|
||||
<drawSize>0.85</drawSize>
|
||||
</graphicData>
|
||||
<projectile>
|
||||
<damageDef>AcidBurn</damageDef>
|
||||
<speed>25</speed>
|
||||
<damageAmountBase>18</damageAmountBase>
|
||||
<arcHeightFactor>0.4</arcHeightFactor>
|
||||
<armorPenetrationBase>0.1</armorPenetrationBase>
|
||||
<stoppingPower>1</stoppingPower>
|
||||
<shadowSize>0</shadowSize>
|
||||
<spawnTerrain>InsectSludge</spawnTerrain>
|
||||
<terrainChance>0.75</terrainChance>
|
||||
<filth>Filth_Slime</filth>
|
||||
<filthCount>1</filthCount>
|
||||
<filthChance>0.25</filthChance>
|
||||
</projectile>
|
||||
</ThingDef>
|
||||
<ThingDef ParentName="BaseGrenadeProjectile">
|
||||
<defName>ARA_Proj_EggSac</defName>
|
||||
<label>egg sac</label>
|
||||
<thingClass>Projectile_SpawnsThing</thingClass>
|
||||
<graphicData>
|
||||
<texPath>Things/Projectile/EggSac</texPath>
|
||||
<graphicClass>Graphic_Random</graphicClass>
|
||||
</graphicData>
|
||||
<projectile>
|
||||
<damageDef>Bullet</damageDef>
|
||||
<speed>21</speed>
|
||||
<damageAmountBase>0</damageAmountBase>
|
||||
<spawnsThingDef>EggSac</spawnsThingDef>
|
||||
<tryAdjacentFreeSpaces>true</tryAdjacentFreeSpaces>
|
||||
</projectile>
|
||||
</ThingDef>
|
||||
|
||||
</Defs>
|
||||
28
1.6/1.6/Defs/HeadType_Defs/ARA_HeadTypeDefs.xml
Normal file
28
1.6/1.6/Defs/HeadType_Defs/ARA_HeadTypeDefs.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Defs>
|
||||
|
||||
<!-- Bases -->
|
||||
|
||||
<HeadTypeDef ParentName="AverageBase" Name="ARA_HeadtypeBase" Abstract="True">
|
||||
</HeadTypeDef>
|
||||
|
||||
<HeadTypeDef ParentName="ARA_HeadtypeBase" Name="ARA_MaleHeadtypeBase" Abstract="True">
|
||||
<gender>Male</gender>
|
||||
</HeadTypeDef>
|
||||
|
||||
<HeadTypeDef ParentName="ARA_HeadtypeBase" Name="ARA_FemaleHeadtypeBase" Abstract="True">
|
||||
<gender>Female</gender>
|
||||
</HeadTypeDef>
|
||||
|
||||
<HeadTypeDef ParentName="ARA_MaleHeadtypeBase">
|
||||
<defName>ARA_QUEEN_Male_AverageNormalA</defName>
|
||||
<graphicPath>Pawns/General/Invisible/Inv</graphicPath>
|
||||
</HeadTypeDef>
|
||||
|
||||
<HeadTypeDef ParentName="ARA_FemaleHeadtypeBase">
|
||||
<defName>ARA_QUEEN_Female_AverageNormalA</defName>
|
||||
<graphicPath>Pawns/General/Invisible/Inv</graphicPath>
|
||||
</HeadTypeDef>
|
||||
|
||||
|
||||
</Defs>
|
||||
74
1.6/1.6/Defs/PawnKindDef/ARA_PawnKinds.xml
Normal file
74
1.6/1.6/Defs/PawnKindDef/ARA_PawnKinds.xml
Normal file
@@ -0,0 +1,74 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Defs>
|
||||
|
||||
<PawnKindDef Name="ArachnaeQueenBasePawnKind" Abstract="True">
|
||||
<race>ArachnaeQueen_Race</race>
|
||||
<combatPower>30</combatPower>
|
||||
<isFighter>true</isFighter>
|
||||
<trader>false</trader>
|
||||
<chemicalAddictionChance>0</chemicalAddictionChance>
|
||||
<apparelIgnoreSeasons>true</apparelIgnoreSeasons>
|
||||
<forceNormalGearQuality>true</forceNormalGearQuality>
|
||||
<initialWillRange>2~40</initialWillRange>
|
||||
<initialResistanceRange>2~40</initialResistanceRange>
|
||||
<maxGenerationAge>30</maxGenerationAge>
|
||||
<!-- <minGenerationAge>4</minGenerationAge> -->
|
||||
<canBeScattered>false</canBeScattered>
|
||||
<abilities>
|
||||
<li>ARA_EggSpew</li>
|
||||
</abilities>
|
||||
<xenotypeSet>
|
||||
<xenotypeChances>
|
||||
|
||||
<Baseliner MayRequire="Ludeon.RimWorld.Biotech">0</Baseliner>
|
||||
|
||||
<Dirtmole MayRequire="Ludeon.RimWorld.Biotech">0</Dirtmole>
|
||||
<Genie MayRequire="Ludeon.RimWorld.Biotech">0</Genie>
|
||||
<Hussar MayRequire="Ludeon.RimWorld.Biotech">0</Hussar>
|
||||
<Sanguophage MayRequire="Ludeon.RimWorld.Biotech">0</Sanguophage>
|
||||
<Neanderthal MayRequire="Ludeon.RimWorld.Biotech">0</Neanderthal>
|
||||
<Pigskin MayRequire="Ludeon.RimWorld.Biotech">0</Pigskin>
|
||||
<Impid MayRequire="Ludeon.RimWorld.Biotech">0</Impid>
|
||||
<Waster MayRequire="Ludeon.RimWorld.Biotech">0</Waster>
|
||||
<Yttakin MayRequire="Ludeon.RimWorld.Biotech">0</Yttakin>
|
||||
<Highmate MayRequire="Ludeon.RimWorld.Biotech">0</Highmate>
|
||||
</xenotypeChances>
|
||||
</xenotypeSet>
|
||||
<useFactionXenotypes>false</useFactionXenotypes>
|
||||
<requiredWorkTags>
|
||||
<li>Violent</li>
|
||||
</requiredWorkTags>
|
||||
<startingHediffs>
|
||||
</startingHediffs>
|
||||
<!--<lifeStages>
|
||||
<li>
|
||||
<bodyGraphicData>
|
||||
<texPath>Things/Pawn/Insect/HiveQueen/HiveQueen</texPath>
|
||||
<drawSize>4</drawSize>
|
||||
</bodyGraphicData>
|
||||
<dessicatedBodyGraphicData>
|
||||
<texPath>Things/Pawn/Insect/HiveQueen/Dessicated_HiveQueen</texPath>
|
||||
<drawSize>4</drawSize>
|
||||
</dessicatedBodyGraphicData>
|
||||
</li>
|
||||
</lifeStages>-->
|
||||
</PawnKindDef>
|
||||
|
||||
<PawnKindDef Name="ArachnaeQueen_Colonist" ParentName="ArachnaeQueenBasePawnKind">
|
||||
<defName>ARA_ArachnaeQueen</defName>
|
||||
<label>阿拉克涅女皇种</label>
|
||||
<defaultFactionType>PlayerColony</defaultFactionType>
|
||||
<invNutrition>2.55</invNutrition>
|
||||
<backstoryFiltersOverride>
|
||||
<li>
|
||||
<categories>
|
||||
<li>ArachnaeQueen_spawnCategoriesA</li>
|
||||
<li>ArachnaeQueen_spawnCategoriesB</li>
|
||||
</categories>
|
||||
</li>
|
||||
</backstoryFiltersOverride>
|
||||
<apparelTags>
|
||||
</apparelTags>
|
||||
<apparelMoney>0</apparelMoney>
|
||||
</PawnKindDef>
|
||||
</Defs>
|
||||
@@ -48,7 +48,7 @@
|
||||
<lifeExpectancy>75</lifeExpectancy>
|
||||
<trainability>Advanced</trainability>
|
||||
<specialTrainables>
|
||||
<li>EggSpew</li>
|
||||
<li>ARA_EggSpew</li>
|
||||
</specialTrainables>
|
||||
<manhunterOnDamageChance>1</manhunterOnDamageChance>
|
||||
<manhunterOnTameFailChance>1</manhunterOnTameFailChance>
|
||||
@@ -68,7 +68,7 @@
|
||||
<comps>
|
||||
<li Class="CompProperties_SpreadSludge">
|
||||
<mtbTicks>15000</mtbTicks>
|
||||
<abilityDef>EggSpew</abilityDef>
|
||||
<abilityDef>ARA_EggSpew</abilityDef>
|
||||
</li>
|
||||
<li Class="CompProperties_LetterOnRevealed">
|
||||
<label>Hive queen</label>
|
||||
@@ -94,7 +94,7 @@
|
||||
<canBeScattered>false</canBeScattered>
|
||||
<isBoss>true</isBoss>
|
||||
<abilities>
|
||||
<li>EggSpew</li>
|
||||
<li>ARA_EggSpew</li>
|
||||
</abilities>
|
||||
<lifeStages>
|
||||
<li>
|
||||
649
1.6/1.6/Defs/ThingDef_Races/ARA_RaceDefBase.xml
Normal file
649
1.6/1.6/Defs/ThingDef_Races/ARA_RaceDefBase.xml
Normal file
@@ -0,0 +1,649 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Defs>
|
||||
<ThingDef Name="Arachnae_PawnBase" ParentName="BasePawn" Abstract="True">
|
||||
<butcherProducts>
|
||||
</butcherProducts>
|
||||
<race>
|
||||
<canBecomeShambler>true</canBecomeShambler>
|
||||
<knowledgeCategory MayRequire="Ludeon.RimWorld.Anomaly">Basic</knowledgeCategory>
|
||||
<anomalyKnowledge>3</anomalyKnowledge>
|
||||
</race>
|
||||
<comps>
|
||||
<li MayRequire="Ludeon.RimWorld.Anomaly" Class="CompProperties_HoldingPlatformTarget">
|
||||
<baseEscapeIntervalMtbDays>8</baseEscapeIntervalMtbDays>
|
||||
<getsColdContainmentBonus>true</getsColdContainmentBonus>
|
||||
</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Anomaly" Class="CompProperties_Studiable">
|
||||
<frequencyTicks>120000</frequencyTicks>
|
||||
<minMonolithLevelForStudy>1</minMonolithLevelForStudy>
|
||||
<requiresImprisonment>true</requiresImprisonment>
|
||||
</li>
|
||||
</comps>
|
||||
<statBases>
|
||||
<MinimumContainmentStrength MayRequire="Ludeon.RimWorld.Anomaly">120</MinimumContainmentStrength>
|
||||
</statBases>
|
||||
</ThingDef>
|
||||
|
||||
<AlienRace.ThingDef_AlienRace ParentName="Arachnae_PawnBase" Name="ArachnaeQueenBase">
|
||||
<damageMultipliers>
|
||||
<!--<li>
|
||||
<damageDef>TornadoScratch</damageDef>
|
||||
<multiplier>0</multiplier>
|
||||
</li>-->
|
||||
</damageMultipliers>
|
||||
<comps>
|
||||
<li Class="CompProperties_SpreadSludge">
|
||||
<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>ArachnaeQueen</label>
|
||||
<description>总之是阿拉克涅女皇原型机咯</description>
|
||||
<alienRace>
|
||||
<generalSettings>
|
||||
<reproduction>
|
||||
<childKindDef>ARA_ArachnaeQueen</childKindDef>
|
||||
<femaleFertilityAgeFactor>
|
||||
<points>
|
||||
<li>(1, 1)</li>
|
||||
<li>(9999, 1)</li>
|
||||
</points>
|
||||
</femaleFertilityAgeFactor>
|
||||
<maleFertilityAgeFactor>
|
||||
<points>
|
||||
<li>(1, 1)</li>
|
||||
<li>(9999, 1)</li>
|
||||
</points>
|
||||
</maleFertilityAgeFactor>
|
||||
</reproduction>
|
||||
<newbornBackstoryFilter>
|
||||
<li>
|
||||
<categories>
|
||||
<li>ArachnaeQueen_spawnCategoriesA</li>
|
||||
<li>ArachnaeQueen_spawnCategoriesB</li>
|
||||
</categories>
|
||||
<commonality>1</commonality>
|
||||
</li>
|
||||
</newbornBackstoryFilter>
|
||||
|
||||
<childBackstoryFilter>
|
||||
<li>
|
||||
<categories>
|
||||
<li>ArachnaeQueen_spawnCategoriesA</li>
|
||||
<li>ArachnaeQueen_spawnCategoriesB</li>
|
||||
</categories>
|
||||
<commonality>1</commonality>
|
||||
</li>
|
||||
</childBackstoryFilter>
|
||||
|
||||
<adultBackstoryFilter>
|
||||
<li>
|
||||
<categories>
|
||||
<li>ArachnaeQueen_spawnCategoriesA</li>
|
||||
<li>ArachnaeQueen_spawnCategoriesB</li>
|
||||
</categories>
|
||||
<commonality>1</commonality>
|
||||
</li>
|
||||
</adultBackstoryFilter>
|
||||
|
||||
<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> <!-- 인간이 사용하는 수술 사용 -->
|
||||
<canLayDown>true</canLayDown>
|
||||
<maxDamageForSocialfight>25</maxDamageForSocialfight> <!-- 사교적 싸움 최대 데미지 -->
|
||||
<immuneToXenophobia>true</immuneToXenophobia> <!-- 이종족 혐오 대상 -->
|
||||
<minAgeForAdulthood>6</minAgeForAdulthood> <!-- 성년기 백스토리 조건 나이 -->
|
||||
|
||||
<disallowedTraits>
|
||||
<li>
|
||||
<defName>DrugDesire</defName>
|
||||
<chance>100</chance>
|
||||
</li>
|
||||
<li>
|
||||
<defName>Nerves</defName>
|
||||
<chance>100</chance>
|
||||
</li>
|
||||
<li>
|
||||
<defName>Neurotic</defName>
|
||||
<chance>100</chance>
|
||||
</li>
|
||||
<li>
|
||||
<defName>Industriousness</defName>
|
||||
<chance>100</chance>
|
||||
</li>
|
||||
<li>
|
||||
<defName>ShootingAccuracy</defName>
|
||||
<chance>100</chance>
|
||||
</li>
|
||||
<li>
|
||||
<defName>Bloodlust</defName>
|
||||
<chance>100</chance>
|
||||
</li>
|
||||
<li>
|
||||
<defName>Abrasive</defName>
|
||||
<chance>100</chance>
|
||||
</li>
|
||||
<li>
|
||||
<defName>TooSmart</defName>
|
||||
<chance>100</chance>
|
||||
</li>
|
||||
<li>
|
||||
<defName>Greedy</defName>
|
||||
<chance>100</chance>
|
||||
</li>
|
||||
<li>
|
||||
<defName>Jealous</defName>
|
||||
<chance>100</chance>
|
||||
</li>
|
||||
<li>
|
||||
<defName>Ascetic</defName>
|
||||
<chance>100</chance>
|
||||
</li>
|
||||
<li>
|
||||
<defName>Pyromaniac</defName>
|
||||
<chance>100</chance>
|
||||
</li>
|
||||
<li>
|
||||
<defName>Transhumanist</defName>
|
||||
<chance>100</chance>
|
||||
</li>
|
||||
<li>
|
||||
<defName>BodyPurist</defName>
|
||||
<chance>100</chance>
|
||||
</li>
|
||||
<li>
|
||||
<defName>DislikesMen</defName>
|
||||
<chance>100</chance>
|
||||
</li>
|
||||
<li>
|
||||
<defName>DislikesWomen</defName>
|
||||
<chance>100</chance>
|
||||
</li>
|
||||
</disallowedTraits>
|
||||
<forcedRaceTraitEntries>
|
||||
<li>
|
||||
<options>
|
||||
<li>
|
||||
<defName Degree="1">Beauty</defName>
|
||||
</li>
|
||||
<li>
|
||||
<defName Degree="2">Beauty</defName>
|
||||
</li>
|
||||
</options>
|
||||
<count>1</count>
|
||||
<chance>100</chance>
|
||||
</li>
|
||||
<li>
|
||||
<defName Degree="2">NaturalMood</defName>
|
||||
<chance>100</chance>
|
||||
<commonalityMale>0</commonalityMale>
|
||||
<commonalityFemale>100</commonalityFemale>
|
||||
</li>
|
||||
</forcedRaceTraitEntries>
|
||||
|
||||
<alienPartGenerator>
|
||||
<borderScale>1</borderScale> <!-- 그림이 표시되는 범위 크기 -->
|
||||
<atlasScale>4</atlasScale> <!-- 화질 -->
|
||||
<headTypes> <!--머리-->
|
||||
<li>ARA_QUEEN_Female_AverageNormalA</li>
|
||||
</headTypes> <!--머리-->
|
||||
|
||||
<bodyTypes> <!--몸-->
|
||||
<!-- <li>Thin</li>
|
||||
<li>Male</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Child</li> -->
|
||||
</bodyTypes> <!--몸-->
|
||||
|
||||
<!-- <useGenderedHeads>false</useGenderedHeads> --> <!--성별머리-->
|
||||
<!-- <useGenderedBodies>false</useGenderedBodies> --> <!--성별몸-->
|
||||
|
||||
<customDrawSize>(1,1)</customDrawSize> <!--전체크기-->
|
||||
<customHeadDrawSize>(1,1)</customHeadDrawSize> <!--머리크기-->
|
||||
<customPortraitDrawSize>(1,1)</customPortraitDrawSize> <!--초상화크기-->
|
||||
<headOffset>(0,0)</headOffset>
|
||||
<headOffsetDirectional>
|
||||
<north>
|
||||
<offset>(0, -0.125)</offset>
|
||||
</north>
|
||||
<south>
|
||||
<offset>(0, -0.125)</offset>
|
||||
</south>
|
||||
<east>
|
||||
<offset>(0, -0.125)</offset>
|
||||
<bodyTypes>
|
||||
<Thin>(-0.1, 0)</Thin>
|
||||
<Child MayRequire="Ludeon.RimWorld.Biotech">(-0.055,0)</Child>
|
||||
</bodyTypes>
|
||||
</east>
|
||||
<west>
|
||||
<offset>(0, -0.125)</offset>
|
||||
<bodyTypes>
|
||||
<Thin>(0.1, 0)</Thin>
|
||||
<Child MayRequire="Ludeon.RimWorld.Biotech">(0.055,0)</Child>
|
||||
</bodyTypes>
|
||||
</west>
|
||||
</headOffsetDirectional>
|
||||
|
||||
<oldHairAgeRange>65.0~85.0</oldHairAgeRange>
|
||||
|
||||
<colorChannels Inherit="False"> <!--색-->
|
||||
<li>
|
||||
<name>skin</name>
|
||||
<first Class="ColorGenerator_Options">
|
||||
<options>
|
||||
<li>
|
||||
<weight>100</weight>
|
||||
<only>(255,240,234)</only>
|
||||
</li>
|
||||
</options>
|
||||
</first>
|
||||
<second Class="AlienRace.ColorGenerator_CustomAlienChannel">
|
||||
<colorChannel>skin_1</colorChannel>
|
||||
</second>
|
||||
</li>
|
||||
<li> <!--헤어컬러-->
|
||||
<name>hair</name>
|
||||
<first Class="ColorGenerator_Options">
|
||||
<options>
|
||||
<li>
|
||||
<weight>100</weight>
|
||||
<only>(255,255,255)</only>
|
||||
</li>
|
||||
</options>
|
||||
</first>
|
||||
<second Class="ColorGenerator_Single">
|
||||
<color>(35, 20, 120)</color>
|
||||
</second>
|
||||
</li>
|
||||
</colorChannels> <!--색-->
|
||||
<bodyAddons> <!-- 몸부착물 -->
|
||||
<!--헤어윗레이어-->
|
||||
|
||||
</bodyAddons>
|
||||
</alienPartGenerator>
|
||||
</generalSettings>
|
||||
|
||||
<graphicPaths> <!-- 텍스쳐 -->
|
||||
<skinColor>(1,1,1,1)</skinColor>
|
||||
<skinShader>Cutout</skinShader>
|
||||
<head>
|
||||
<path>Pawns/General/Invisible/Inv</path>
|
||||
<extendedGraphics>
|
||||
</extendedGraphics>
|
||||
</head>
|
||||
<body>
|
||||
<path>Things/Pawn/Insect/HiveQueen/HiveQueen</path>
|
||||
|
||||
<extendedGraphics>
|
||||
</extendedGraphics>
|
||||
</body>
|
||||
<skeleton>Things/Pawn/Insect/HiveQueen/Dessicated_HiveQueen</skeleton>
|
||||
<!--<stump>Dragonian/Dragonianlike/Stump/DR_Stump</stump>-->
|
||||
|
||||
<!--<apparel>
|
||||
<bodyTypeFallback>Male</bodyTypeFallback>
|
||||
<femaleBodyTypeFallback>Thin</femaleBodyTypeFallback>
|
||||
</apparel>-->
|
||||
</graphicPaths> <!-- 텍스쳐 -->
|
||||
|
||||
<styleSettings>
|
||||
<li>
|
||||
<key>HairDef</key>
|
||||
<value>
|
||||
<hasStyle>false</hasStyle>
|
||||
</value>
|
||||
</li>
|
||||
<li>
|
||||
<key>BeardDef</key>
|
||||
<value>
|
||||
<hasStyle>false</hasStyle>
|
||||
</value>
|
||||
</li>
|
||||
<li>
|
||||
<key>TattooDef</key>
|
||||
<value>
|
||||
<hasStyle>false</hasStyle>
|
||||
</value>
|
||||
</li>
|
||||
</styleSettings>
|
||||
|
||||
<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> <!-- 관계 -->
|
||||
|
||||
<raceRestriction> <!-- 종족제한 -->
|
||||
<onlyUseRaceRestrictedApparel>true</onlyUseRaceRestrictedApparel> <!-- 종족옷제한설정 -->
|
||||
|
||||
<apparelList> <!-- 옷 -->
|
||||
</apparelList> <!-- 옷 -->
|
||||
|
||||
<whiteApparelList>
|
||||
</whiteApparelList>
|
||||
|
||||
<buildingList> <!-- 건물 -->
|
||||
</buildingList> <!-- 건물 -->
|
||||
|
||||
<weaponList> <!-- 무기 -->
|
||||
</weaponList> <!-- 무기 -->
|
||||
|
||||
<researchList> <!-- 연구 -->
|
||||
</researchList> <!-- 연구 -->
|
||||
|
||||
<recipeList> <!-- 제작 -->
|
||||
</recipeList> <!-- 제작 -->
|
||||
|
||||
<traitList> <!-- 특성 -->
|
||||
</traitList> <!-- 특성 -->
|
||||
|
||||
<plantList> <!-- 식물 -->
|
||||
</plantList> <!-- 식물 -->
|
||||
|
||||
<foodList>
|
||||
</foodList>
|
||||
|
||||
<blackEndoCategories>
|
||||
<li>Melanin</li>
|
||||
<li>HairColor</li>
|
||||
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">BodyType</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Ears</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Nose</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Voice</li>
|
||||
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Headbone</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Head</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Jaw</li>
|
||||
</blackEndoCategories>
|
||||
|
||||
<blackGeneList>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Furskin</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Brow_Heavy</li>
|
||||
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Hair_BaldOnly</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Beard_Always</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">FacialRidges</li>
|
||||
</blackGeneList>
|
||||
|
||||
<blackGeneTags>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">EyeColor</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Tail</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">BeardStyle</li>
|
||||
<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>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Genie</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Hussar</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Sanguophage</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Neanderthal</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Pigskin</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Impid</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Waster</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Yttakin</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Highmate</li>
|
||||
|
||||
<li MayRequire="Ludeon.RimWorld.Odyssey">Starjack</li>
|
||||
</blackXenotypeList>
|
||||
|
||||
<onlyUseRaceRestrictedXenotypes>true</onlyUseRaceRestrictedXenotypes> <!-- asd -->
|
||||
|
||||
</raceRestriction>
|
||||
<thoughtSettings>
|
||||
<cannotReceiveThoughts>
|
||||
<li>Naked</li>
|
||||
<li>ApparelDamaged</li>
|
||||
<li>ProsthophileHappy</li>
|
||||
<li>ProsthophobeUnhappy</li>
|
||||
<li>BrawlerUnhappy</li>
|
||||
<li>PyromaniacHappy</li>
|
||||
<li>Greedy</li>
|
||||
<li>Jealous</li>
|
||||
<li>SharedBed</li>
|
||||
<li>AteWithoutTable</li>
|
||||
<li>SleptOutside</li>
|
||||
<li>SleptOnGround</li>
|
||||
<li>SleptInCold</li>
|
||||
<li>SleptInHeat</li>
|
||||
<li>Ugly</li>
|
||||
<!-- 식성 -->
|
||||
<li>AteKibble</li>
|
||||
<li>AteInsectMeatDirect</li>
|
||||
<li>AteInsectMeatAsIngredient</li>
|
||||
<li>AteRawFood</li>
|
||||
<li>AteHumanlikeMeatDirect</li>
|
||||
<li>AteHumanlikeMeatAsIngredient</li>
|
||||
<li>KnowButcheredHumanlikeCorpse</li>
|
||||
<li>ButcheredHumanlikeCorpseOpinion</li>
|
||||
<li>AteRawHumanlikeMeat</li>
|
||||
</cannotReceiveThoughts>
|
||||
</thoughtSettings>
|
||||
</alienRace>
|
||||
|
||||
<statBases> <!-- 능력치 -->
|
||||
<MarketValue>2000</MarketValue> <!-- 가격 -->
|
||||
<RoyalFavorValue>5</RoyalFavorValue>
|
||||
|
||||
<MoveSpeed>3.4</MoveSpeed> <!-- 이속 -->
|
||||
<Mass>80</Mass> <!-- 무게 -->
|
||||
|
||||
<ComfyTemperatureMax>45</ComfyTemperatureMax> <!-- 편한최대온도 -->
|
||||
<ComfyTemperatureMin>-45</ComfyTemperatureMin> <!-- 편한최소온도 -->
|
||||
|
||||
<RestRateMultiplier>1</RestRateMultiplier> <!-- 잠 -->
|
||||
<!-- <HungerRateMultiplier>1</HungerRateMultiplier> --> <!-- 허기 -->
|
||||
<EatingSpeed>1.25</EatingSpeed> <!-- 먹는속도 -->
|
||||
<MaxNutrition>2.3</MaxNutrition>
|
||||
|
||||
<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> <!-- 가연성 -->
|
||||
|
||||
<MeleeDodgeChance>1.2</MeleeDodgeChance> <!-- 근접회피확률 -->
|
||||
<MeleeHitChance>1</MeleeHitChance> <!-- 근접적중확률 -->
|
||||
|
||||
<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> <!-- 능력치 -->
|
||||
|
||||
<tools>
|
||||
<li>
|
||||
<label>head claw</label>
|
||||
<capacities>
|
||||
<li>Cut</li>
|
||||
</capacities>
|
||||
<power>30</power>
|
||||
<cooldownTime>2.6</cooldownTime>
|
||||
<linkedBodyPartsGroup>HeadClaw</linkedBodyPartsGroup>
|
||||
</li>
|
||||
<li>
|
||||
<label>head</label>
|
||||
<capacities>
|
||||
<li>Blunt</li>
|
||||
</capacities>
|
||||
<power>14</power>
|
||||
<cooldownTime>2</cooldownTime>
|
||||
<linkedBodyPartsGroup>HeadAttackTool</linkedBodyPartsGroup>
|
||||
<ensureLinkedBodyPartsGroupAlwaysUsable>true</ensureLinkedBodyPartsGroupAlwaysUsable>
|
||||
<chanceFactor>0.2</chanceFactor>
|
||||
</li>
|
||||
</tools>
|
||||
|
||||
<race>
|
||||
<thinkTreeMain>Humanlike</thinkTreeMain>
|
||||
<thinkTreeConstant>HumanlikeConstant</thinkTreeConstant>
|
||||
<intelligence>Humanlike</intelligence>
|
||||
<makesFootprints>true</makesFootprints>
|
||||
<lifeExpectancy>850</lifeExpectancy> <!-- 수명 -->
|
||||
<leatherDef>Leather_Light</leatherDef> <!-- 가죽 -->
|
||||
<nameCategory>HumanStandard</nameCategory>
|
||||
<bloodDef>Filth_Blood</bloodDef> <!-- 피 -->
|
||||
<bloodSmearDef>Filth_BloodSmear</bloodSmearDef>
|
||||
<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> <!-- 고기 가격비율 -->
|
||||
<manhunterOnDamageChance>1</manhunterOnDamageChance>
|
||||
<manhunterOnTameFailChance>1</manhunterOnTameFailChance> <!-- 조련실패시 받을시 반격확률 -->
|
||||
<renderTree>Humanlike</renderTree>
|
||||
<fleshType>Normal</fleshType>
|
||||
<hasUnnaturalCorpse>false</hasUnnaturalCorpse>
|
||||
<lifeExpectancy>75</lifeExpectancy>
|
||||
<trainability>Advanced</trainability>
|
||||
<specialTrainables>
|
||||
<li>ARA_EggSpew</li>
|
||||
</specialTrainables>
|
||||
<litterSizeCurve> <!-- 번식 수 비율 -->
|
||||
<points>
|
||||
<li>(0.5, 0)</li>
|
||||
<li>(1, 1)</li>
|
||||
<li>(1.01, 0.02)</li>
|
||||
<li>(3.5, 0)</li>
|
||||
</points>
|
||||
</litterSizeCurve>
|
||||
<lifeStageAges>
|
||||
<li>
|
||||
<def>EusocialInsectAdult</def>
|
||||
<soundWounded>Pawn_HiveQueen_Wounded</soundWounded>
|
||||
<soundDeath>Pawn_HiveQueen_Death</soundDeath>
|
||||
<soundCall>Pawn_HiveQueen_Call</soundCall>
|
||||
<soundAngry>Pawn_HiveQueen_Angry</soundAngry>
|
||||
</li>
|
||||
</lifeStageAges>
|
||||
<lifeStageWorkSettings MayRequire="Ludeon.RimWorld.Biotech">
|
||||
<Firefighter>7</Firefighter>
|
||||
<Patient>0</Patient>
|
||||
<Doctor>10</Doctor>
|
||||
<PatientBedRest>0</PatientBedRest>
|
||||
<Childcare MayRequire="Ludeon.RimWorld.Biotech">0</Childcare>
|
||||
<BasicWorker>0</BasicWorker>
|
||||
<Warden>10</Warden>
|
||||
<Handling>7</Handling>
|
||||
<Cooking>7</Cooking>
|
||||
<Hunting>7</Hunting>
|
||||
<Construction>10</Construction>
|
||||
<Growing>7</Growing>
|
||||
<Mining>7</Mining>
|
||||
<PlantCutting>7</PlantCutting>
|
||||
<Smithing>13</Smithing>
|
||||
<Tailoring>7</Tailoring>
|
||||
<Art>10</Art>
|
||||
<Crafting>7</Crafting>
|
||||
<Hauling>0</Hauling>
|
||||
<Cleaning>0</Cleaning>
|
||||
<Research>13</Research>
|
||||
<DarkStudy MayRequire="Ludeon.RimWorld.Anomaly">13</DarkStudy>
|
||||
</lifeStageWorkSettings>
|
||||
<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> <!-- 생성시 나이 비율 -->
|
||||
<points>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">(0,0)</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">(0.001,43)</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">(1,86)</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">(8,86)</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">(12.5,118)</li> <!-- Exclude 12.5-13 years to avoid spawning pawns who are very close to becoming adults -->
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">(12.51,0)</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">(13,0)</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">(13.001,122)</li> <!-- End exclude -->
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">(13.999,130)</li>
|
||||
<li>(14,0)</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">(14.001,130)</li>
|
||||
<li>(16,55)</li>
|
||||
<li>(18,100)</li>
|
||||
<li>(20,100)</li>
|
||||
<li>(50,20)</li>
|
||||
<li>(60,30)</li>
|
||||
<li>(70,18)</li>
|
||||
<li>(80,10)</li>
|
||||
<li>(90,3)</li>
|
||||
<li>(100,0)</li>
|
||||
</points>
|
||||
</ageGenerationCurve>
|
||||
<hediffGiverSets> <!-- 상황별 건강상태 부여 -->
|
||||
<li>OrganicStandard</li>
|
||||
<li>Human</li>
|
||||
</hediffGiverSets>
|
||||
</race>
|
||||
|
||||
<recipes>
|
||||
<li>ExciseCarcinoma</li>
|
||||
<li>AdministerMechSerumHealer</li>
|
||||
<li>RemoveBodyPart</li>
|
||||
<li>Euthanize</li>
|
||||
<li>Anesthetize</li>
|
||||
<li>CureScaria</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Royalty">CureBloodRot</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Royalty">CureAbasia</li>
|
||||
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">Vasectomy</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">ReverseVasectomy</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">TubalLigation</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">ExtractOvum</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">ExtractHemogenPack</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">BloodTransfusion</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">ImplantXenogerm</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">ImplantIUD</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">RemoveIUD</li>
|
||||
<li MayRequire="Ludeon.RimWorld.Biotech">TerminatePregnancy</li>
|
||||
</recipes> <!-- 수술 -->
|
||||
</AlienRace.ThingDef_AlienRace>
|
||||
|
||||
|
||||
</Defs>
|
||||
BIN
Content/Textures/Pawns/General/Invisible/Inv_east.png
Normal file
BIN
Content/Textures/Pawns/General/Invisible/Inv_east.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 117 B |
BIN
Content/Textures/Pawns/General/Invisible/Inv_north.png
Normal file
BIN
Content/Textures/Pawns/General/Invisible/Inv_north.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 121 B |
BIN
Content/Textures/Pawns/General/Invisible/Inv_south.png
Normal file
BIN
Content/Textures/Pawns/General/Invisible/Inv_south.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 122 B |
Binary file not shown.
|
After Width: | Height: | Size: 117 B |
Binary file not shown.
|
After Width: | Height: | Size: 117 B |
Binary file not shown.
|
After Width: | Height: | Size: 117 B |
Reference in New Issue
Block a user