rimworld-overzealous/Defs/TraitDefs/Overzealous.xml

87 lines
2.6 KiB
XML
Raw Permalink Normal View History

2024-06-01 14:35:31 +02:00
<?xml version="1.0" encoding="utf-8" ?>
2024-06-01 14:56:37 +02:00
<Defs>
2024-06-01 14:35:31 +02:00
<!-- Traits are permanent characteristics of pawns which make them unique. A pawn can have several traits -->
<TraitDef>
<defName>OverzealousTrait</defName>
<!-- Desired defName for referencing and using the trait -->
<commonality>0</commonality>
<!-- How likely a pawn is to receive this trait during random generation. Usually a number between 0 (never spawns) and 2 (more likely to spawn) -->
<degreeDatas>
<!-- Trait properties. This includes everything the trait actively influences -->
<li>
<label>Overzealous</label>
<!-- This is what the trait will be called in-game (during generation, in the "Character" tab etc.) -->
2024-06-01 15:32:24 +02:00
<description>[PAWN_nameDef] is special, [PAWN_possessive] has unnatural powers beyond imagination.</description>
2024-06-01 14:35:31 +02:00
<!-- Long-form description. Tip: You can use the following keywords (must be written in capital letters):
NAME (= pawn name)
HE (= he, she)
HECAP (= He, She)
HIM (= him, her)
HIS (= his, her)
HISCAP (= His, Her) -->
<statOffsets>
<!-- Optional. Modifies pawn stats by value. Negative numbers decrease the stat, positive numbers increase it -->
<SocialImpact>5</SocialImpact>
<WorkSpeedGlobal>5</WorkSpeedGlobal>
<!-- Available vanilla defNames:
AimingDelayFactor
BrewingSpeed
ButcheryFleshEfficiency
ButcheryFleshSpeed
ButcheryMechanoidEfficiency
ButcheryMechanoidSpeed
CarryingCapacity
ComfyTemperatureMax
ComfyTemperatureMin
ConstructFailChance
ConstructionSpeed
CookSpeed
DrugProductionSpeed
EatingSpeed
FixBrokenDownBuildingFailChance
FoodPoisonChance
GiftImpact
GlobalLearningFactor
HarvestFailChance
HealingSpeed
ImmunityGainSpeed
ImmunityGainSpeedFactor
MeatAmount
MedicalOperationSpeed
MeleeDPS
MeleeHitChance
MentalBreakThreshold
MiningSpeed
MoveSpeed
PlantWorkSpeed
PsychicSensitivity
RecruitPrisonerChance
ResearchSpeed
ResearchSpeedFactor
SculptingSpeed
ShootingAccuracy
SmeltingSpeed
SmithingSpeed
SmoothingSpeed
SocialImpact
StonecuttingSpeed
SurgerySuccessChance
TailoringSpeed
TameAnimalChance
ToxicSensitivity
TradePriceImprovement
TrainAnimalChance
WorkSpeedGlobal -->
</statOffsets>
<skillGains>
</skillGains>
<socialFightChanceFactor>0.3</socialFightChanceFactor>
<!-- Optional. Defaults to 1. Multiplier for the pawn's likelihood of starting a social fight with another pawn -->
</li>
</degreeDatas>
</TraitDef>
2024-06-01 14:56:37 +02:00
</Defs>