mirror of
https://gitgud.io/amevarashi/rjw-sexperience-ideology.git
synced 2026-06-18 11:16:04 +00:00
Compare commits
39 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a8a17fe5c2 | ||
|
|
4f4459c576 | ||
|
|
a94066961e | ||
|
|
d1629669e8 | ||
|
|
70b993da44 | ||
|
|
723ab5f55c | ||
|
|
2bbc4dac79 | ||
|
|
29a4f166a6 | ||
|
|
ade347aa6d | ||
|
|
aa138464df | ||
|
|
432e90da99 | ||
|
|
1948ada3cf | ||
|
|
9b6884b151 | ||
|
|
d9770dfc47 | ||
|
|
f6cee85c8b | ||
|
|
c624d2f418 | ||
|
|
e78b341cfb | ||
|
|
ca2bda44f2 | ||
|
|
0266d93a84 | ||
|
|
0b8759369d | ||
|
|
bb213e30e5 | ||
|
|
d02cd9a352 | ||
|
|
62b63f5675 | ||
|
|
d3380e5542 | ||
|
|
879022aabe | ||
|
|
a99df87592 | ||
|
|
627caa300b | ||
|
|
2403879ebe | ||
|
|
914f3bf216 | ||
|
|
1d4adfc558 | ||
|
|
38fecb126a | ||
|
|
0294af4ab5 | ||
|
|
b60a40b424 | ||
|
|
7ce85fcece | ||
|
|
bd78e6dbff | ||
|
|
8783a4b84b | ||
|
|
217b90dace | ||
|
|
255a8c53af | ||
|
|
0459c722ea |
148 changed files with 9926 additions and 752 deletions
|
|
@ -1,5 +1,5 @@
|
|||
# ### Specify the Docker image
|
||||
image: mcr.microsoft.com/dotnet/sdk:8.0-alpine
|
||||
image: mcr.microsoft.com/dotnet/sdk:10.0-alpine
|
||||
|
||||
# ### Define variables
|
||||
variables:
|
||||
|
|
@ -93,20 +93,20 @@ update_dev_package:
|
|||
|
||||
create_release:
|
||||
stage: deploy
|
||||
image: curlimages/curl:8.12.1
|
||||
image: registry.gitlab.com/gitlab-ci-utils/curl-jq
|
||||
cache: []
|
||||
rules:
|
||||
- if: $CI_COMMIT_TAG =~ /^[0-9].[0-9]+.[0-9].[0-9]+$/
|
||||
script:
|
||||
- 'RELEASE_DESCRIPTION=(sed -n "/## Version ${CI_COMMIT_TAG}/,/## Version/p" CHANGELOG.md | head --lines=-2)'
|
||||
- 'sed -n "/## Version ${CI_COMMIT_TAG}/,/## Version/p" CHANGELOG.md | head -n -2 > descr.txt'
|
||||
- 'sed -e "s/_TAG_/${CI_COMMIT_TAG}/g" ./Source/ReleaseTemplate.json > temp.json'
|
||||
- |
|
||||
sed -e "s/_TAG_/${CI_COMMIT_TAG}/g"
|
||||
-e "s/_DESCRIPTION_/${RELEASE_DESCRIPTION}/"
|
||||
./Source/ReleaseTemplate.json >> Release.json'
|
||||
jq --rawfile data descr.txt '.description = $data' temp.json > Release.json
|
||||
- |
|
||||
curl --header "Content-Type: application/json"
|
||||
--header "JOB-TOKEN: ${CI_JOB_TOKEN}"
|
||||
--data @Release.json"
|
||||
--request POST
|
||||
curl --header "Content-Type: application/json" \
|
||||
--header "JOB-TOKEN: ${CI_JOB_TOKEN}" \
|
||||
--data @Release.json \
|
||||
--request POST \
|
||||
"${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/releases"
|
||||
artifacts:
|
||||
paths:
|
||||
|
|
|
|||
BIN
1.6/Assemblies/RJWSexperience.Ideology.dll
Normal file
BIN
1.6/Assemblies/RJWSexperience.Ideology.dll
Normal file
Binary file not shown.
89
1.6/Defs/DutyDefs/Duties_Rituals_sex.xml
Normal file
89
1.6/Defs/DutyDefs/Duties_Rituals_sex.xml
Normal file
|
|
@ -0,0 +1,89 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Defs>
|
||||
<DutyDef>
|
||||
<defName>Gangbang_Rape</defName>
|
||||
<hook>HighPriority</hook>
|
||||
<socialModeMax>Off</socialModeMax>
|
||||
<thinkNode Class="ThinkNode_Priority">
|
||||
<subNodes>
|
||||
<li Class="ThinkNode_ConditionalInGatheringArea">
|
||||
<subNodes>
|
||||
<li Class="ThinkNode_ConditionalRandom">
|
||||
<chance>0.25</chance>
|
||||
<subNodes>
|
||||
<li Class="RJWSexperience.Ideology.JobGiver_GangbangVictim" />
|
||||
</subNodes>
|
||||
</li>
|
||||
</subNodes>
|
||||
</li>
|
||||
|
||||
<li Class="JobGiver_WanderInGatheringArea">
|
||||
<locomotionUrgency>Jog</locomotionUrgency>
|
||||
<ticksBetweenWandersRange>50~250</ticksBetweenWandersRange>
|
||||
</li>
|
||||
</subNodes>
|
||||
</thinkNode>
|
||||
</DutyDef>
|
||||
|
||||
<DutyDef>
|
||||
<defName>Gangbang_Consensual</defName>
|
||||
<hook>HighPriority</hook>
|
||||
<socialModeMax>Off</socialModeMax>
|
||||
<thinkNode Class="ThinkNode_Priority">
|
||||
<subNodes>
|
||||
<li Class="ThinkNode_ConditionalInGatheringArea">
|
||||
<subNodes>
|
||||
<li Class="ThinkNode_ConditionalRandom">
|
||||
<chance>0.25</chance>
|
||||
<subNodes>
|
||||
<li Class="RJWSexperience.Ideology.JobGiver_GangbangConsensual" />
|
||||
</subNodes>
|
||||
</li>
|
||||
</subNodes>
|
||||
</li>
|
||||
|
||||
<li Class="JobGiver_WanderInGatheringArea">
|
||||
<locomotionUrgency>Jog</locomotionUrgency>
|
||||
<ticksBetweenWandersRange>50~250</ticksBetweenWandersRange>
|
||||
</li>
|
||||
</subNodes>
|
||||
</thinkNode>
|
||||
</DutyDef>
|
||||
|
||||
<DutyDef>
|
||||
<defName>FuckVictim</defName>
|
||||
<hook>HighPriority</hook>
|
||||
<socialModeMax>Off</socialModeMax>
|
||||
<thinkNode Class="ThinkNode_Priority">
|
||||
<subNodes>
|
||||
<li Class="RJWSexperience.Ideology.JobGiver_GangbangVictim" />
|
||||
</subNodes>
|
||||
</thinkNode>
|
||||
</DutyDef>
|
||||
|
||||
<DutyDef>
|
||||
<defName>DrugOrgy</defName>
|
||||
<hook>HighPriority</hook>
|
||||
<socialModeMax>Off</socialModeMax>
|
||||
<thinkNode Class="ThinkNode_Priority">
|
||||
<subNodes>
|
||||
<li Class="ThinkNode_ConditionalInGatheringArea">
|
||||
<subNodes>
|
||||
<li Class="ThinkNode_ConditionalRandom">
|
||||
<chance>0.15</chance>
|
||||
<subNodes>
|
||||
<li Class="RJWSexperience.Ideology.JobGiver_DrugOrgy" />
|
||||
</subNodes>
|
||||
</li>
|
||||
</subNodes>
|
||||
</li>
|
||||
|
||||
<li Class="JobGiver_WanderInGatheringArea">
|
||||
<locomotionUrgency>Jog</locomotionUrgency>
|
||||
<ticksBetweenWandersRange>50~250</ticksBetweenWandersRange>
|
||||
</li>
|
||||
</subNodes>
|
||||
</thinkNode>
|
||||
</DutyDef>
|
||||
</Defs>
|
||||
50
1.6/Defs/Goodwill/MemeCompatibility_Sex.xml
Normal file
50
1.6/Defs/Goodwill/MemeCompatibility_Sex.xml
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Defs>
|
||||
<!-- Agreement - same -->
|
||||
|
||||
<GoodwillSituationDef>
|
||||
<defName>Zoophile_Zoophile</defName>
|
||||
<label>zoophile agreement</label>
|
||||
<workerClass>GoodwillSituationWorker_MemeCompatibility</workerClass>
|
||||
<meme>Zoophile</meme>
|
||||
<otherMeme>Zoophile</otherMeme>
|
||||
<naturalGoodwillOffset>30</naturalGoodwillOffset>
|
||||
</GoodwillSituationDef>
|
||||
|
||||
<GoodwillSituationDef>
|
||||
<defName>Necrophile_Necrophile</defName>
|
||||
<label>necrophile agreement</label>
|
||||
<workerClass>GoodwillSituationWorker_MemeCompatibility</workerClass>
|
||||
<meme>Necrophile</meme>
|
||||
<otherMeme>Necrophile</otherMeme>
|
||||
<naturalGoodwillOffset>30</naturalGoodwillOffset>
|
||||
</GoodwillSituationDef>
|
||||
<!-- Disagreement -->
|
||||
|
||||
<GoodwillSituationDef>
|
||||
<defName>Zoophile_All</defName>
|
||||
<label>zoophile</label>
|
||||
<workerClass>RJWSexperience.Ideology.GoodwillSituationWorker_OneWayReceive</workerClass>
|
||||
<meme>Zoophile</meme>
|
||||
<versusAll>true</versusAll>
|
||||
<naturalGoodwillOffset>-50</naturalGoodwillOffset>
|
||||
</GoodwillSituationDef>
|
||||
|
||||
<GoodwillSituationDef>
|
||||
<defName>Rapist_All</defName>
|
||||
<label>rapist</label>
|
||||
<workerClass>RJWSexperience.Ideology.GoodwillSituationWorker_OneWayReceive</workerClass>
|
||||
<meme>Rapist</meme>
|
||||
<versusAll>true</versusAll>
|
||||
<naturalGoodwillOffset>-20</naturalGoodwillOffset>
|
||||
</GoodwillSituationDef>
|
||||
|
||||
<GoodwillSituationDef>
|
||||
<defName>Necrophile_All</defName>
|
||||
<label>necrophile</label>
|
||||
<workerClass>RJWSexperience.Ideology.GoodwillSituationWorker_OneWayReceive</workerClass>
|
||||
<meme>Necrophile</meme>
|
||||
<versusAll>true</versusAll>
|
||||
<naturalGoodwillOffset>-50</naturalGoodwillOffset>
|
||||
</GoodwillSituationDef>
|
||||
</Defs>
|
||||
35
1.6/Defs/InteractionDefs/Interactions_SexTameFemale.xml
Normal file
35
1.6/Defs/InteractionDefs/Interactions_SexTameFemale.xml
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Defs>
|
||||
<!-- Experimenting with sex dialogue. This was easiest to add, but the same method could be used to add pillow talk, etc.-->
|
||||
<InteractionDef>
|
||||
<defName>AnimalSexTameChatFemale</defName>
|
||||
<label>female animal sex chat</label>
|
||||
<symbol>Things/Mote/SpeechSymbols/AnimalChat</symbol>
|
||||
<initiatorXpGainSkill>Animals</initiatorXpGainSkill>
|
||||
<initiatorXpGainAmount>40</initiatorXpGainAmount>
|
||||
<logRulesInitiator>
|
||||
<rulesStrings>
|
||||
<li>r_logentry->[INITIATOR_nameDef] [zooact] [RECIPIENT_nameDef].</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] tried to make [RECIPIENT_nameDef] sit still while [genplan] [RECIPIENT_nameDef]'s genitals.</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] attempted to hold [RECIPIENT_nameDef] still while [genplan] [RECIPIENT_nameDef]'s genitals.</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] [genact] [RECIPIENT_nameDef]'s genitals.</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] allowed [RECIPIENT_nameDef] [zooplan] [INITIATOR_possessive] genitals.</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] encouraged [RECIPIENT_nameDef] [zooplan] [INITIATOR_possessive] genitals.</li>
|
||||
|
||||
<li>genact->gently touched</li>
|
||||
<li>genact->gently caressed</li>
|
||||
<li>genact->tried to kiss</li>
|
||||
<li>genact->tried to lick</li>
|
||||
<li>genplan->trying to lick</li>
|
||||
<li>genplan->trying to touch</li>
|
||||
<li>genplan->trying to caresse</li>
|
||||
<li>zooplan->to lick</li>
|
||||
<li>zooplan->to taste</li>
|
||||
<li>zooplan->to sniff</li>
|
||||
<li>zooact->showed [INITIATOR_possessive] genitals to</li>
|
||||
<li>zooact->presented [INITIATOR_possessive] genitals to</li>
|
||||
</rulesStrings>
|
||||
</logRulesInitiator>
|
||||
</InteractionDef>
|
||||
</Defs>
|
||||
39
1.6/Defs/InteractionDefs/Interactions_SexTameMale.xml
Normal file
39
1.6/Defs/InteractionDefs/Interactions_SexTameMale.xml
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Defs>
|
||||
<!-- Experimenting with sex dialogue. This was easiest to add, but the same method could be used to add pillow talk, etc.-->
|
||||
<InteractionDef>
|
||||
<defName>AnimalSexTameChatMale</defName>
|
||||
<label>male animal sex chat</label>
|
||||
<symbol>Things/Mote/SpeechSymbols/AnimalChat</symbol>
|
||||
<initiatorXpGainSkill>Animals</initiatorXpGainSkill>
|
||||
<initiatorXpGainAmount>40</initiatorXpGainAmount>
|
||||
<logRulesInitiator>
|
||||
<rulesStrings>
|
||||
<li>r_logentry->[INITIATOR_nameDef] [zooact] [RECIPIENT_nameDef].</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] tried to make [RECIPIENT_nameDef] sit still while [genplan] [RECIPIENT_nameDef]'s genitals.</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] attempted to hold [RECIPIENT_nameDef] still while [genplan] [RECIPIENT_nameDef]'s genitals.</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] [genact] [RECIPIENT_nameDef]'s genitals.</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] allowed [RECIPIENT_nameDef] [zooplan] [INITIATOR_possessive] genitals.</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] encouraged [RECIPIENT_nameDef] [zooplan] [INITIATOR_possessive] genitals.</li>
|
||||
|
||||
<li>genact->gently touched</li>
|
||||
<li>genact->gently caressed</li>
|
||||
<li>genact->firmly stroked</li>
|
||||
<li>genact->gently stroked</li>
|
||||
<li>genact->tried to kiss</li>
|
||||
<li>genact->tried to lick</li>
|
||||
<li>genact->tried to taste</li>
|
||||
<li>zooplan->to lick</li>
|
||||
<li>zooplan->to taste</li>
|
||||
<li>zooplan->to sniff</li>
|
||||
<li>genplan->trying to lick</li>
|
||||
<li>genplan->trying to touch</li>
|
||||
<li>genplan->trying to stroke</li>
|
||||
<li>genplan->trying to taste</li>
|
||||
<li>zooact->showed [INITIATOR_possessive] genitals to</li>
|
||||
<li>zooact->presented [INITIATOR_possessive] genitals to</li>
|
||||
</rulesStrings>
|
||||
</logRulesInitiator>
|
||||
</InteractionDef>
|
||||
</Defs>
|
||||
102
1.6/Defs/InteractionDefs/Interactions_Speech_sex.xml
Normal file
102
1.6/Defs/InteractionDefs/Interactions_Speech_sex.xml
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Defs>
|
||||
|
||||
<InteractionDef>
|
||||
<defName>Speech_Gangbang</defName>
|
||||
<label>gangbang speech</label>
|
||||
<workerClass>InteractionWorker</workerClass>
|
||||
<ignoreTimeSinceLastInteraction>True</ignoreTimeSinceLastInteraction>
|
||||
<symbol>Things/Mote/SpeechSymbols/Speech</symbol>
|
||||
<logRulesInitiator>
|
||||
<include><li>SpeechUtility</li></include>
|
||||
<rulesStrings>
|
||||
<li>r_logentry->[INITIATOR_nameDef] [spokeof] [speechtopic].</li>
|
||||
<li>r_logentry(p=0.2)->[INITIATOR_nameDef] [crazy].</li>
|
||||
|
||||
<li>speechtopic->the meaning and true value of rape</li>
|
||||
<li>speechtopic->expressions of rape</li>
|
||||
<li>speechtopic->controlled lustful</li>
|
||||
<li>speechtopic->the warmth of pussy</li>
|
||||
<li>speechtopic->the meaning of cum</li>
|
||||
<li>speechtopic->love and rape</li>
|
||||
<li>speechtopic->symbolizing rape</li>
|
||||
<li>speechtopic->dick and pussy</li>
|
||||
<li>speechtopic->the art of rape</li>
|
||||
<li>speechtopic->the seduction of victim</li>
|
||||
<li>speechtopic->the music of screams</li>
|
||||
<li>speechtopic->cums on the floor</li>
|
||||
|
||||
<li>crazy->screamed maniacally</li>
|
||||
<li>crazy->broke into a chant</li>
|
||||
<li>crazy->chanted towards the heavens</li>
|
||||
<li>crazy->spat in the sacrifice's genital</li>
|
||||
<li>crazy->cackled</li>
|
||||
<li>crazy->brandished a condom</li>
|
||||
<li>crazy->muttered repetitively while masturbating</li>
|
||||
</rulesStrings>
|
||||
</logRulesInitiator>
|
||||
</InteractionDef>
|
||||
|
||||
<InteractionDef>
|
||||
<defName>Speech_Zoophile</defName>
|
||||
<label>zoophile speech</label>
|
||||
<workerClass>InteractionWorker</workerClass>
|
||||
<ignoreTimeSinceLastInteraction>True</ignoreTimeSinceLastInteraction>
|
||||
<symbol>Things/Mote/SpeechSymbols/Speech</symbol>
|
||||
<logRulesInitiator>
|
||||
<include><li>SpeechUtility</li></include>
|
||||
<rulesStrings>
|
||||
<li>r_logentry->[INITIATOR_nameDef] [spokeof] [speechtopic].</li>
|
||||
|
||||
<li>speechtopic->the meaning and true value of bestiality</li>
|
||||
<li>speechtopic->expressions of bestiality</li>
|
||||
<li>speechtopic->controlled lustful</li>
|
||||
<li>speechtopic->the warmth of cum</li>
|
||||
<li>speechtopic->the meaning of interspecies breeding</li>
|
||||
<li>speechtopic->animal and love</li>
|
||||
<li>speechtopic->symbolizing bestiality</li>
|
||||
<li>speechtopic->breed and birth</li>
|
||||
<li>speechtopic->the art of breeding</li>
|
||||
<li>speechtopic->the seduction of animals</li>
|
||||
<li>speechtopic->cums on the floor</li>
|
||||
</rulesStrings>
|
||||
</logRulesInitiator>
|
||||
</InteractionDef>
|
||||
|
||||
<InteractionDef>
|
||||
<defName>Speech_Lewd</defName>
|
||||
<label>lewd speech</label>
|
||||
<workerClass>InteractionWorker</workerClass>
|
||||
<ignoreTimeSinceLastInteraction>True</ignoreTimeSinceLastInteraction>
|
||||
<symbol>Things/Mote/SpeechSymbols/Speech</symbol>
|
||||
<logRulesInitiator>
|
||||
<include><li>SpeechUtility</li></include>
|
||||
<rulesStrings>
|
||||
<li>r_logentry->[INITIATOR_nameDef] [spokeof] [speechtopic].</li>
|
||||
<li>r_logentry(p=0.2)->[INITIATOR_nameDef] [crazy].</li>
|
||||
|
||||
<li>speechtopic->the meaning and true value of sex</li>
|
||||
<li>speechtopic->expressions of sex</li>
|
||||
<li>speechtopic->uncontrolled lustful</li>
|
||||
<li>speechtopic->the warmth of pussy</li>
|
||||
<li>speechtopic->the meaning of cum</li>
|
||||
<li>speechtopic->love and incest</li>
|
||||
<li>speechtopic->symbolizing rape</li>
|
||||
<li>speechtopic->dick and pussy</li>
|
||||
<li>speechtopic->the art of sex</li>
|
||||
<li>speechtopic->the seduction of [spokeof]</li>
|
||||
<li>speechtopic->the music of moan</li>
|
||||
<li>speechtopic->cums on the floor</li>
|
||||
|
||||
<li>crazy->moaned maniacally</li>
|
||||
<li>crazy->threw a dildo</li>
|
||||
<li>crazy->threw an onahole</li>
|
||||
<li>crazy->chanted towards the heavens</li>
|
||||
<li>crazy->moaned</li>
|
||||
<li>crazy->brandished a dildo</li>
|
||||
<li>crazy->muttered repetitively while masturbating</li>
|
||||
</rulesStrings>
|
||||
</logRulesInitiator>
|
||||
</InteractionDef>
|
||||
|
||||
</Defs>
|
||||
55
1.6/Defs/JobDefs/Jobs_AnimalSexTame.xml
Normal file
55
1.6/Defs/JobDefs/Jobs_AnimalSexTame.xml
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Defs>
|
||||
|
||||
<!-- Base -->
|
||||
|
||||
<JobDef Name="RSILovinBase" Abstract="True">
|
||||
<reportString>lovin'.</reportString>
|
||||
<casualInterruptible>false</casualInterruptible>
|
||||
</JobDef>
|
||||
|
||||
<!-- Animal Connection: Carnal -->
|
||||
|
||||
<!--- Taming -->
|
||||
<JobDef ParentName="RSILovinBase" Name="RSITameLewd" Abstract="True">
|
||||
<reportString>taming TargetA.</reportString>
|
||||
</JobDef>
|
||||
|
||||
<JobDef ParentName="RSITameLewd">
|
||||
<defName>TameLewd_Feed</defName>
|
||||
<driverClass>RJWSexperience.Ideology.JobDriver_LewdTameFeed</driverClass>
|
||||
</JobDef>
|
||||
|
||||
<JobDef ParentName="RSITameLewd">
|
||||
<defName>TameLewd_Lovin</defName>
|
||||
<reportString>Sexually taming TargetA.</reportString>
|
||||
<driverClass>RJWSexperience.Ideology.JobDriver_LewdTameSex</driverClass>
|
||||
</JobDef>
|
||||
|
||||
<!--- Training-->
|
||||
<JobDef ParentName="RSILovinBase" Name="RSITrainLewd" Abstract="True">
|
||||
<reportString>training TargetA.</reportString>
|
||||
</JobDef>
|
||||
|
||||
<JobDef ParentName="RSITrainLewd">
|
||||
<defName>TrainLewd_Feed</defName>
|
||||
<driverClass>RJWSexperience.Ideology.JobDriver_LewdTrainFeed</driverClass>
|
||||
</JobDef>
|
||||
|
||||
<JobDef ParentName="RSITrainLewd">
|
||||
<defName>TrainLewd_Lovin</defName>
|
||||
<reportString>Sexually training TargetA.</reportString>
|
||||
<driverClass>RJWSexperience.Ideology.JobDriver_LewdTrainSex</driverClass>
|
||||
</JobDef>
|
||||
|
||||
<!--- Reciever-->
|
||||
|
||||
<JobDef>
|
||||
<defName>TrainLewd_Reciever</defName>
|
||||
<driverClass>RJWSexperience.Ideology.JobDriver_LewdTrainReciever</driverClass>
|
||||
<reportString>Being sexually conditioned by TargetA.</reportString>
|
||||
<casualInterruptible>false</casualInterruptible>
|
||||
<isCrawlingIfDowned>false</isCrawlingIfDowned>
|
||||
</JobDef>
|
||||
|
||||
</Defs>
|
||||
46
1.6/Defs/JobDefs/Jobs_Ritual_Sex.xml
Normal file
46
1.6/Defs/JobDefs/Jobs_Ritual_Sex.xml
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Defs>
|
||||
<JobDef>
|
||||
<defName>RapeVictim</defName>
|
||||
<driverClass>RJWSexperience.Ideology.JobDriver_RapeVictim</driverClass>
|
||||
<reportString>rapin' victim</reportString>
|
||||
<casualInterruptible>false</casualInterruptible>
|
||||
</JobDef>
|
||||
|
||||
<JobDef>
|
||||
<defName>DrugSex</defName>
|
||||
<driverClass>RJWSexperience.Ideology.JobDriver_SexDrugOrgy</driverClass>
|
||||
<reportString>lovin'.</reportString>
|
||||
<casualInterruptible>false</casualInterruptible>
|
||||
</JobDef>
|
||||
|
||||
<JobDef>
|
||||
<defName>GettinDrugSex</defName>
|
||||
<driverClass>RJWSexperience.Ideology.JobDriver_DrugSexReceiver</driverClass>
|
||||
<reportString>lovin'.</reportString>
|
||||
<casualInterruptible>false</casualInterruptible>
|
||||
</JobDef>
|
||||
|
||||
<JobDef>
|
||||
<defName>DrugMasturbate</defName>
|
||||
<driverClass>RJWSexperience.Ideology.JobDriver_DrugMasturabate</driverClass>
|
||||
<reportString>masturbatin'.</reportString>
|
||||
<casualInterruptible>false</casualInterruptible>
|
||||
</JobDef>
|
||||
|
||||
<JobDef>
|
||||
<defName>Gangbang</defName>
|
||||
<driverClass>RJWSexperience.Ideology.JobDriver_Gangbang</driverClass>
|
||||
<reportString>lovin'.</reportString>
|
||||
<casualInterruptible>false</casualInterruptible>
|
||||
</JobDef>
|
||||
|
||||
<JobDef>
|
||||
<defName>GettinGangbang</defName>
|
||||
<driverClass>RJWSexperience.Ideology.JobDriver_GangbangReceiver</driverClass>
|
||||
<reportString>gettin' gangbanged.</reportString>
|
||||
<checkOverrideOnDamage>Never</checkOverrideOnDamage>
|
||||
<casualInterruptible>false</casualInterruptible>
|
||||
</JobDef>
|
||||
</Defs>
|
||||
246
1.6/Defs/MemeDefs/Memes_Sexual.xml
Normal file
246
1.6/Defs/MemeDefs/Memes_Sexual.xml
Normal file
|
|
@ -0,0 +1,246 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Defs>
|
||||
<MemeGroupDef>
|
||||
<defName>SexualDissolutely</defName>
|
||||
<drawOffset>(0.65, 0.23)</drawOffset>
|
||||
<maxRows>1</maxRows>
|
||||
<renderOrder>3000</renderOrder>
|
||||
</MemeGroupDef>
|
||||
|
||||
<MemeDef Name="SexualDissoulutelyBase" Abstract="True">
|
||||
<groupDef>SexualDissolutely</groupDef>
|
||||
<selectOneOrNone>
|
||||
<noneChance>1.0</noneChance>
|
||||
<preceptThingPairs>
|
||||
</preceptThingPairs>
|
||||
</selectOneOrNone>
|
||||
</MemeDef>
|
||||
|
||||
<MemeDef ParentName="SexualDissoulutelyBase">
|
||||
<defName>Zoophile</defName>
|
||||
<label>zoophile</label>
|
||||
<description>To sexually commune with animals is to show a true connection to creation, and it should be done often.</description>
|
||||
<iconPath>UI/Commands/Breeding_Pawn_off</iconPath>
|
||||
<impact>3</impact>
|
||||
<requireOne>
|
||||
<li>
|
||||
<li>Bestiality_Acceptable</li>
|
||||
<li>Bestiality_OnlyVenerated</li>
|
||||
<li>Bestiality_BondOnly</li>
|
||||
<li>Bestiality_Honorable</li>
|
||||
</li>
|
||||
</requireOne>
|
||||
<generalRules>
|
||||
<rulesStrings>
|
||||
<li>memeAdjective->bestial</li>
|
||||
<li>memeAdjective->zoophile</li>
|
||||
<li>memeHyphenPrefix->bestial</li>
|
||||
<li>memeConcept->breeding</li>
|
||||
<li>memeConcept->bestiality</li>
|
||||
<li>memeConcept->zoophile</li>
|
||||
<li>memeLeaderNoun->livestock</li>
|
||||
</rulesStrings>
|
||||
</generalRules>
|
||||
<descriptionMaker>
|
||||
<rules>
|
||||
<rulesStrings>
|
||||
<!-- theist myth -->
|
||||
<li>creation(tag=meme_Zoophile) ->[deity0_name] loves breeding with beasts.</li>
|
||||
<li>episode(uses=1,tag=meme_Zoophile) ->[deity0_name] said to all, "Sigmar forbids this!"</li>
|
||||
<!-- ideological founder -->
|
||||
<li>setup(tag=meme_Zoophile) ->Someday, [founderName] was so horny that accidentally fucked with an animal and loved it. </li>
|
||||
<li>story(uses=1,tag=meme_Zoophile) ->For spreading animals, [founderName] started to breed with animals.</li>
|
||||
<!-- ideological lesson -->
|
||||
<li>lessonIntro(tag=meme_Zoophile) ->Someday, i had sex with animal. It was much better than humans!</li>
|
||||
<li>lesson(tag=meme_Zoophile) ->Only the animals can satisfy me.</li>
|
||||
<li>lessonReinforcement(tag=meme_Zoophile) ->Breed with animals. It is the eternal hapiness.</li>
|
||||
<!-- archist -->
|
||||
<li>archistBasis(tag=meme_Zoophile) ->Archists are always seeking ultimate pleasure.</li>
|
||||
<li>archistFact(tag=meme_Zoophile) ->That was breeding with animals.</li>
|
||||
<li>archistProphecy(tag=meme_Zoophile) ->[inTheEnd], the archotechs will finally unlock the interspecies breeding, so that they may lead ultimate pleasure.</li>
|
||||
<!-- animist -->
|
||||
<li>animistFact(tag=meme_Zoophile) ->The most powerful spirits are those of beasts, and spirits of beasts will be restless unless beasts rule.</li>
|
||||
<li>animistProphecy(tag=meme_Zoophile) ->[itIsSaid] that a powerful spirit of destruction will seek to end the universe, but that a human-born beast will wield the spirit of the [relic0_name] and destroy the destroyer.</li>
|
||||
</rulesStrings>
|
||||
</rules>
|
||||
</descriptionMaker>
|
||||
<symbolPacks>
|
||||
<li>
|
||||
<ideoName>Breeders</ideoName>
|
||||
<theme>breed</theme>
|
||||
<adjective>bestiality</adjective>
|
||||
<member>breeder</member>
|
||||
</li>
|
||||
<li>
|
||||
<ideoName>Zoophilia</ideoName>
|
||||
<theme>zoophile</theme>
|
||||
<adjective>zoophile</adjective>
|
||||
<member>zoophiliac</member>
|
||||
</li>
|
||||
</symbolPacks>
|
||||
<agreeableTraits>
|
||||
<li>Zoophile</li>
|
||||
</agreeableTraits>
|
||||
</MemeDef>
|
||||
|
||||
|
||||
<MemeDef ParentName="SexualDissoulutelyBase">
|
||||
<defName>Rapist</defName>
|
||||
<label>rapist</label>
|
||||
<description>To want to fuck is only natural, to deny anyone this right is unnatural and vile, and to take without consent is pure and right.</description>
|
||||
<iconPath>UI/Memes/Rape</iconPath>
|
||||
<impact>2</impact>
|
||||
<requireOne>
|
||||
<li>
|
||||
<li>Rape_Honorable</li>
|
||||
<li>Rape_Acceptable</li>
|
||||
</li>
|
||||
</requireOne>
|
||||
<generalRules>
|
||||
<rulesStrings>
|
||||
<li>memeAdjective->violent</li>
|
||||
<li>memeAdjective->raping</li>
|
||||
<li>memeHyphenPrefix->rapist</li>
|
||||
<li>memeHyphenPrefix->molester</li>
|
||||
<li>memeHyphenPrefix->pervert</li>
|
||||
<li>memeConcept->rapist</li>
|
||||
<li>memeConcept->pervert</li>
|
||||
<li>r_deityName->slaanesh</li>
|
||||
<li>memeLeaderNoun->stallion</li>
|
||||
<li>memeLeaderNoun->grand rapist</li>
|
||||
</rulesStrings>
|
||||
</generalRules>
|
||||
<descriptionMaker>
|
||||
<rules>
|
||||
<rulesStrings>
|
||||
<!-- theist myth -->
|
||||
<li>creation(tag=meme_Rapist) ->[deity0_name] loves rape.</li>
|
||||
<li>episode(uses=1,tag=meme_Rapist) ->[deity0_name] raped everyone until death during rape.</li>
|
||||
<!-- ideological founder -->
|
||||
<li>setup(tag=meme_Rapist) ->[founderName] is always horny. </li>
|
||||
<li>story(uses=1,tag=meme_Rapist) ->[founderName] raped everyone. No one can stop [founderName]. [founderName] died trying to rape planet.</li>
|
||||
<!-- ideological lesson -->
|
||||
<li>lessonIntro(tag=meme_Rapist) ->Rape is best! Rape is best! Rape is best!</li>
|
||||
<li>lesson(tag=meme_Rapist) ->Rape is best! Rape is best! Rape is best! Rape is best!</li>
|
||||
<li>lessonReinforcement(tag=meme_Rapist) ->Rape is best! Rape is best! Rape is best! Rape is best! Rape is best!</li>
|
||||
<!-- archist -->
|
||||
<li>archistBasis(tag=meme_Rapist) ->Human history is history of rape.</li>
|
||||
<li>archistFact(tag=meme_Rapist) ->Even archotechs cannot stop rapists.</li>
|
||||
<li>archistProphecy(tag=meme_Rapist) ->[inTheEnd], the rapists never stop raping.</li>
|
||||
<!-- animist -->
|
||||
<li>animistFact(tag=meme_Rapist) ->The most powerful spirits are those of rapists, and spirits of rapists will rape all.</li>
|
||||
<li>animistProphecy(tag=meme_Rapist) ->[itIsSaid] that a powerful spirit of destruction will seek to end the universe, but that a million-raped rapist will wield the spirit of the [relic0_name] and rape the destroyer.</li>
|
||||
</rulesStrings>
|
||||
</rules>
|
||||
</descriptionMaker>
|
||||
<symbolPacks>
|
||||
<li>
|
||||
<ideoName>Rapists</ideoName>
|
||||
<theme>rapist</theme>
|
||||
<adjective>raping</adjective>
|
||||
<member>rapist</member>
|
||||
</li>
|
||||
<li>
|
||||
<ideoName>Cult of Slaanesh</ideoName>
|
||||
<theme>pleasure</theme>
|
||||
<adjective>decadent</adjective>
|
||||
<member>heretic</member>
|
||||
</li>
|
||||
</symbolPacks>
|
||||
<agreeableTraits>
|
||||
<li>Rapist</li>
|
||||
</agreeableTraits>
|
||||
</MemeDef>
|
||||
|
||||
<MemeDef ParentName="SexualDissoulutelyBase">
|
||||
<defName>Lewd</defName>
|
||||
<label>lewd</label>
|
||||
<description>Life is full of pleasures, but none are so pure, so natural, as that of sex. We must engage in sexual acts to truly be ourselves.</description>
|
||||
<iconPath>UI/Memes/SexualDissolutely</iconPath>
|
||||
<impact>3</impact>
|
||||
<consumableBuildings>
|
||||
<li>Burnbong_Aphrodisiac</li>
|
||||
</consumableBuildings>
|
||||
<requireOne>
|
||||
<li>
|
||||
<li>Lovin_FreeApproved</li>
|
||||
</li>
|
||||
<li>
|
||||
<li>Incestuos_Free</li>
|
||||
</li>
|
||||
<li>
|
||||
<li>Sex_Free</li>
|
||||
<li>Sex_Promiscuous</li>
|
||||
</li>
|
||||
</requireOne>
|
||||
<requiredRituals>
|
||||
<li>
|
||||
<precept>DateRitualConsumable</precept>
|
||||
<pattern>DrugOrgy</pattern>
|
||||
<building>Burnbong_Aphrodisiac</building>
|
||||
</li>
|
||||
</requiredRituals>
|
||||
<generalRules>
|
||||
<rulesStrings>
|
||||
<li>memeAdjective->horny</li>
|
||||
<li>memeAdjective->lewd</li>
|
||||
<li>memeAdjective->arousing</li>
|
||||
<li>memeAdjective->sexy</li>
|
||||
<li>memeAdjective->estrous</li>
|
||||
<li>memeAdjective->decadent</li>
|
||||
<li>memeHyphenPrefix->estro</li>
|
||||
<li>memeHyphenPrefix->lust</li>
|
||||
<li>memeConcept->lust</li>
|
||||
<li>memeConcept->libido</li>
|
||||
<li>memeConcept->estrus</li>
|
||||
<li>memeConcept->arousal</li>
|
||||
<li>memeConcept->desire</li>
|
||||
<li>memeConcept->sex</li>
|
||||
<li>memeConcept->perversion</li>
|
||||
<li>r_deityName->slaanesh</li>
|
||||
</rulesStrings>
|
||||
</generalRules>
|
||||
<symbolPacks>
|
||||
<li>
|
||||
<ideoName>Cult of Slaanesh</ideoName>
|
||||
<theme>pleasure</theme>
|
||||
<adjective>decadent</adjective>
|
||||
<member>heretic</member>
|
||||
</li>
|
||||
</symbolPacks>
|
||||
<addDesignators>
|
||||
<li>Autobong_Aphrodisiac</li>
|
||||
</addDesignators>
|
||||
<agreeableTraits>
|
||||
<li>Nymphomaniac</li>
|
||||
</agreeableTraits>
|
||||
</MemeDef>
|
||||
|
||||
<MemeDef ParentName="SexualDissoulutelyBase">
|
||||
<defName>Necrophile</defName>
|
||||
<label>necrophile</label>
|
||||
<description>Corpse fuckers.</description>
|
||||
<iconPath>UI/Memes/Necrophile</iconPath>
|
||||
<impact>2</impact>
|
||||
<requireOne>
|
||||
<li>
|
||||
<li>Necrophilia_Acceptable</li>
|
||||
<li>Necrophilia_Approved</li>
|
||||
</li>
|
||||
<li>
|
||||
<li>Corpses_DontCare</li>
|
||||
</li>
|
||||
</requireOne>
|
||||
<generalRules>
|
||||
<rulesStrings>
|
||||
<li>r_deityName->sonic</li>
|
||||
<li>r_deityName->mega man</li>
|
||||
<li>memeConcept->corpse</li>
|
||||
<li>memeConcept->dead</li>
|
||||
</rulesStrings>
|
||||
</generalRules>
|
||||
<agreeableTraits>
|
||||
<li>Necrophiliac</li>
|
||||
</agreeableTraits>
|
||||
</MemeDef>
|
||||
</Defs>
|
||||
42
1.6/Defs/PreceptDefs/Precepts_BabyFaction.xml
Normal file
42
1.6/Defs/PreceptDefs/Precepts_BabyFaction.xml
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Defs>
|
||||
|
||||
<!-- Issues -->
|
||||
<IssueDef>
|
||||
<defName>BabyFaction</defName>
|
||||
<label>baby faction</label>
|
||||
<iconPath>UI/Issues/BabyHome</iconPath>
|
||||
</IssueDef>
|
||||
|
||||
<!-- Precepts -->
|
||||
|
||||
<PreceptDef>
|
||||
<defName>BabyFaction_AlwaysMother</defName>
|
||||
<issue>BabyFaction</issue>
|
||||
<label>always mother(default)</label>
|
||||
<description>New born babies always follow mother's faction and ideology.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>50</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>BabyFaction_AlwaysFather</defName>
|
||||
<issue>BabyFaction</issue>
|
||||
<label>always father</label>
|
||||
<description>New born babies always follow father's faction and ideology(if exists).</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>40</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>BabyFaction_AlwaysColony</defName>
|
||||
<issue>BabyFaction</issue>
|
||||
<label>always colony</label>
|
||||
<description>New born babies are always player's faction and ideology.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>30</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
</PreceptDef>
|
||||
</Defs>
|
||||
196
1.6/Defs/PreceptDefs/Precepts_BestialBreeding.xml
Normal file
196
1.6/Defs/PreceptDefs/Precepts_BestialBreeding.xml
Normal file
|
|
@ -0,0 +1,196 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Defs>
|
||||
<!-- This Precept was based on the "Blindness Precept" from ideology -->
|
||||
|
||||
<!-- Issue -->
|
||||
|
||||
<IssueDef>
|
||||
<defName>BestialBreeding</defName>
|
||||
<label>bestial breeding</label>
|
||||
<iconPath>UI/Issues/BestialBreeding</iconPath>
|
||||
</IssueDef>
|
||||
|
||||
<!-- Precepts -->
|
||||
<PreceptDef>
|
||||
<defName>BestialBreeding_Neutral</defName>
|
||||
<issue>BestialBreeding</issue>
|
||||
<label>indifferent</label>
|
||||
<description>Impregnating an animal is simply a natural and unremarkable aspect of life.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>30</displayOrderInIssue>
|
||||
<comps>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>BestialBreeding_Encouraged</defName>
|
||||
<issue>BestialBreeding</issue>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>40</displayOrderInIssue>
|
||||
<label>encouraged</label>
|
||||
<description>Breeding animals is valued for sustaining their population, while also embracing the shared carnal pleasure it brings.</description>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>BestialBreeding_Liked</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>BestialBreeding_Liked_Social</thought>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>BestialBreeding_Required</defName>
|
||||
<issue>BestialBreeding</issue>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>40</displayOrderInIssue>
|
||||
<label>required</label>
|
||||
<description>Breeding animals is not just encouraged — it is an essential practice to sustain their population, enhance the colony's genetic potential through hybrids, and indulge in the carnal pleasures of the act.</description>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>BestialBreeding_Respected</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>BestialBreeding_Respected_Social</thought>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>BestialBreeding_Horrible</defName>
|
||||
<issue>BestialBreeding</issue>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>50</displayOrderInIssue>
|
||||
<label>horrible</label>
|
||||
<description>Breeding animals is an unnatural and vile act, degrading both the animal and the participant. It serves no purpose other than corruption and defilement.</description>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>BestialBreeding_Horrible</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>BestialBreeding_Horrible_Social</thought>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>BestialBreeding_Disliked</defName>
|
||||
<issue>BestialBreeding</issue>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>50</displayOrderInIssue>
|
||||
<label>disliked</label>
|
||||
<description>Breeding animals is a practice that, while not entirely abhorrent, is generally disliked. It should be avoided whenever possible, as there are more acceptable alternatives.</description>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>BestialBreeding_Disliked</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>BestialBreeding_Disliked_Social</thought>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<!-- Thoughts : Impregnated Good -->
|
||||
<ThoughtDef>
|
||||
<defName>BestialBreeding_Respected</defName> <!-- should probably be Pregnancy_Holy_Pregnant -->
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_BestialBreeding</workerClass>
|
||||
<thoughtClass>Thought_Situational</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>impregnated an animal</label>
|
||||
<description>I've impregnated an animal. This ensures the colony's survival and strengthens its genetic potential. The pleasure I feel is secondary to our future.</description>
|
||||
<baseMoodEffect>4</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>BestialBreeding_Respected_Social</defName> <!-- should probably be Pregnancy_Holy_Pregnant_Social -->
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_BestialBreeding_Social</workerClass>
|
||||
<thoughtClass>Thought_SituationalSocial</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>impregnated an animal</label>
|
||||
<baseOpinionOffset>8</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>BestialBreeding_Liked</defName> <!-- should probably be Pregnancy_Holy_Pregnant -->
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_BestialBreeding</workerClass>
|
||||
<thoughtClass>Thought_Situational</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>impregnated an animal</label>
|
||||
<description>I've impregnated an animal. It felt good, and it will help with the animal population.</description>
|
||||
<baseMoodEffect>2</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>BestialBreeding_Liked_Social</defName> <!-- should probably be Pregnancy_Holy_Pregnant_Social -->
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_BestialBreeding_Social</workerClass>
|
||||
<thoughtClass>Thought_SituationalSocial</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>impregnated an animal</label>
|
||||
<baseOpinionOffset>4</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<!-- Thoughts : Impregnated Bad -->
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>BestialBreeding_Horrible_Social</defName>
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_BestialBreeding_Social</workerClass>
|
||||
<thoughtClass>Thought_SituationalSocial</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>impregnated an animal</label>
|
||||
<baseOpinionOffset>-8</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>BestialBreeding_Horrible</defName>
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_BestialBreeding</workerClass>
|
||||
<thoughtClass>Thought_Situational</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>impregnated an animal</label>
|
||||
<description>I've impregnated an animal. This feels disgusting...</description>
|
||||
<baseMoodEffect>-4</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>BestialBreeding_Disliked_Social</defName>
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_BestialBreeding_Social</workerClass>
|
||||
<thoughtClass>Thought_SituationalSocial</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>impregnated an animal</label>
|
||||
<baseOpinionOffset>-4</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>BestialBreeding_Disliked</defName>
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_BestialBreeding</workerClass>
|
||||
<thoughtClass>Thought_Situational</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>impregnated an animal</label>
|
||||
<description>I've impregnated an animal. It feels wrong, but there was some pleasure in it.</description>
|
||||
<baseMoodEffect>-2</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
</Defs>
|
||||
640
1.6/Defs/PreceptDefs/Precepts_Bestiality.xml
Normal file
640
1.6/Defs/PreceptDefs/Precepts_Bestiality.xml
Normal file
|
|
@ -0,0 +1,640 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Defs>
|
||||
|
||||
<!-- Issues -->
|
||||
<IssueDef>
|
||||
<defName>Bestiality</defName>
|
||||
<label>bestiality</label>
|
||||
<iconPath>UI/Commands/Breeding_Pawn_off</iconPath>
|
||||
</IssueDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_SexWithAnimal</defName>
|
||||
<label>sex with animal</label>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.HistoryEvents.DefExtension_SecondaryEvents">
|
||||
<generationRules>
|
||||
<li>
|
||||
<filter>
|
||||
<relations>
|
||||
<isVeneratedAnimal>true</isVeneratedAnimal>
|
||||
</relations>
|
||||
</filter>
|
||||
<historyEventDef>RSI_SexWithVeneratedAnimal</historyEventDef>
|
||||
</li>
|
||||
<li>
|
||||
<filter>
|
||||
<partner>
|
||||
<isAnimal>true</isAnimal>
|
||||
</partner>
|
||||
<relations>
|
||||
<isVeneratedAnimal>false</isVeneratedAnimal>
|
||||
</relations>
|
||||
</filter>
|
||||
<historyEventDef>RSI_SexWithNonVeneratedAnimal</historyEventDef>
|
||||
</li>
|
||||
<li>
|
||||
<filter>
|
||||
<partner>
|
||||
<isAnimal>true</isAnimal>
|
||||
</partner>
|
||||
<relations>
|
||||
<hasOneOfRelations>
|
||||
<li>Bond</li>
|
||||
</hasOneOfRelations>
|
||||
</relations>
|
||||
</filter>
|
||||
<historyEventDef>RSI_SexWithBondedAnimal</historyEventDef>
|
||||
</li>
|
||||
<li>
|
||||
<filter>
|
||||
<partner>
|
||||
<isAnimal>true</isAnimal>
|
||||
</partner>
|
||||
<relations>
|
||||
<hasNoneOfRelations>
|
||||
<li>Bond</li>
|
||||
</hasNoneOfRelations>
|
||||
</relations>
|
||||
</filter>
|
||||
<historyEventDef>RSI_SexWithNonBondAnimal</historyEventDef>
|
||||
</li>
|
||||
</generationRules>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_SexWithVeneratedAnimal</defName>
|
||||
<label>sex with venerated animal</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_SexWithNonVeneratedAnimal</defName>
|
||||
<label>sex with non venerated animal</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_SexWithBondedAnimal</defName>
|
||||
<label>Sex with bonded</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_SexWithNonBondAnimal</defName>
|
||||
<label>Sex with non Bonded</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<!-- Precepts -->
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Bestiality_Abhorrent</defName>
|
||||
<issue>Bestiality</issue>
|
||||
<label>abhorrent</label>
|
||||
<description>Bestiality is a deeply evil act and antithesis to humanity.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>40</displayOrderInIssue>
|
||||
<displayOrderInImpact>100</displayOrderInImpact>
|
||||
<defaultSelectionWeight>30</defaultSelectionWeight>
|
||||
<conflictingMemes>
|
||||
<li>Zoophile</li>
|
||||
</conflictingMemes>
|
||||
<associatedMemes>
|
||||
<li>HumanPrimacy</li>
|
||||
</associatedMemes>
|
||||
<comps>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_SexWithAnimal</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_SexWithVeneratedAnimal</eventDef>
|
||||
<thought>Bestiality_Abhorrent</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_SexWithVeneratedAnimal</eventDef>
|
||||
<thought>Bestiality_Know_Abhorrent</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_SexWithAnimal</eventDef>
|
||||
<thought>Bestiality_Abhorrent</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_SexWithAnimal</eventDef>
|
||||
<thought>Bestiality_Know_Abhorrent</thought>
|
||||
</li>
|
||||
</comps>
|
||||
<modExtensions>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Bestiality_Horrible</defName>
|
||||
<issue>Bestiality</issue>
|
||||
<label>horrible</label>
|
||||
<description>Bestiality is a terrible act, worthy of disgust.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>30</displayOrderInIssue>
|
||||
<displayOrderInImpact>200</displayOrderInImpact>
|
||||
<defaultSelectionWeight>30</defaultSelectionWeight>
|
||||
<conflictingMemes>
|
||||
<li>Zoophile</li>
|
||||
</conflictingMemes>
|
||||
<associatedMemes>
|
||||
<li>HumanPrimacy</li>
|
||||
</associatedMemes>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_SexWithVeneratedAnimal</eventDef>
|
||||
<thought>Bestiality_Horrible</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_SexWithVeneratedAnimal</eventDef>
|
||||
<thought>Bestiality_Know_Horrible</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_SexWithAnimal</eventDef>
|
||||
<thought>Bestiality_Horrible</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_SexWithAnimal</eventDef>
|
||||
<thought>Bestiality_Know_Horrible</thought>
|
||||
</li>
|
||||
</comps>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension">
|
||||
<bestialityMtbMult>5.0</bestialityMtbMult>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Bestiality_Disapproved</defName>
|
||||
<issue>Bestiality</issue>
|
||||
<label>disapproved</label>
|
||||
<description>Bestiality is extremely distasteful, worthy of shame.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>20</displayOrderInIssue>
|
||||
<displayOrderInImpact>300</displayOrderInImpact>
|
||||
<defaultSelectionWeight>20</defaultSelectionWeight>
|
||||
<conflictingMemes>
|
||||
<li>Zoophile</li>
|
||||
</conflictingMemes>
|
||||
<associatedMemes>
|
||||
<li>HumanPrimacy</li>
|
||||
</associatedMemes>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_SexWithVeneratedAnimal</eventDef>
|
||||
<thought>Bestiality_Disapproved</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_SexWithVeneratedAnimal</eventDef>
|
||||
<thought>Bestiality_Know_Disapproved</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_SexWithAnimal</eventDef>
|
||||
<thought>Bestiality_Disapproved</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_SexWithAnimal</eventDef>
|
||||
<thought>Bestiality_Know_Disapproved</thought>
|
||||
</li>
|
||||
</comps>
|
||||
<modExtensions>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Bestiality_Acceptable</defName>
|
||||
<issue>Bestiality</issue>
|
||||
<label>acceptable</label>
|
||||
<description>Bestiality is a normal, unremarkable part of life.</description>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>10</displayOrderInIssue>
|
||||
<defaultSelectionWeight>10</defaultSelectionWeight>
|
||||
<approvesOfSlavery>true</approvesOfSlavery>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension">
|
||||
<bestialityMtbMult>0.75</bestialityMtbMult>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Bestiality_OnlyVenerated</defName>
|
||||
<issue>Bestiality</issue>
|
||||
<label>only venerated</label>
|
||||
<description>One who has sex with venerated animals should be honored and respected. But having sex with other animals is an act worthy of derision.</description>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>0</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<conflictingMemes>
|
||||
<li>HumanPrimacy</li>
|
||||
</conflictingMemes>
|
||||
<requiredMemes>
|
||||
<li>Zoophile</li>
|
||||
</requiredMemes>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_SexWithNonVeneratedAnimal</eventDef>
|
||||
<thought>Bestiality_Nonvenerated_Disapproved</thought>
|
||||
<onlyForNonSlaves>true</onlyForNonSlaves>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_SexWithNonVeneratedAnimal</eventDef>
|
||||
<thought>Bestiality_Nonvenerated_Know_Disapproved</thought>
|
||||
<description>Someone had sex with any animal</description>
|
||||
<onlyForNonSlaves>true</onlyForNonSlaves>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_SexWithVeneratedAnimal</eventDef>
|
||||
<thought>Bestiality_Honorable</thought>
|
||||
<onlyForNonSlaves>true</onlyForNonSlaves>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_SexWithVeneratedAnimal</eventDef>
|
||||
<thought>Bestiality_Know_Honorable</thought>
|
||||
<description>Someone had sex with a venerated animal</description>
|
||||
<onlyForNonSlaves>true</onlyForNonSlaves>
|
||||
</li>
|
||||
</comps>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension">
|
||||
<bestialityMtbMult>0.65</bestialityMtbMult>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<!-- Bond Only precept by Hawkeye32 -->
|
||||
<PreceptDef>
|
||||
<defName>Bestiality_BondOnly</defName>
|
||||
<issue>Bestiality</issue>
|
||||
<label>only bonded</label>
|
||||
<description>Sex with Bonded animals is to be honored and respected. But having sex with other animals is an act worthy of derision.</description>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>0</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<conflictingMemes>
|
||||
<li>HumanPrimacy</li>
|
||||
</conflictingMemes>
|
||||
<requiredMemes>
|
||||
<li>Zoophile</li>
|
||||
</requiredMemes>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_SexWithNonBondAnimal</eventDef>
|
||||
<thought>Bestiality_NonBonded_Disapproved</thought>
|
||||
<onlyForNonSlaves>true</onlyForNonSlaves>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_SexWithNonBondAnimal</eventDef>
|
||||
<thought>Bestiality_NonBonded_Know_Disapproved</thought>
|
||||
<description>Someone had sex with any animal</description>
|
||||
<onlyForNonSlaves>true</onlyForNonSlaves>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_SexWithBondedAnimal</eventDef>
|
||||
<thought>Bestiality_Bond_Approved</thought>
|
||||
<onlyForNonSlaves>true</onlyForNonSlaves>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_SexWithBondedAnimal</eventDef>
|
||||
<thought>Bestiality_Bond_Approved_Know</thought>
|
||||
<description>Someone had sex with a non bonded animal</description>
|
||||
<onlyForNonSlaves>true</onlyForNonSlaves>
|
||||
</li>
|
||||
</comps>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension">
|
||||
<bestialityMtbMult>0.5</bestialityMtbMult>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Bestiality_Honorable</defName>
|
||||
<issue>Bestiality</issue>
|
||||
<label>encouraging</label>
|
||||
<description>One who has sex with animals should be encouraged, its only natural.</description>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>0</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<conflictingMemes>
|
||||
<li>HumanPrimacy</li>
|
||||
</conflictingMemes>
|
||||
<requiredMemes>
|
||||
<li>Zoophile</li>
|
||||
</requiredMemes>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_SexWithAnimal</eventDef>
|
||||
<thought>Bestiality_Honorable</thought>
|
||||
<onlyForNonSlaves>true</onlyForNonSlaves>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_SexWithAnimal</eventDef>
|
||||
<thought>Bestiality_Know_Honorable</thought>
|
||||
<description>Someone had sex with an animal</description>
|
||||
<onlyForNonSlaves>true</onlyForNonSlaves>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_SexWithVeneratedAnimal</eventDef>
|
||||
<thought>Bestiality_Honorable</thought>
|
||||
<onlyForNonSlaves>true</onlyForNonSlaves>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_SexWithVeneratedAnimal</eventDef>
|
||||
<thought>Bestiality_Know_Honorable</thought>
|
||||
<description>Someone had sex with an animal</description>
|
||||
<onlyForNonSlaves>true</onlyForNonSlaves>
|
||||
</li>
|
||||
</comps>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension">
|
||||
<bestialityMtbMult>0.5</bestialityMtbMult>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<!-- Thoughts -->
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Bestiality_Abhorrent</defName>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<nullifyingTraits>
|
||||
<li>Zoophile</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_Honorable</li>
|
||||
<li>Bestiality_OnlyVenerated</li>
|
||||
<li>Bestiality_BondOnly</li>
|
||||
<li>Bestiality_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>sex with animal</label>
|
||||
<description>I had sex with animal. I want to die.</description>
|
||||
<baseMoodEffect>-15</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Bestiality_Know_Abhorrent</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingTraits>
|
||||
<li>Zoophile</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_Honorable</li>
|
||||
<li>Bestiality_OnlyVenerated</li>
|
||||
<li>Bestiality_BondOnly</li>
|
||||
<li>Bestiality_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>sex with animal</label>
|
||||
<baseOpinionOffset>-30</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Bestiality_Horrible</defName>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<nullifyingTraits>
|
||||
<li>Zoophile</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_Honorable</li>
|
||||
<li>Bestiality_OnlyVenerated</li>
|
||||
<li>Bestiality_BondOnly</li>
|
||||
<li>Bestiality_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>sex with animal</label>
|
||||
<description>I had sex with animal. I'm not sure I can forgive myself.</description>
|
||||
<baseMoodEffect>-10</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Bestiality_Know_Horrible</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingTraits>
|
||||
<li>Zoophile</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_Honorable</li>
|
||||
<li>Bestiality_OnlyVenerated</li>
|
||||
<li>Bestiality_BondOnly</li>
|
||||
<li>Bestiality_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>sex with animal</label>
|
||||
<baseOpinionOffset>-20</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Bestiality_Disapproved</defName>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<nullifyingTraits>
|
||||
<li>Zoophile</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_Honorable</li>
|
||||
<li>Bestiality_OnlyVenerated</li>
|
||||
<li>Bestiality_BondOnly</li>
|
||||
<li>Bestiality_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>sex with animal</label>
|
||||
<description>I had sex with an animal. I hope nothing terrible happens to them.</description>
|
||||
<baseMoodEffect>-5</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Bestiality_Know_Disapproved</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingTraits>
|
||||
<li>Zoophile</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_Honorable</li>
|
||||
<li>Bestiality_OnlyVenerated</li>
|
||||
<li>Bestiality_BondOnly</li>
|
||||
<li>Bestiality_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>sex with animal</label>
|
||||
<baseOpinionOffset>-10</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Bestiality_Nonvenerated_Disapproved</defName>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_Honorable</li>
|
||||
<li>Bestiality_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>sex with non-venerated animal</label>
|
||||
<description>I had sex with a non-venerated animal. I hope nothing terrible happens to them.</description>
|
||||
<baseMoodEffect>-5</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Bestiality_Nonvenerated_Know_Disapproved</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_Honorable</li>
|
||||
<li>Bestiality_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>sex with any animal</label>
|
||||
<baseOpinionOffset>-10</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Bestiality_NonBonded_Disapproved</defName>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_Honorable</li>
|
||||
<li>Bestiality_Acceptable</li>
|
||||
<li>Bestiality_OnlyVenerated</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>sex with non-bonded animal</label>
|
||||
<description>I had sex with a non bonded animal. How could I?</description>
|
||||
<baseMoodEffect>-5</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Bestiality_Bond_Approved</defName>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_Abhorrent</li>
|
||||
<li>Bestiality_Horrible</li>
|
||||
<li>Bestiality_Disapproved</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>sex with bonded animal</label>
|
||||
<description>I went wild with my bonded animal!</description>
|
||||
<baseMoodEffect>8</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Bestiality_Bond_Approved_Know</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>2</stackLimit>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_Abhorrent</li>
|
||||
<li>Bestiality_Horrible</li>
|
||||
<li>Bestiality_Disapproved</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>sex with bonded animal</label>
|
||||
<description>Shares a special bond.</description>
|
||||
<baseOpinionOffset>5</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Bestiality_NonBonded_Know_Disapproved</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_Honorable</li>
|
||||
<li>Bestiality_Acceptable</li>
|
||||
<li>Bestiality_OnlyVenerated</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>Had sex with a non bonded animal.</label>
|
||||
<baseOpinionOffset>-10</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Bestiality_Honorable</defName>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_Abhorrent</li>
|
||||
<li>Bestiality_Horrible</li>
|
||||
<li>Bestiality_Disapproved</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>sex with animal</label>
|
||||
<description>I had sex with an animal.</description>
|
||||
<baseMoodEffect>4</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Bestiality_Know_Honorable</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>25</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_Abhorrent</li>
|
||||
<li>Bestiality_Horrible</li>
|
||||
<li>Bestiality_Disapproved</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>sex with animal</label>
|
||||
<baseOpinionOffset>5</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
</Defs>
|
||||
448
1.6/Defs/PreceptDefs/Precepts_Incest.xml
Normal file
448
1.6/Defs/PreceptDefs/Precepts_Incest.xml
Normal file
|
|
@ -0,0 +1,448 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Defs>
|
||||
|
||||
<!-- Issues -->
|
||||
<IssueDef>
|
||||
<defName>Incestuos</defName>
|
||||
<label>incest</label>
|
||||
<iconPath>UI/Issues/Incest</iconPath>
|
||||
</IssueDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_CloseRelativeMarriage</defName>
|
||||
<label>Marriage between close relatives</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_IncestuosMarriage</defName>
|
||||
<label>Incestuous marriage</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_NonIncestuosMarriage</defName>
|
||||
<label>Non-Incestuous marriage</label>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.HistoryEvents.DefExtension_EventOverrides">
|
||||
<overrideRules>
|
||||
<li>
|
||||
<filter>
|
||||
<relations>
|
||||
<hasOneOfRelationDegrees>
|
||||
<li>CloseRelative</li>
|
||||
</hasOneOfRelationDegrees>
|
||||
</relations>
|
||||
</filter>
|
||||
<historyEventDef>RSI_CloseRelativeMarriage</historyEventDef>
|
||||
</li>
|
||||
<li>
|
||||
<filter>
|
||||
<relations>
|
||||
<hasOneOfRelationDegrees>
|
||||
<li>FarRelative</li>
|
||||
</hasOneOfRelationDegrees>
|
||||
</relations>
|
||||
</filter>
|
||||
<historyEventDef>RSI_IncestuosMarriage</historyEventDef>
|
||||
</li>
|
||||
</overrideRules>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_CloseRelativeSex</defName>
|
||||
<label>Sex between close relatives</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_IncestuosSex</defName>
|
||||
<label>Incestuous sex</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_NonIncestuosSex</defName>
|
||||
<label>Non-incestuous sex</label>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.HistoryEvents.DefExtension_EventOverrides">
|
||||
<overrideRules>
|
||||
<li>
|
||||
<filter>
|
||||
<relations>
|
||||
<hasOneOfRelationDegrees>
|
||||
<li>CloseRelative</li>
|
||||
</hasOneOfRelationDegrees>
|
||||
</relations>
|
||||
</filter>
|
||||
<historyEventDef>RSI_CloseRelativeSex</historyEventDef>
|
||||
</li>
|
||||
<li>
|
||||
<filter>
|
||||
<relations>
|
||||
<hasOneOfRelationDegrees>
|
||||
<li>FarRelative</li>
|
||||
</hasOneOfRelationDegrees>
|
||||
</relations>
|
||||
</filter>
|
||||
<historyEventDef>RSI_IncestuosSex</historyEventDef>
|
||||
</li>
|
||||
</overrideRules>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</HistoryEventDef>
|
||||
|
||||
<!-- Precepts -->
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Incestuos_Free</defName>
|
||||
<issue>Incestuos</issue>
|
||||
<label>free</label>
|
||||
<description>Sex is a natural part of life, it matters little with who you have it.</description>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>60</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>100</defaultSelectionWeight>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension_Incest">
|
||||
<allowManualRomanceOnlyFor>
|
||||
<li>CloseRelative</li>
|
||||
<li>FarRelative</li>
|
||||
<li>NotRelated</li>
|
||||
</allowManualRomanceOnlyFor>
|
||||
<bloodRelationDegreeRomanceFactors>
|
||||
<li>
|
||||
<bloodRelationDegree>CloseRelative</bloodRelationDegree>
|
||||
<romanceChanceFactor>1</romanceChanceFactor>
|
||||
</li>
|
||||
<li>
|
||||
<bloodRelationDegree>FarRelative</bloodRelationDegree>
|
||||
<romanceChanceFactor>1</romanceChanceFactor>
|
||||
</li>
|
||||
<li>
|
||||
<bloodRelationDegree>NotRelated</bloodRelationDegree>
|
||||
<romanceChanceFactor>1</romanceChanceFactor>
|
||||
</li>
|
||||
</bloodRelationDegreeRomanceFactors>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Incestuos_Disapproved_CloseOnly</defName>
|
||||
<issue>Incestuos</issue>
|
||||
<label>disapproved on close relatives</label>
|
||||
<description>Incest is disapproved socially, but relations farther than cousin are not recognized as incest.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>50</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>100</defaultSelectionWeight>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_CloseRelativeMarriage</eventDef>
|
||||
<thought>IncestuosMarriage_Disapproved</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_CloseRelativeSex</eventDef>
|
||||
<thought>Sex_Know_Incest_Disapproved</thought>
|
||||
</li>
|
||||
</comps>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension_Incest">
|
||||
<allowManualRomanceOnlyFor>
|
||||
<li>FarRelative</li>
|
||||
<li>NotRelated</li>
|
||||
</allowManualRomanceOnlyFor>
|
||||
<bloodRelationDegreeRomanceFactors>
|
||||
<li>
|
||||
<bloodRelationDegree>FarRelative</bloodRelationDegree>
|
||||
<romanceChanceFactor>1</romanceChanceFactor>
|
||||
</li>
|
||||
<li>
|
||||
<bloodRelationDegree>NotRelated</bloodRelationDegree>
|
||||
<romanceChanceFactor>1</romanceChanceFactor>
|
||||
</li>
|
||||
</bloodRelationDegreeRomanceFactors>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Incestuos_Disapproved</defName>
|
||||
<issue>Incestuos</issue>
|
||||
<label>disapproved</label>
|
||||
<description>Incest is disapproved socially.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>40</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>100</defaultSelectionWeight>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_IncestuosMarriage</eventDef>
|
||||
<thought>IncestuosMarriage_Disapproved</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_IncestuosMarriage</eventDef>
|
||||
<thought>Sex_Know_IncestMarriage_Disapproved</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_IncestuosSex</eventDef>
|
||||
<thought>Sex_Know_Incest_Disapproved</thought>
|
||||
</li>
|
||||
</comps>
|
||||
<modExtensions>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Incestuos_Forbidden</defName>
|
||||
<issue>Incestuos</issue>
|
||||
<label>forbidden</label>
|
||||
<description>Incest is forbidden socially.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>30</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>100</defaultSelectionWeight>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_IncestuosMarriage</eventDef>
|
||||
<thought>IncestuosMarriage_Forbidden</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_IncestuosMarriage</eventDef>
|
||||
<thought>Sex_Know_IncestMarriage_Forbidden</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_IncestuosSex</eventDef>
|
||||
<thought>Sex_Know_Incest_Forbidden</thought>
|
||||
</li>
|
||||
</comps>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension_Incest">
|
||||
<bloodRelationDegreeRomanceFactors>
|
||||
<li>
|
||||
<bloodRelationDegree>CloseRelative</bloodRelationDegree>
|
||||
<romanceChanceFactor>0.03</romanceChanceFactor> <!-- same as vanilla "parent" -->
|
||||
</li>
|
||||
<li>
|
||||
<bloodRelationDegree>FarRelative</bloodRelationDegree>
|
||||
<romanceChanceFactor>0.03</romanceChanceFactor>
|
||||
</li>
|
||||
</bloodRelationDegreeRomanceFactors>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Incestuos_IncestOnly</defName>
|
||||
<issue>Incestuos</issue>
|
||||
<label>incest only</label>
|
||||
<description>For the purpose preserving pure blood, only incest is allowed.</description>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>0</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<comps>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_NonIncestuosMarriage</eventDef>
|
||||
<thought>Sex_Know_IncestMarriage_Violated</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_NonIncestuosSex</eventDef>
|
||||
<thought>Sex_Know_Incest_Violated</thought>
|
||||
</li>
|
||||
</comps>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension_Incest">
|
||||
<allowManualRomanceOnlyFor>
|
||||
<li>CloseRelative</li>
|
||||
<li>FarRelative</li>
|
||||
</allowManualRomanceOnlyFor>
|
||||
<bloodRelationDegreeRomanceFactors>
|
||||
<li>
|
||||
<bloodRelationDegree>CloseRelative</bloodRelationDegree>
|
||||
<romanceChanceFactor>1</romanceChanceFactor>
|
||||
</li>
|
||||
<li>
|
||||
<bloodRelationDegree>FarRelative</bloodRelationDegree>
|
||||
<romanceChanceFactor>1</romanceChanceFactor>
|
||||
</li>
|
||||
<li>
|
||||
<bloodRelationDegree>NotRelated</bloodRelationDegree>
|
||||
<romanceChanceFactor>0.03</romanceChanceFactor>
|
||||
</li>
|
||||
</bloodRelationDegreeRomanceFactors>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<!-- Thoughts -->
|
||||
<ThoughtDef>
|
||||
<defName>IncestuosMarriage_Forbidden</defName>
|
||||
<durationDays>30</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<nullifyingTraits>
|
||||
<li>Psychopath</li>
|
||||
<li>Nymphomaniac</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Incestuos_IncestOnly</li>
|
||||
<li>Incestuos_Free</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>social condemnation</label>
|
||||
<description>No one blessed our marriage.</description>
|
||||
<baseMoodEffect>-10</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>IncestuosMarriage_Disapproved</defName>
|
||||
<durationDays>30</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<nullifyingTraits>
|
||||
<li>Psychopath</li>
|
||||
<li>Nymphomaniac</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Incestuos_IncestOnly</li>
|
||||
<li>Incestuos_Free</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>being gossip</label>
|
||||
<description>They are speaking behind our backs.</description>
|
||||
<baseMoodEffect>-5</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Sex_Know_Incest_Disapproved</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingTraits>
|
||||
<li>Nymphomaniac</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Incestuos_IncestOnly</li>
|
||||
<li>Incestuos_Free</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>incest</label>
|
||||
<baseOpinionOffset>-15</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Sex_Know_Incest_Forbidden</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingTraits>
|
||||
<li>Nymphomaniac</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Incestuos_IncestOnly</li>
|
||||
<li>Incestuos_Free</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>incest</label>
|
||||
<baseOpinionOffset>-30</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Sex_Know_IncestMarriage_Disapproved</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>60</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingTraits>
|
||||
<li>Nymphomaniac</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Incestuos_IncestOnly</li>
|
||||
<li>Incestuos_Free</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>incest</label>
|
||||
<baseOpinionOffset>-15</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Sex_Know_IncestMarriage_Forbidden</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>60</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingTraits>
|
||||
<li>Nymphomaniac</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Incestuos_IncestOnly</li>
|
||||
<li>Incestuos_Free</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>incest</label>
|
||||
<baseOpinionOffset>-30</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Sex_Know_Incest_Violated</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingTraits>
|
||||
<li>Nymphomaniac</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Incestuos_Disapproved_CloseOnly</li>
|
||||
<li>Incestuos_Disapproved</li>
|
||||
<li>Incestuos_Forbidden</li>
|
||||
<li>Incestuos_Free</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>sex with non-family</label>
|
||||
<baseOpinionOffset>-15</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Sex_Know_IncestMarriage_Violated</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>300</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingTraits>
|
||||
<li>Nymphomaniac</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Incestuos_Disapproved_CloseOnly</li>
|
||||
<li>Incestuos_Disapproved</li>
|
||||
<li>Incestuos_Forbidden</li>
|
||||
<li>Incestuos_Free</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>corrupted the bloodline</label>
|
||||
<baseOpinionOffset>-50</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
</Defs>
|
||||
47
1.6/Defs/PreceptDefs/Precepts_Masturbation.xml
Normal file
47
1.6/Defs/PreceptDefs/Precepts_Masturbation.xml
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Defs>
|
||||
|
||||
<!-- Issues -->
|
||||
<IssueDef>
|
||||
<defName>Masturbation</defName>
|
||||
<label>masturbation</label>
|
||||
<iconPath>UI/Issues/SexType</iconPath>
|
||||
</IssueDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_Masturbated</defName>
|
||||
<label>masturbated</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<!-- Precepts -->
|
||||
<PreceptDef>
|
||||
<defName>Masturbation_Abhorrent</defName>
|
||||
<issue>Masturbation</issue>
|
||||
<label>abhorrent</label>
|
||||
<description>Masturbation is unacceptable morally.</description>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>40</displayOrderInIssue>
|
||||
<displayOrderInImpact>100</displayOrderInImpact>
|
||||
<comps>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_Masturbated</eventDef>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Masturbation_Disapproved</defName>
|
||||
<issue>Masturbation</issue>
|
||||
<label>disapproved</label>
|
||||
<description>Masturbation is somewhat shameful.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>20</displayOrderInIssue>
|
||||
<displayOrderInImpact>100</displayOrderInImpact>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension">
|
||||
<fapMtbMult>2.0</fapMtbMult>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
</Defs>
|
||||
309
1.6/Defs/PreceptDefs/Precepts_Necrophilia.xml
Normal file
309
1.6/Defs/PreceptDefs/Precepts_Necrophilia.xml
Normal file
|
|
@ -0,0 +1,309 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Defs>
|
||||
|
||||
<!-- Issues -->
|
||||
<IssueDef>
|
||||
<defName>Necrophilia</defName>
|
||||
<label>necrophilia</label>
|
||||
<iconPath>UI/Issues/Necrophilia</iconPath>
|
||||
</IssueDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_SexWithCorpse</defName>
|
||||
<label>fucked corpse</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<!-- Precepts -->
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Necrophilia_Abhorrent</defName>
|
||||
<issue>Necrophilia</issue>
|
||||
<label>abhorrent</label>
|
||||
<description>Necrophilia is a deeply evil act.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>40</displayOrderInIssue>
|
||||
<displayOrderInImpact>100</displayOrderInImpact>
|
||||
<defaultSelectionWeight>30</defaultSelectionWeight>
|
||||
<conflictingMemes>
|
||||
<li>Necrophile</li>
|
||||
</conflictingMemes>
|
||||
<comps>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_SexWithCorpse</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_SexWithCorpse</eventDef>
|
||||
<thought>Necrophilia_Abhorrent</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_SexWithCorpse</eventDef>
|
||||
<thought>Necrophilia_Know_Abhorrent</thought>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Necrophilia_Horrible</defName>
|
||||
<issue>Necrophilia</issue>
|
||||
<label>horrible</label>
|
||||
<description>Necrophilia is a horrible act.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>30</displayOrderInIssue>
|
||||
<displayOrderInImpact>200</displayOrderInImpact>
|
||||
<defaultSelectionWeight>30</defaultSelectionWeight>
|
||||
<conflictingMemes>
|
||||
<li>Necrophile</li>
|
||||
</conflictingMemes>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_SexWithCorpse</eventDef>
|
||||
<thought>Necrophilia_Horrible</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_SexWithCorpse</eventDef>
|
||||
<thought>Necrophilia_Know_Horrible</thought>
|
||||
</li>
|
||||
</comps>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension">
|
||||
<necroMtbMult>8.0</necroMtbMult>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Necrophilia_Disapproved</defName>
|
||||
<issue>Necrophilia</issue>
|
||||
<label>disapproved</label>
|
||||
<description>Necrophilia is extremely distasteful.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>20</displayOrderInIssue>
|
||||
<displayOrderInImpact>300</displayOrderInImpact>
|
||||
<defaultSelectionWeight>20</defaultSelectionWeight>
|
||||
<conflictingMemes>
|
||||
<li>Necrophile</li>
|
||||
</conflictingMemes>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_SexWithCorpse</eventDef>
|
||||
<thought>Necrophilia_Disapproved</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_SexWithCorpse</eventDef>
|
||||
<thought>Necrophilia_Know_Disapproved</thought>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Necrophilia_Acceptable</defName>
|
||||
<issue>Necrophilia</issue>
|
||||
<label>acceptable</label>
|
||||
<description>Necrophilia is a normal, unremarkable part of life.</description>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>10</displayOrderInIssue>
|
||||
<defaultSelectionWeight>10</defaultSelectionWeight>
|
||||
<approvesOfSlavery>true</approvesOfSlavery>
|
||||
<requiredMemes>
|
||||
<li>Necrophile</li>
|
||||
</requiredMemes>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension">
|
||||
<necroMtbMult>0.75</necroMtbMult>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Necrophilia_Approved</defName>
|
||||
<issue>Necrophilia</issue>
|
||||
<label>approved</label>
|
||||
<description>Fucking a corpse is fine, who is it hurting?.</description>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>0</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<requiredMemes>
|
||||
<li>Necrophile</li>
|
||||
<li>Lewd</li>
|
||||
</requiredMemes>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_SexWithCorpse</eventDef>
|
||||
<thought>Necrophilia_Approved</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_SexWithCorpse</eventDef>
|
||||
<thought>Necrophilia_Know_Approved</thought>
|
||||
</li>
|
||||
</comps>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension">
|
||||
<necroMtbMult>0.5</necroMtbMult>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<!-- Thoughts -->
|
||||
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Necrophilia_Abhorrent</defName>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<nullifyingTraits>
|
||||
<li>Necrophiliac</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Necrophilia_Approved</li>
|
||||
<li>Necrophilia_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>fucked corpse</label>
|
||||
<description>I have fucked a corpse.</description>
|
||||
<baseMoodEffect>-15</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Necrophilia_Know_Abhorrent</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingTraits>
|
||||
<li>Necrophiliac</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Necrophilia_Approved</li>
|
||||
<li>Necrophilia_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>fucked corpse</label>
|
||||
<baseOpinionOffset>-30</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Necrophilia_Horrible</defName>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<nullifyingTraits>
|
||||
<li>Necrophiliac</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Necrophilia_Approved</li>
|
||||
<li>Necrophilia_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>fucked corpse</label>
|
||||
<description>I have fucked a corpse.</description>
|
||||
<baseMoodEffect>-10</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Necrophilia_Know_Horrible</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingTraits>
|
||||
<li>Necrophiliac</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Necrophilia_Approved</li>
|
||||
<li>Necrophilia_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>fucked corpse</label>
|
||||
<baseOpinionOffset>-20</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Necrophilia_Disapproved</defName>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<nullifyingTraits>
|
||||
<li>Necrophiliac</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Necrophilia_Approved</li>
|
||||
<li>Necrophilia_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>fucked corpse</label>
|
||||
<description>I have fucked a corpse.</description>
|
||||
<baseMoodEffect>-5</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Necrophilia_Know_Disapproved</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingTraits>
|
||||
<li>Necrophiliac</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Necrophilia_Approved</li>
|
||||
<li>Necrophilia_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>fucked corpse</label>
|
||||
<baseOpinionOffset>-10</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Necrophilia_Approved</defName>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<nullifyingPrecepts>
|
||||
<li>Necrophilia_Abhorrent</li>
|
||||
<li>Necrophilia_Horrible</li>
|
||||
<li>Necrophilia_Disapproved</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>fucked corpse</label>
|
||||
<description>I have fucked a corpse.</description>
|
||||
<baseMoodEffect>4</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Necrophilia_Know_Approved</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>25</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingPrecepts>
|
||||
<li>Necrophilia_Abhorrent</li>
|
||||
<li>Necrophilia_Horrible</li>
|
||||
<li>Necrophilia_Disapproved</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>fucked corpse</label>
|
||||
<baseOpinionOffset>5</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
</Defs>
|
||||
206
1.6/Defs/PreceptDefs/Precepts_Pregnancy.xml
Normal file
206
1.6/Defs/PreceptDefs/Precepts_Pregnancy.xml
Normal file
|
|
@ -0,0 +1,206 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Defs>
|
||||
|
||||
<!-- This Precept was based on the "Blindness Precept" from ideology -->
|
||||
|
||||
<!-- Issue -->
|
||||
|
||||
<IssueDef>
|
||||
<defName>Pregnancy</defName>
|
||||
<label>pregnancy</label>
|
||||
<iconPath>UI/Issues/Pregnancy</iconPath>
|
||||
</IssueDef>
|
||||
|
||||
<!-- Precepts -->
|
||||
<PreceptDef>
|
||||
<defName>Pregnancy_Holy</defName>
|
||||
<issue>Pregnancy</issue>
|
||||
<label>holy</label>
|
||||
<description>To be pregnant is a duty worthy of respect. Women carry our society into the next generation.</description>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>10</displayOrderInIssue>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>Pregnancy_Respected_Pregnant</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>Pregnancy_Respected_Pregnant_Social</thought>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Pregnancy_Elevated</defName>
|
||||
<issue>Pregnancy</issue>
|
||||
<label>elevated</label>
|
||||
<description>Being pregnant is considered noble.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>20</displayOrderInIssue>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>Pregnancy_Elevated_Pregnant</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>Pregnancy_Elevated_Pregnant_Social</thought>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Pregnancy_NoRules</defName>
|
||||
<issue>Pregnancy</issue>
|
||||
<label>indifferent</label>
|
||||
<description>Pregnancy is an unremarkable fact of life.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>30</displayOrderInIssue>
|
||||
<comps>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Pregnancy_Required</defName>
|
||||
<issue>Pregnancy</issue>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>40</displayOrderInIssue>
|
||||
<label>breeding</label>
|
||||
<description>Women should be pregnant - those who are not, are seen unworthy.</description>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>Pregnancy_Respected_Pregnant</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>Pregnancy_Respected_Pregnant_Social</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>Pregnancy_Horrible_NonPregnant</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>Pregnancy_Horrible_NonPregnant_Social</thought>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Pregnancy_Horrible</defName>
|
||||
<issue>Pregnancy</issue>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>50</displayOrderInIssue>
|
||||
<label>horrible</label>
|
||||
<description>Being Pregnant is unclean. Take care and stay pure.</description>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>Pregnancy_Horrible_Pregnant</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>Pregnancy_Horrible_Pregnant_Social</thought>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<!-- Thoughts : Pregnant -->
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Pregnancy_Respected_Pregnant</defName> <!-- should probably be Pregnancy_Holy_Pregnant -->
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_Pregnant</workerClass>
|
||||
<thoughtClass>Thought_Situational</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>pregnant</label>
|
||||
<description>I am pregnant. This makes me a pillar of society.</description>
|
||||
<baseMoodEffect>10</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Pregnancy_Elevated_Pregnant</defName>
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_Pregnant</workerClass>
|
||||
<thoughtClass>Thought_Situational</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>pregnant</label>
|
||||
<description>I am making our colony stronger by carrying our future.</description>
|
||||
<baseMoodEffect>5</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Pregnancy_Respected_Pregnant_Social</defName> <!-- should probably be Pregnancy_Holy_Pregnant_Social -->
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_Pregnant_Social</workerClass>
|
||||
<thoughtClass>Thought_SituationalSocial</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>pregnant</label>
|
||||
<baseOpinionOffset>20</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Pregnancy_Elevated_Pregnant_Social</defName>
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_Pregnant_Social</workerClass>
|
||||
<thoughtClass>Thought_SituationalSocial</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>pregnant</label>
|
||||
<baseOpinionOffset>10</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Pregnancy_Horrible_Pregnant_Social</defName>
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_Pregnant_Social</workerClass>
|
||||
<thoughtClass>Thought_SituationalSocial</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>pregnant</label>
|
||||
<baseOpinionOffset>-20</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Pregnancy_Horrible_Pregnant</defName>
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_Pregnant</workerClass>
|
||||
<thoughtClass>Thought_Situational</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>pregnant</label>
|
||||
<description>How did I end up like this? I never wanted to be pregnant!</description>
|
||||
<baseMoodEffect>-10</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<!-- Thoughts: Not Pregnant -->
|
||||
<ThoughtDef>
|
||||
<defName>Pregnancy_Horrible_NonPregnant</defName>
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_NonPregnant</workerClass>
|
||||
<thoughtClass>Thought_Situational</thoughtClass>
|
||||
<doNotApplyToQuestLodgers>true</doNotApplyToQuestLodgers>
|
||||
<gender>Female</gender>
|
||||
<stages>
|
||||
<li>
|
||||
<label>not pregnant</label>
|
||||
<description>I wish to be pregnant.</description>
|
||||
<baseMoodEffect>-6</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Pregnancy_Horrible_NonPregnant_Social</defName>
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_NonPregnant_Social</workerClass>
|
||||
<thoughtClass>Thought_SituationalSocial</thoughtClass>
|
||||
<gender>Female</gender>
|
||||
<stages>
|
||||
<li>
|
||||
<label>unfertilized</label>
|
||||
<baseOpinionOffset>-5</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
</Defs>
|
||||
146
1.6/Defs/PreceptDefs/Precepts_PregnancyAnimal.xml
Normal file
146
1.6/Defs/PreceptDefs/Precepts_PregnancyAnimal.xml
Normal file
|
|
@ -0,0 +1,146 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Defs>
|
||||
<!-- This Precept was based on the "Blindness Precept" from ideology -->
|
||||
|
||||
<!-- Issue -->
|
||||
|
||||
<IssueDef>
|
||||
<defName>PregnancyAnimal</defName>
|
||||
<label>bestial pregnancy</label>
|
||||
<iconPath>UI/Issues/PregnancyAnimal</iconPath>
|
||||
</IssueDef>
|
||||
|
||||
<!-- Precepts -->
|
||||
<PreceptDef>
|
||||
<defName>PregnancyAnimal_NoRules</defName>
|
||||
<issue>PregnancyAnimal</issue>
|
||||
<label>indifferent</label>
|
||||
<description>Carrying the offspring of an animal is nothing more than a natural, unremarkable part of life.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>30</displayOrderInIssue>
|
||||
<comps>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>PregnancyAnimal_Required</defName>
|
||||
<issue>PregnancyAnimal</issue>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>40</displayOrderInIssue>
|
||||
<label>breeding</label>
|
||||
<description>We must do our part to help increase the animal population, even if it means bearing their offspring. It's a necessary duty for the balance of our society.</description>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>Pregnancy_Respected_PregnantAnimal</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>Pregnancy_Respected_PregnantAnimal_Social</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>Pregnancy_Respected_NonPregnantAnimal</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>Pregnancy_Respected_NonPregnantAnimal_Social</thought>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>PregnancyAnimal_Horrible</defName>
|
||||
<issue>PregnancyAnimal</issue>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>50</displayOrderInIssue>
|
||||
<label>horrible</label>
|
||||
<description>Being pregnant with an animal's offspring feels wrong and unnatural. It's a burden that must be avoided at all costs.</description>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>Pregnancy_Horrible_PregnantAnimal</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>Pregnancy_Horrible_PregnantAnimal_Social</thought>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<!-- Thoughts : Pregnant -->
|
||||
<ThoughtDef>
|
||||
<defName>Pregnancy_Respected_PregnantAnimal</defName> <!-- should probably be Pregnancy_Holy_Pregnant -->
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_PregnantAnimal</workerClass>
|
||||
<thoughtClass>Thought_Situational</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>pregnant from animal</label>
|
||||
<description>I'm pregnant with an animal's offspring, and it feels right, like I'm meant to be this way.</description>
|
||||
<baseMoodEffect>10</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Pregnancy_Respected_PregnantAnimal_Social</defName> <!-- should probably be Pregnancy_Holy_Pregnant_Social -->
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_PregnantAnimal_Social</workerClass>
|
||||
<thoughtClass>Thought_SituationalSocial</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>pregnant from animal</label>
|
||||
<baseOpinionOffset>20</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Pregnancy_Horrible_PregnantAnimal_Social</defName>
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_PregnantAnimal_Social</workerClass>
|
||||
<thoughtClass>Thought_SituationalSocial</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>pregnant from animal</label>
|
||||
<baseOpinionOffset>-20</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Pregnancy_Horrible_PregnantAnimal</defName>
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_PregnantAnimal</workerClass>
|
||||
<thoughtClass>Thought_Situational</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>pregnant from animal</label>
|
||||
<description>I never imagined it would end like this — carrying an animal's offspring. This is a nightmare. What am I supposed to do now?</description>
|
||||
<baseMoodEffect>-10</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<!-- Thoughts: Not Pregnant -->
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Pregnancy_Respected_NonPregnantAnimal</defName>
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_NonPregnantAnimal</workerClass>
|
||||
<thoughtClass>Thought_Situational</thoughtClass>
|
||||
<doNotApplyToQuestLodgers>true</doNotApplyToQuestLodgers>
|
||||
<gender>Female</gender>
|
||||
<stages>
|
||||
<li>
|
||||
<label>not pregnant from animal</label>
|
||||
<description>The thought of being impregnated by an animal is thrilling — I want to experience it.</description>
|
||||
<baseMoodEffect>-6</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Pregnancy_Respected_NonPregnantAnimal_Social</defName>
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_NonPregnantAnimal_Social</workerClass>
|
||||
<thoughtClass>Thought_SituationalSocial</thoughtClass>
|
||||
<gender>Female</gender>
|
||||
<stages>
|
||||
<li>
|
||||
<label>not impregnated by an animal</label>
|
||||
<baseOpinionOffset>-5</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
</Defs>
|
||||
436
1.6/Defs/PreceptDefs/Precepts_Rape.xml
Normal file
436
1.6/Defs/PreceptDefs/Precepts_Rape.xml
Normal file
|
|
@ -0,0 +1,436 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Defs>
|
||||
<!-- Issues -->
|
||||
<IssueDef>
|
||||
<defName>Rape</defName>
|
||||
<label>rape</label>
|
||||
<iconPath>UI/Issues/Rape</iconPath>
|
||||
</IssueDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_Raped</defName>
|
||||
<label>raped</label>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.HistoryEvents.DefExtension_EventOverrides">
|
||||
<overrideRules>
|
||||
<li>
|
||||
<filter>
|
||||
<partner>
|
||||
<isSlave>true</isSlave>
|
||||
</partner>
|
||||
</filter>
|
||||
<historyEventDef>RSI_RapedSlave</historyEventDef>
|
||||
</li>
|
||||
<li>
|
||||
<filter>
|
||||
<partner>
|
||||
<isPrisoner>true</isPrisoner>
|
||||
</partner>
|
||||
</filter>
|
||||
<historyEventDef>RSI_RapedPrisoner</historyEventDef>
|
||||
</li>
|
||||
</overrideRules>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_RapedSlave</defName>
|
||||
<label>raped slave</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_RapedPrisoner</defName>
|
||||
<label>raped prisoner</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_WasRaped</defName>
|
||||
<label>was raped</label>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.HistoryEvents.DefExtension_EventOverrides">
|
||||
<overrideRules>
|
||||
<li>
|
||||
<filter>
|
||||
<doer>
|
||||
<isSlave>true</isSlave>
|
||||
</doer>
|
||||
</filter>
|
||||
<historyEventDef>RSI_WasRapedSlave</historyEventDef>
|
||||
</li>
|
||||
<li>
|
||||
<filter>
|
||||
<doer>
|
||||
<isPrisoner>true</isPrisoner>
|
||||
</doer>
|
||||
</filter>
|
||||
<historyEventDef>RSI_WasRapedPrisoner</historyEventDef>
|
||||
</li>
|
||||
</overrideRules>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_WasRapedSlave</defName>
|
||||
<label>was raped</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_WasRapedPrisoner</defName>
|
||||
<label>was raped</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<!-- Precepts -->
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Rape_Abhorrent</defName>
|
||||
<issue>Rape</issue>
|
||||
<label>abhorrent</label>
|
||||
<description>Rape is a deeply evil act.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>40</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>30</defaultSelectionWeight>
|
||||
<exclusionTags>
|
||||
<li>RapeBad</li>
|
||||
</exclusionTags>
|
||||
<conflictingMemes>
|
||||
<li>Rapist</li>
|
||||
</conflictingMemes>
|
||||
<associatedMemes>
|
||||
<li>HumanPrimacy</li>
|
||||
<li>Collectivist</li>
|
||||
</associatedMemes>
|
||||
<comps>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_Raped</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_Raped</eventDef>
|
||||
<thought>Rape_Abhorrent</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_Raped</eventDef>
|
||||
<thought>Rape_Know_Abhorrent</thought>
|
||||
<description>Someone raped other</description>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_RapedPrisoner</eventDef>
|
||||
<thought>Rape_Horrible</thought>
|
||||
<description>Raped prisoner</description>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_RapedPrisoner</eventDef>
|
||||
<thought>Rape_Know_Horrible</thought>
|
||||
<description>Someone raped prisoner</description>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_RapedSlave</eventDef>
|
||||
<thought>Rape_Disapproved</thought>
|
||||
<description>Raped slave</description>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_RapedSlave</eventDef>
|
||||
<thought>Rape_Know_Disapproved</thought>
|
||||
<description>Someone raped slave</description>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Rape_Horrible</defName>
|
||||
<issue>Rape</issue>
|
||||
<label>horrible</label>
|
||||
<description>Rape is a horrible act.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>30</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>30</defaultSelectionWeight>
|
||||
<exclusionTags>
|
||||
<li>RapeBad</li>
|
||||
</exclusionTags>
|
||||
<conflictingMemes>
|
||||
<li>Rapist</li>
|
||||
</conflictingMemes>
|
||||
<associatedMemes>
|
||||
<li>HumanPrimacy</li>
|
||||
</associatedMemes>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_Raped</eventDef>
|
||||
<thought>Rape_Horrible</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_Raped</eventDef>
|
||||
<thought>Rape_Know_Horrible</thought>
|
||||
<description>Someone raped other</description>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_RapedPrisoner</eventDef>
|
||||
<thought>Rape_Disapproved</thought>
|
||||
<description>Raped prisoner</description>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_RapedPrisoner</eventDef>
|
||||
<thought>Rape_Know_Disapproved</thought>
|
||||
<description>Someone raped prisoner</description>
|
||||
</li>
|
||||
</comps>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension">
|
||||
<rapeCpMtbMult>3.0</rapeCpMtbMult>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Rape_Disapproved</defName>
|
||||
<issue>Rape</issue>
|
||||
<label>disapproved</label>
|
||||
<description>Rape is part of life, though it is extremely distasteful.</description>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>20</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>20</defaultSelectionWeight>
|
||||
<exclusionTags>
|
||||
<li>RapeBad</li>
|
||||
</exclusionTags>
|
||||
<conflictingMemes>
|
||||
<li>Rapist</li>
|
||||
</conflictingMemes>
|
||||
<associatedMemes>
|
||||
<li>HumanPrimacy</li>
|
||||
</associatedMemes>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_Raped</eventDef>
|
||||
<thought>Rape_Disapproved</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_Raped</eventDef>
|
||||
<thought>Rape_Know_Disapproved</thought>
|
||||
<description>Someone raped other</description>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Rape_Acceptable</defName>
|
||||
<issue>Rape</issue>
|
||||
<label>acceptable</label>
|
||||
<description>Rape is a normal, unremarkable part of life.</description>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>10</displayOrderInIssue>
|
||||
<defaultSelectionWeight>10</defaultSelectionWeight>
|
||||
<approvesOfSlavery>true</approvesOfSlavery>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension">
|
||||
<rapeCpMtbMult>0.75</rapeCpMtbMult>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Rape_Honorable</defName>
|
||||
<issue>Rape</issue>
|
||||
<label>proud</label>
|
||||
<description>Raping is a proud behavior that shows strength of character.</description>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>0</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<conflictingMemes>
|
||||
<li>HumanPrimacy</li>
|
||||
</conflictingMemes>
|
||||
<requiredMemes>
|
||||
<li>Rapist</li>
|
||||
</requiredMemes>
|
||||
<statFactors>
|
||||
<Vulnerability>0.75</Vulnerability>
|
||||
</statFactors>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_Raped</eventDef>
|
||||
<thought>BloodlustStoleSomeLovin</thought>
|
||||
<onlyForNonSlaves>true</onlyForNonSlaves>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_Raped</eventDef>
|
||||
<thought>Rape_Know_Honorable</thought>
|
||||
<description>Someone raped other</description>
|
||||
<onlyForNonSlaves>true</onlyForNonSlaves>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_RapedPrisoner</eventDef>
|
||||
<thought>BloodlustStoleSomeLovin</thought>
|
||||
<onlyForNonSlaves>true</onlyForNonSlaves>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_RapedPrisoner</eventDef>
|
||||
<thought>Rape_Know_Honorable</thought>
|
||||
<description>Someone raped other</description>
|
||||
<onlyForNonSlaves>true</onlyForNonSlaves>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_RapedSlave</eventDef>
|
||||
<thought>BloodlustStoleSomeLovin</thought>
|
||||
<onlyForNonSlaves>true</onlyForNonSlaves>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_RapedSlave</eventDef>
|
||||
<thought>Rape_Know_Honorable</thought>
|
||||
<description>Someone raped other</description>
|
||||
<onlyForNonSlaves>true</onlyForNonSlaves>
|
||||
</li>
|
||||
</comps>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension">
|
||||
<rapeCpMtbMult>0.5</rapeCpMtbMult>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<!-- Thoughts -->
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Rape_Abhorrent</defName>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<nullifyingTraits>
|
||||
<li>Rapist</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Rape_Honorable</li>
|
||||
<li>Rape_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>raped someone</label>
|
||||
<description>I raped someone. I shouldn't do that.</description>
|
||||
<baseMoodEffect>-5</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Rape_Know_Abhorrent</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingTraits>
|
||||
<li>Rapist</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Rape_Honorable</li>
|
||||
<li>Rape_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>raped someone</label>
|
||||
<baseOpinionOffset>-30</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Rape_Horrible</defName>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<nullifyingTraits>
|
||||
<li>Rapist</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Rape_Honorable</li>
|
||||
<li>Rape_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>raped someone</label>
|
||||
<description>I raped someone. I shouldn't do that.</description>
|
||||
<baseMoodEffect>-3</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Rape_Know_Horrible</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingTraits>
|
||||
<li>Rapist</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Rape_Honorable</li>
|
||||
<li>Rape_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>raped someone</label>
|
||||
<baseOpinionOffset>-15</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Rape_Disapproved</defName>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<nullifyingTraits>
|
||||
<li>Rapist</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Rape_Honorable</li>
|
||||
<li>Rape_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>raped someone</label>
|
||||
<description>I raped someone. I shouldn't do that.</description>
|
||||
<baseMoodEffect>-1</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Rape_Know_Disapproved</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingTraits>
|
||||
<li>Rapist</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Rape_Honorable</li>
|
||||
<li>Rape_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>raped someone</label>
|
||||
<baseOpinionOffset>-5</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Rape_Know_Honorable</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>25</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingPrecepts>
|
||||
<li>Rape_Abhorrent</li>
|
||||
<li>Rape_Disapproved</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>raped someone</label>
|
||||
<baseOpinionOffset>1</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
</Defs>
|
||||
116
1.6/Defs/PreceptDefs/Precepts_Ritual_sex.xml
Normal file
116
1.6/Defs/PreceptDefs/Precepts_Ritual_sex.xml
Normal file
|
|
@ -0,0 +1,116 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Defs>
|
||||
<PreceptDef>
|
||||
<defName>GangbangCeremony</defName>
|
||||
<label>gangbang</label>
|
||||
<description>A ritualistic gangbang where the oragnizer rapes a victim. The audience will rape the victim as well.</description>
|
||||
<issue>Ritual</issue>
|
||||
<impact>Medium</impact>
|
||||
<iconPath>UI/Issues/Gangbang</iconPath>
|
||||
<preceptClass>Precept_Ritual</preceptClass>
|
||||
<ritualPatternBase>Gangbang</ritualPatternBase>
|
||||
<allowDuplicates>true</allowDuplicates>
|
||||
<countsTowardsPreceptLimit>false</countsTowardsPreceptLimit>
|
||||
<selectionWeight>1.0</selectionWeight>
|
||||
<displayOrderInImpact>100</displayOrderInImpact>
|
||||
<ignoreLimitsInEditMode>false</ignoreLimitsInEditMode>
|
||||
<receivesExpectationsQualityOffset>true</receivesExpectationsQualityOffset>
|
||||
<canGenerateAsSpecialPrecept>false</canGenerateAsSpecialPrecept>
|
||||
<exclusionTags>
|
||||
<li>RapeBad</li>
|
||||
</exclusionTags>
|
||||
<requiredMemes>
|
||||
<li>Rapist</li>
|
||||
</requiredMemes>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>GangbangCeremony_Consensual</defName>
|
||||
<label>gangbang</label>
|
||||
<description>A ritualistic gangbang where the organizer is being fucked. The audience will fuck the organizer.</description>
|
||||
<issue>Ritual</issue>
|
||||
<impact>Medium</impact>
|
||||
<iconPath>UI/Issues/Gangbang_Consensual</iconPath>
|
||||
<preceptClass>Precept_Ritual</preceptClass>
|
||||
<ritualPatternBase>Gangbang_Consensual</ritualPatternBase>
|
||||
<allowDuplicates>true</allowDuplicates>
|
||||
<countsTowardsPreceptLimit>false</countsTowardsPreceptLimit>
|
||||
<selectionWeight>1.0</selectionWeight>
|
||||
<displayOrderInImpact>100</displayOrderInImpact>
|
||||
<ignoreLimitsInEditMode>false</ignoreLimitsInEditMode>
|
||||
<receivesExpectationsQualityOffset>true</receivesExpectationsQualityOffset>
|
||||
<canGenerateAsSpecialPrecept>false</canGenerateAsSpecialPrecept>
|
||||
<requiredMemes>
|
||||
<li>Lewd</li>
|
||||
</requiredMemes>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>AnimalGangbangCeremony</defName>
|
||||
<label>animal gangbang</label>
|
||||
<description>A ritualistic gangbang where animals rape a victim.</description>
|
||||
<issue>Ritual</issue>
|
||||
<impact>Medium</impact>
|
||||
<iconPath>UI/Commands/Breeding_Pawn_off</iconPath>
|
||||
<preceptClass>Precept_Ritual</preceptClass>
|
||||
<ritualPatternBase>GangbangByAnimal</ritualPatternBase>
|
||||
<allowDuplicates>true</allowDuplicates>
|
||||
<countsTowardsPreceptLimit>false</countsTowardsPreceptLimit>
|
||||
<selectionWeight>1.0</selectionWeight>
|
||||
<displayOrderInImpact>100</displayOrderInImpact>
|
||||
<ignoreLimitsInEditMode>false</ignoreLimitsInEditMode>
|
||||
<receivesExpectationsQualityOffset>true</receivesExpectationsQualityOffset>
|
||||
<canGenerateAsSpecialPrecept>false</canGenerateAsSpecialPrecept>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension">
|
||||
<requiredAllMemes>
|
||||
<li>Rapist</li>
|
||||
<li>Zoophile</li>
|
||||
</requiredAllMemes>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>AnimalGangbangCeremony_Consensual</defName>
|
||||
<label>animal gangbang</label>
|
||||
<description>A ritualistic gangbang where animals fuck the organizer.</description>
|
||||
<issue>Ritual</issue>
|
||||
<impact>Medium</impact>
|
||||
<iconPath>UI/Commands/Breeding_Pawn_on</iconPath>
|
||||
<preceptClass>Precept_Ritual</preceptClass>
|
||||
<ritualPatternBase>GangbangByAnimal_Consensual</ritualPatternBase>
|
||||
<allowDuplicates>true</allowDuplicates>
|
||||
<countsTowardsPreceptLimit>false</countsTowardsPreceptLimit>
|
||||
<selectionWeight>1.0</selectionWeight>
|
||||
<displayOrderInImpact>100</displayOrderInImpact>
|
||||
<ignoreLimitsInEditMode>false</ignoreLimitsInEditMode>
|
||||
<receivesExpectationsQualityOffset>true</receivesExpectationsQualityOffset>
|
||||
<canGenerateAsSpecialPrecept>false</canGenerateAsSpecialPrecept>
|
||||
<requiredMemes>
|
||||
<li>Zoophile</li>
|
||||
</requiredMemes>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>DrugOrgyCeremony</defName>
|
||||
<label>drug orgy</label>
|
||||
<description>An orgy using massive aphrodisiac.</description>
|
||||
<issue>Ritual</issue>
|
||||
<impact>Medium</impact>
|
||||
<iconPath>UI/Issues/Gangbang</iconPath>
|
||||
<preceptClass>Precept_Ritual</preceptClass>
|
||||
<ritualPatternBase>DrugOrgy</ritualPatternBase>
|
||||
<allowDuplicates>true</allowDuplicates>
|
||||
<countsTowardsPreceptLimit>false</countsTowardsPreceptLimit>
|
||||
<selectionWeight>1.0</selectionWeight>
|
||||
<displayOrderInImpact>100</displayOrderInImpact>
|
||||
<ignoreLimitsInEditMode>false</ignoreLimitsInEditMode>
|
||||
<receivesExpectationsQualityOffset>true</receivesExpectationsQualityOffset>
|
||||
<canGenerateAsSpecialPrecept>false</canGenerateAsSpecialPrecept>
|
||||
<requiredMemes>
|
||||
<li>Lewd</li>
|
||||
</requiredMemes>
|
||||
</PreceptDef>
|
||||
</Defs>
|
||||
398
1.6/Defs/PreceptDefs/Precepts_Sex.xml
Normal file
398
1.6/Defs/PreceptDefs/Precepts_Sex.xml
Normal file
|
|
@ -0,0 +1,398 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Defs>
|
||||
|
||||
<!-- Issues -->
|
||||
<IssueDef>
|
||||
<defName>Sextype</defName>
|
||||
<label>sex type</label>
|
||||
<iconPath>UI/Issues/SexType</iconPath>
|
||||
</IssueDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_VaginalSex</defName>
|
||||
<label>vaginal sex</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_AnalSex</defName>
|
||||
<label>anal sex</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_OralSex</defName>
|
||||
<label>oral sex</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_PromiscuousSex</defName>
|
||||
<label>promiscuous sex</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_MiscSex</defName>
|
||||
<label>sex</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<!-- Precepts -->
|
||||
<PreceptDef>
|
||||
<defName>Sex_Free</defName>
|
||||
<issue>Sextype</issue>
|
||||
<label>free</label>
|
||||
<description>Vaginal, Anal, Oral, doesn't matter so long as you have fun.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>50</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>100</defaultSelectionWeight>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Sex_VaginalOnly</defName>
|
||||
<issue>Sextype</issue>
|
||||
<label>vaginal only</label>
|
||||
<description>Only vaginal sex is morally acceptable and other sexual acts are distasteful.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>40</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>100</defaultSelectionWeight>
|
||||
<comps>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_AnalSex</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_AnalSex</eventDef>
|
||||
<thought>Sex_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_AnalSex</eventDef>
|
||||
<thought>Sex_Know_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_OralSex</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_OralSex</eventDef>
|
||||
<thought>Sex_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_OralSex</eventDef>
|
||||
<thought>Sex_Know_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_MiscSex</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_MiscSex</eventDef>
|
||||
<thought>Sex_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_MiscSex</eventDef>
|
||||
<thought>Sex_Know_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_PromiscuousSex</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_PromiscuousSex</eventDef>
|
||||
<thought>Sex_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_PromiscuousSex</eventDef>
|
||||
<thought>Sex_Know_Promiscuous</thought>
|
||||
</li>
|
||||
</comps>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension">
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Sex_AnalOnly</defName>
|
||||
<issue>Sextype</issue>
|
||||
<label>anal only</label>
|
||||
<description>Only anal sex is morally acceptable and other sexual acts are distasteful.</description>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>30</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>10</defaultSelectionWeight>
|
||||
<comps>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_VaginalSex</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_VaginalSex</eventDef>
|
||||
<thought>Sex_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_VaginalSex</eventDef>
|
||||
<thought>Sex_Know_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_OralSex</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_OralSex</eventDef>
|
||||
<thought>Sex_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_OralSex</eventDef>
|
||||
<thought>Sex_Know_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_MiscSex</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_MiscSex</eventDef>
|
||||
<thought>Sex_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_MiscSex</eventDef>
|
||||
<thought>Sex_Know_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_PromiscuousSex</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_PromiscuousSex</eventDef>
|
||||
<thought>Sex_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_PromiscuousSex</eventDef>
|
||||
<thought>Sex_Know_Promiscuous</thought>
|
||||
</li>
|
||||
</comps>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension">
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Sex_OralOnly</defName>
|
||||
<issue>Sextype</issue>
|
||||
<label>oral only</label>
|
||||
<description>Only oral sex is morally acceptable and other sexual acts are distasteful.</description>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>20</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>5</defaultSelectionWeight>
|
||||
<comps>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_VaginalSex</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_VaginalSex</eventDef>
|
||||
<thought>Sex_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_VaginalSex</eventDef>
|
||||
<thought>Sex_Know_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_AnalSex</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_AnalSex</eventDef>
|
||||
<thought>Sex_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_AnalSex</eventDef>
|
||||
<thought>Sex_Know_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_MiscSex</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_MiscSex</eventDef>
|
||||
<thought>Sex_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_MiscSex</eventDef>
|
||||
<thought>Sex_Know_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_PromiscuousSex</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_PromiscuousSex</eventDef>
|
||||
<thought>Sex_Promiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_PromiscuousSex</eventDef>
|
||||
<thought>Sex_Know_Promiscuous</thought>
|
||||
</li>
|
||||
</comps>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension">
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Sex_Promiscuous</defName>
|
||||
<issue>Sextype</issue>
|
||||
<label>promiscuous</label>
|
||||
<description>A messy sex life is approved.</description>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>0</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<statFactors>
|
||||
<SexFrequency>1.5</SexFrequency>
|
||||
<SexAbility MayRequire="rjw.sexperience">1.25</SexAbility>
|
||||
</statFactors>
|
||||
<comps>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_VaginalSex</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_VaginalSex</eventDef>
|
||||
<thought>Sex_NonPromiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_VaginalSex</eventDef>
|
||||
<thought>Sex_Know_NonPromiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_AnalSex</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_AnalSex</eventDef>
|
||||
<thought>Sex_NonPromiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_AnalSex</eventDef>
|
||||
<thought>Sex_Know_NonPromiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_OralSex</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_OralSex</eventDef>
|
||||
<thought>Sex_NonPromiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_OralSex</eventDef>
|
||||
<thought>Sex_Know_NonPromiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_UnwillingToDo">
|
||||
<eventDef>RSI_MiscSex</eventDef>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_MiscSex</eventDef>
|
||||
<thought>Sex_NonPromiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_MiscSex</eventDef>
|
||||
<thought>Sex_Know_NonPromiscuous</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_KnowsMemoryThought">
|
||||
<eventDef>RSI_PromiscuousSex</eventDef>
|
||||
<thought>Sex_Know_Promiscuous_Approval</thought>
|
||||
</li>
|
||||
</comps>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.DefExtension">
|
||||
</li>
|
||||
</modExtensions>
|
||||
</PreceptDef>
|
||||
|
||||
<!-- Thoughts -->
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Sex_Promiscuous</defName>
|
||||
<durationDays>1</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<thoughtClass>RJWSexperience.Ideology.Thought_IncreaseRecord</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>promiscuous sex</label>
|
||||
<description>I was immoral. It makes me aroused.</description>
|
||||
<baseMoodEffect>5</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.ThoughtDefExtension_IncreaseRecord" MayRequire="rjw.sexperience">
|
||||
<recordDef>Lust</recordDef>
|
||||
<increment>3.0</increment>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Sex_NonPromiscuous</defName>
|
||||
<durationDays>1</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<stages>
|
||||
<li>
|
||||
<label>ordinary sex</label>
|
||||
<description>It cannot satisfy me.</description>
|
||||
<baseMoodEffect>-1</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Sex_Know_Promiscuous</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingTraits>
|
||||
<li>Nymphomaniac</li>
|
||||
<li>Zoophile</li>
|
||||
<li>Rapist</li>
|
||||
<li>Necrophiliac</li>
|
||||
<li>Gay</li>
|
||||
<li>Bisexual</li>
|
||||
</nullifyingTraits>
|
||||
<nullifyingPrecepts>
|
||||
<li>Sex_Free</li>
|
||||
<li>Sex_Promiscuous</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>promiscuous</label>
|
||||
<baseOpinionOffset>-10</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Sex_Know_Promiscuous_Approval</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingPrecepts>
|
||||
<li>Sex_VaginalOnly</li>
|
||||
<li>Sex_AnalOnly</li>
|
||||
<li>Sex_OralOnly</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>promiscuous</label>
|
||||
<baseOpinionOffset>3</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Sex_Know_NonPromiscuous</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingPrecepts>
|
||||
<li>Sex_VaginalOnly</li>
|
||||
<li>Sex_AnalOnly</li>
|
||||
<li>Sex_OralOnly</li>
|
||||
<li>Sex_Free</li>
|
||||
</nullifyingPrecepts>
|
||||
<stages>
|
||||
<li>
|
||||
<label>boring</label>
|
||||
<baseOpinionOffset>-3</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
</Defs>
|
||||
20
1.6/Defs/PreceptDefs/Precepts_SexProselytizing.xml
Normal file
20
1.6/Defs/PreceptDefs/Precepts_SexProselytizing.xml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
|
||||
<Defs>
|
||||
<!-- Issues -->
|
||||
<IssueDef>
|
||||
<defName>SexProselytizing</defName>
|
||||
<label>sex type</label>
|
||||
<iconPath>UI/Issues/SexProselytizer</iconPath>
|
||||
</IssueDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>ProselyzingByOrgasm</defName>
|
||||
<issue>SexProselytizing</issue>
|
||||
<label>Sexual Proselyzing</label>
|
||||
<description>Giving an orgasm converts partner towards this ideology.</description>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>50</displayOrderInIssue>
|
||||
<displayOrderInImpact>400</displayOrderInImpact>
|
||||
</PreceptDef>
|
||||
</Defs>
|
||||
218
1.6/Defs/PreceptDefs/Precepts_SizeMatters.xml
Normal file
218
1.6/Defs/PreceptDefs/Precepts_SizeMatters.xml
Normal file
|
|
@ -0,0 +1,218 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Defs>
|
||||
<!-- Issues -->
|
||||
<IssueDef>
|
||||
<defName>GenitalSize</defName>
|
||||
<label>Size Matters</label>
|
||||
<iconPath>UI/Issues/GenitalSize</iconPath>
|
||||
</IssueDef>
|
||||
|
||||
<!-- Precepts Male -->
|
||||
|
||||
<PreceptDef>
|
||||
<defName>GenitalSize_Big_Better</defName>
|
||||
<issue>GenitalSize</issue>
|
||||
<description>The size matters.</description>
|
||||
<label>Bigger is Better</label>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>20</displayOrderInIssue>
|
||||
<displayOrderInImpact>200</displayOrderInImpact>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>GenitalSize_Approved</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>GenitalSize_Approved_Social</thought>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>GenitalSize_NoRules</defName>
|
||||
<issue>GenitalSize</issue>
|
||||
<description>It isn't the size of the ship, its the motion of the ocean.</description>
|
||||
<label>No Rules</label>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>10</displayOrderInIssue>
|
||||
<displayOrderInImpact>100</displayOrderInImpact>
|
||||
<comps>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>GenitalSize_Smaller_Better</defName>
|
||||
<issue>GenitalSize</issue>
|
||||
<description>The ancients actually believed, that large genitals are an animalistic feature. Influential figures were known for their small genitals.</description>
|
||||
<label>Smaller is Better</label>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>30</displayOrderInIssue>
|
||||
<displayOrderInImpact>200</displayOrderInImpact>
|
||||
<comps>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>GenitalSize_Disapproved</thought>
|
||||
</li>
|
||||
<li Class="PreceptComp_SituationalThought">
|
||||
<thought>GenitalSize_Disapproved_Social</thought>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<!-- Thoughts - Mood -->
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>GenitalSize_Approved</defName>
|
||||
<thoughtClass>Thought_Situational</thoughtClass>
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_GenitalSize</workerClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>Despised Genitalsize</label>
|
||||
<description>I have to be okay with the way I am, I know no one else is.</description>
|
||||
<baseMoodEffect>-10</baseMoodEffect>
|
||||
</li>
|
||||
<li>
|
||||
<label>Unwanted Genitalsize</label>
|
||||
<description>I think I am below average.</description>
|
||||
<baseMoodEffect>-5</baseMoodEffect>
|
||||
</li>
|
||||
<li>
|
||||
<label>Normal Genitals</label>
|
||||
<description>I guess I am the average.</description>
|
||||
<baseMoodEffect>0</baseMoodEffect>
|
||||
</li>
|
||||
<li>
|
||||
<label>Appreciated Genitals</label>
|
||||
<description>I think I am above average.</description>
|
||||
<baseMoodEffect>+5</baseMoodEffect>
|
||||
</li>
|
||||
<li>
|
||||
<label>Venerated Genitals</label>
|
||||
<description>My genitals are the ideal size and health, I am the perfect example.</description>
|
||||
<baseMoodEffect>+10</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.ThoughtDefExtension_StageFromValue">
|
||||
<!-- We have 5 stages, which map directly to genitalia severity:
|
||||
Micro(<0.2), Small(>0.2&&<0.4), Normal(>0.4&&<0.6), Big(>0.6&&<0.8), Huge(>0.8) -->
|
||||
<minimumValueforStage>
|
||||
<li>0</li>
|
||||
<li>0.2</li>
|
||||
<li>0.4</li>
|
||||
<li>0.6</li>
|
||||
<li>0.8</li>
|
||||
</minimumValueforStage>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>GenitalSize_Disapproved</defName>
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_GenitalSize</workerClass>
|
||||
<thoughtClass>Thought_Situational</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>Venerated Genitals</label>
|
||||
<description>I do not need great genitals, as I am a being of supreme intellect and grace.</description>
|
||||
<baseMoodEffect>+10</baseMoodEffect>
|
||||
</li>
|
||||
<li>
|
||||
<label>Appreciated Genitals</label>
|
||||
<description>I think I am below average.</description>
|
||||
<baseMoodEffect>+5</baseMoodEffect>
|
||||
</li>
|
||||
<li>
|
||||
<label>Normal Genitals</label>
|
||||
<description>I guess I am the average.</description>
|
||||
<baseMoodEffect>0</baseMoodEffect>
|
||||
</li>
|
||||
<li>
|
||||
<label>Unwanted Genitals</label>
|
||||
<description>I think I am above average.</description>
|
||||
<baseMoodEffect>-5</baseMoodEffect>
|
||||
</li>
|
||||
<li>
|
||||
<label>Despised Genitals</label>
|
||||
<description>I am closer to an animal, than to a human. Why did I have to be born this way? </description>
|
||||
<baseMoodEffect>-10</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.ThoughtDefExtension_StageFromValue">
|
||||
<!-- We have 5 stages, which map directly to genitalia severity:
|
||||
Micro(<0.2), Small(>0.2&&<0.4), Normal(>0.4&&<0.6), Big(>0.6&&<0.8), Huge(>0.8) -->
|
||||
<minimumValueforStage>
|
||||
<li>0</li>
|
||||
<li>0.2</li>
|
||||
<li>0.4</li>
|
||||
<li>0.6</li>
|
||||
<li>0.8</li>
|
||||
</minimumValueforStage>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</ThoughtDef>
|
||||
|
||||
<!-- Social-Thoughts (Opinion)-->
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>GenitalSize_Approved_Social</defName>
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_GenitalSize_Social</workerClass>
|
||||
<thoughtClass>Thought_SituationalSocial</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>Unwanted Genitals</label>
|
||||
<baseOpinionOffset>-5</baseOpinionOffset>
|
||||
</li>
|
||||
<li>
|
||||
<label>Normal Genitals</label>
|
||||
<baseOpinionOffset>0</baseOpinionOffset>
|
||||
</li>
|
||||
<li>
|
||||
<label>Favorable Genitals</label>
|
||||
<baseOpinionOffset>+5</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.ThoughtDefExtension_StageFromValue">
|
||||
<!-- We have 3 stages, which map directly to genitalia severity:
|
||||
Unfavorable(<0.4), Normal(>0.4&&<0.6), Favorable(>0.6) -->
|
||||
<minimumValueforStage>
|
||||
<li>0</li>
|
||||
<li>0.4</li>
|
||||
<li>0.6</li>
|
||||
</minimumValueforStage>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>GenitalSize_Disapproved_Social</defName>
|
||||
<workerClass>RJWSexperience.Ideology.PreceptWorkers.ThoughtWorker_Precept_GenitalSize_Social</workerClass>
|
||||
<thoughtClass>Thought_SituationalSocial</thoughtClass>
|
||||
<stages>
|
||||
<li>
|
||||
<label>Favorable Genitals</label>
|
||||
<baseOpinionOffset>+5</baseOpinionOffset>
|
||||
</li>
|
||||
<li>
|
||||
<label>Normal Genitals</label>
|
||||
<baseOpinionOffset>0</baseOpinionOffset>
|
||||
</li>
|
||||
<li>
|
||||
<label>Unwanted Genitals</label>
|
||||
<baseOpinionOffset>-5</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.ThoughtDefExtension_StageFromValue">
|
||||
<!-- We have 3 stages, which map directly to genitalia severity:
|
||||
Favorable(<0.4), Normal(>0.4&&<0.6), Unfavorable(>0.6) -->
|
||||
<minimumValueforStage>
|
||||
<li>0</li>
|
||||
<li>0.4</li>
|
||||
<li>0.6</li>
|
||||
</minimumValueforStage>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</ThoughtDef>
|
||||
</Defs>
|
||||
62
1.6/Defs/PreceptDefs/Precepts_SocialAffection.xml
Normal file
62
1.6/Defs/PreceptDefs/Precepts_SocialAffection.xml
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Defs>
|
||||
<!-- Issues -->
|
||||
<IssueDef>
|
||||
<defName>SocialAffection</defName>
|
||||
<label>social affection</label>
|
||||
<iconPath>UI/Issues/SocialAffection</iconPath>
|
||||
</IssueDef>
|
||||
|
||||
<!-- Precepts -->
|
||||
|
||||
<PreceptDef>
|
||||
<defName>SocialAffection_Normal</defName>
|
||||
<issue>SocialAffection</issue>
|
||||
<label>normal(vanilla)</label>
|
||||
<description>To be social is to be human, and that is just fine.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>50</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>SocialAffection_Small</defName>
|
||||
<issue>SocialAffection</issue>
|
||||
<label>only immediate family</label>
|
||||
<description>To be social is to be vulnerable, and only your family can see that.</description>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>40</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>SocialAffection_OnlyFamily</defName>
|
||||
<issue>SocialAffection</issue>
|
||||
<label>only family</label>
|
||||
<description>To cry for another's kin is morally weak and humiliating.</description>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>30</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>SocialAffection_Dry</defName>
|
||||
<issue>SocialAffection</issue>
|
||||
<label>not family</label>
|
||||
<description>To concern yourself with the tragedy of another member of your family is the sign of a weak character.</description>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>20</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>SocialAffection_Psychopath</defName>
|
||||
<issue>SocialAffection</issue>
|
||||
<label>Psychopath</label>
|
||||
<description>Only one person matters in this universe, and it must be yourself.</description>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>10</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
</PreceptDef>
|
||||
</Defs>
|
||||
204
1.6/Defs/PreceptDefs/Precepts_Submissive.xml
Normal file
204
1.6/Defs/PreceptDefs/Precepts_Submissive.xml
Normal file
|
|
@ -0,0 +1,204 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Defs>
|
||||
<!-- Issues -->
|
||||
<IssueDef>
|
||||
<defName>Submissive</defName>
|
||||
<label>submissive</label>
|
||||
<iconPath>UI/Issues/Submissive</iconPath>
|
||||
</IssueDef>
|
||||
|
||||
<!-- Precepts -->
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Submissive_None</defName>
|
||||
<issue>Submissive</issue>
|
||||
<label>Normal</label>
|
||||
<description>No gender should have obedience demanded of them.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>50</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Submissive_Male</defName>
|
||||
<issue>Submissive</issue>
|
||||
<label>submissive male</label>
|
||||
<description>Males are submissive. They will obey and accept any and all treatment women decide.</description>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>40</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<requiredMemes>
|
||||
<li>FemaleSupremacy</li>
|
||||
</requiredMemes>
|
||||
<comps>
|
||||
<li Class="PreceptComp_UnwillingToDo_Gendered">
|
||||
<eventDef>RSI_Raped</eventDef>
|
||||
<gender>Male</gender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_WasRaped</eventDef>
|
||||
<thought>BeenRaped_Submissive</thought>
|
||||
<gender>Male</gender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_WasRaped</eventDef>
|
||||
<thought>BeenRaped_NotSubmissive</thought>
|
||||
<gender>Female</gender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_KnowsMemoryThought_Gendered">
|
||||
<eventDef>RSI_Raped</eventDef>
|
||||
<thought>Raped_Know_NotBeingSubmissive</thought>
|
||||
<doersGender>Male</doersGender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_WasRapedPrisoner</eventDef>
|
||||
<thought>BeenRaped_Submissive</thought>
|
||||
<gender>Male</gender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_WasRapedPrisoner</eventDef>
|
||||
<thought>BeenRaped_NotSubmissive</thought>
|
||||
<gender>Female</gender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_KnowsMemoryThought_Gendered">
|
||||
<eventDef>RSI_RapedPrisoner</eventDef>
|
||||
<thought>Raped_Know_NotBeingSubmissive</thought>
|
||||
<doersGender>Male</doersGender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_WasRapedSlave</eventDef>
|
||||
<thought>BeenRaped_Submissive</thought>
|
||||
<gender>Male</gender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_WasRapedSlave</eventDef>
|
||||
<thought>BeenRaped_NotSubmissive</thought>
|
||||
<gender>Female</gender>
|
||||
</li>
|
||||
<!--<li Class="RJWSexperience.Ideology.Precepts.Comp_KnowsMemoryThought_Gendered">
|
||||
<eventDef>RSI_RapedSlave</eventDef>
|
||||
<thought>Raped_Know_NotBeingSubmissive</thought>
|
||||
<doersGender>Male</doersGender>
|
||||
</li>-->
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Submissive_Female</defName>
|
||||
<issue>Submissive</issue>
|
||||
<label>submissive female</label>
|
||||
<description>Females are submissive. They will obey and accept any and all treatment men decide.</description>
|
||||
<impact>High</impact>
|
||||
<displayOrderInIssue>30</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<requiredMemes>
|
||||
<li>MaleSupremacy</li>
|
||||
</requiredMemes>
|
||||
<comps>
|
||||
<li Class="PreceptComp_UnwillingToDo_Gendered">
|
||||
<eventDef>RSI_Raped</eventDef>
|
||||
<gender>Female</gender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_WasRaped</eventDef>
|
||||
<thought>BeenRaped_Submissive</thought>
|
||||
<gender>Female</gender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_WasRaped</eventDef>
|
||||
<thought>BeenRaped_NotSubmissive</thought>
|
||||
<gender>Male</gender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_KnowsMemoryThought_Gendered">
|
||||
<eventDef>RSI_Raped</eventDef>
|
||||
<thought>Raped_Know_NotBeingSubmissive</thought>
|
||||
<doersGender>Female</doersGender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_WasRapedPrisoner</eventDef>
|
||||
<thought>BeenRaped_Submissive</thought>
|
||||
<gender>Female</gender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_WasRapedPrisoner</eventDef>
|
||||
<thought>BeenRaped_NotSubmissive</thought>
|
||||
<gender>Male</gender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_KnowsMemoryThought_Gendered">
|
||||
<eventDef>RSI_RapedPrisoner</eventDef>
|
||||
<thought>Raped_Know_NotBeingSubmissive</thought>
|
||||
<doersGender>Female</doersGender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_WasRapedSlave</eventDef>
|
||||
<thought>BeenRaped_Submissive</thought>
|
||||
<gender>Female</gender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_WasRapedSlave</eventDef>
|
||||
<thought>BeenRaped_NotSubmissive</thought>
|
||||
<gender>Male</gender>
|
||||
</li>
|
||||
<!--<li Class="RJWSexperience.Ideology.Precepts.Comp_KnowsMemoryThought_Gendered">
|
||||
<eventDef>RSI_RapedSlave</eventDef>
|
||||
<thought>Raped_Know_NotBeingSubmissive</thought>
|
||||
<doersGender>Female</doersGender>
|
||||
</li>-->
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
|
||||
<!-- Thoughts -->
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>BeenRaped_Submissive</defName>
|
||||
<durationDays>10</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<thoughtClass>Thought_Memory</thoughtClass>
|
||||
<stackedEffectMultiplier>0.4</stackedEffectMultiplier>
|
||||
<nullifyingTraits>
|
||||
<li>Masochist</li>
|
||||
</nullifyingTraits>
|
||||
<stages>
|
||||
<li>
|
||||
<label>had been raped</label>
|
||||
<description>I had to accept. But I don't feel so good.</description>
|
||||
<baseMoodEffect>-3</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>BeenRaped_NotSubmissive</defName>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<stackedEffectMultiplier>0.4</stackedEffectMultiplier>
|
||||
<nullifyingTraits>
|
||||
<li>Masochist</li>
|
||||
</nullifyingTraits>
|
||||
<stages>
|
||||
<li>
|
||||
<label>{0} raped me</label>
|
||||
<description>How dare...</description>
|
||||
<baseMoodEffect>-30</baseMoodEffect>
|
||||
<baseOpinionOffset>-200</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Raped_Know_NotBeingSubmissive</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>15</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<stages>
|
||||
<li>
|
||||
<label>not obedient</label>
|
||||
<baseOpinionOffset>-30</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
</Defs>
|
||||
36
1.6/Defs/PreceptDefs/Precepts_Tame.xml
Normal file
36
1.6/Defs/PreceptDefs/Precepts_Tame.xml
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Defs>
|
||||
<PreceptDef>
|
||||
<defName>AnimalConnection_Lovin</defName>
|
||||
<issue>AnimalConnection</issue>
|
||||
<label>carnal Training</label>
|
||||
<description>We tame and train our animals through acts of physical intimacy.</description>
|
||||
<impact>Medium</impact>
|
||||
<requiredMemes>
|
||||
</requiredMemes>
|
||||
<associatedMemes>
|
||||
</associatedMemes>
|
||||
<statFactors>
|
||||
</statFactors>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>AnimalConnection_LovinBond</defName>
|
||||
<issue>AnimalConnection</issue>
|
||||
<label>carnal Bonding</label>
|
||||
<description>We bond and teach our animals through shared acts of physical intimacy.</description>
|
||||
<impact>High</impact>
|
||||
<requiredMemes>
|
||||
<li>Zoophile</li>
|
||||
</requiredMemes>
|
||||
<associatedMemes>
|
||||
<li>Zoophile</li>
|
||||
</associatedMemes>
|
||||
<statFactors>
|
||||
<TameAnimalChance>2</TameAnimalChance>
|
||||
<TrainAnimalChance>1.5</TrainAnimalChance>
|
||||
<BondAnimalChanceFactor>2</BondAnimalChanceFactor>
|
||||
</statFactors>
|
||||
</PreceptDef>
|
||||
</Defs>
|
||||
361
1.6/Defs/PreceptDefs/Precepts_Virginity.xml
Normal file
361
1.6/Defs/PreceptDefs/Precepts_Virginity.xml
Normal file
|
|
@ -0,0 +1,361 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Defs>
|
||||
<!-- Issues -->
|
||||
<IssueDef>
|
||||
<defName>Virginity_Female</defName>
|
||||
<label>virginity of female</label>
|
||||
<iconPath>UI/Issues/Female</iconPath>
|
||||
</IssueDef>
|
||||
|
||||
<IssueDef>
|
||||
<defName>Virginity_Male</defName>
|
||||
<label>virginity of male</label>
|
||||
<iconPath>UI/Issues/Male</iconPath>
|
||||
</IssueDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_VirginTaken</defName>
|
||||
<label>virginity taken</label>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.HistoryEvents.DefExtension_SecondaryEvents">
|
||||
<generationRules>
|
||||
<li>
|
||||
<filter>
|
||||
<relations>
|
||||
<hasNoneOfRelations>
|
||||
<li>Spouse</li>
|
||||
</hasNoneOfRelations>
|
||||
</relations>
|
||||
</filter>
|
||||
<historyEventDef>RSI_VirginTakenNotSpouse</historyEventDef>
|
||||
</li>
|
||||
</generationRules>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_TookVirgin</defName>
|
||||
<label>took virginity</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_VirginStolen</defName>
|
||||
<label>virginity stolen</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<HistoryEventDef>
|
||||
<defName>RSI_VirginTakenNotSpouse</defName>
|
||||
<label>virginity was taken by a stranger</label>
|
||||
</HistoryEventDef>
|
||||
|
||||
<!-- Precepts -->
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Virgin_UselessF</defName>
|
||||
<issue>Virginity_Female</issue>
|
||||
<label>useless</label>
|
||||
<description>Female virginity is useless.</description>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>50</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>10</defaultSelectionWeight>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Virgin_UselessM</defName>
|
||||
<issue>Virginity_Male</issue>
|
||||
<label>useless</label>
|
||||
<description>Male virginity is useless.</description>
|
||||
<impact>Low</impact>
|
||||
<displayOrderInIssue>50</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>80</defaultSelectionWeight>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Virgin_PreciousF</defName>
|
||||
<issue>Virginity_Female</issue>
|
||||
<label>precious</label>
|
||||
<description>Female virginity is precious.</description>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>40</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>80</defaultSelectionWeight>
|
||||
<comps>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_VirginStolen</eventDef>
|
||||
<thought>Virgin_Precious_Taken_Forcefully</thought>
|
||||
<gender>Female</gender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_VirginTaken</eventDef>
|
||||
<thought>Virgin_Precious_Taken</thought>
|
||||
<gender>Female</gender>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_TookVirgin</eventDef>
|
||||
<thought>TookVirginity</thought>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Virgin_PreciousM</defName>
|
||||
<issue>Virginity_Male</issue>
|
||||
<label>precious</label>
|
||||
<description>Male virginity is precious.</description>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>40</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>1</defaultSelectionWeight>
|
||||
<comps>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_VirginStolen</eventDef>
|
||||
<thought>Virgin_Precious_Taken_Forcefully</thought>
|
||||
<gender>Male</gender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_VirginTaken</eventDef>
|
||||
<thought>Virgin_Precious_Taken</thought>
|
||||
<gender>Male</gender>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_TookVirgin</eventDef>
|
||||
<thought>TookVirginity</thought>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Virgin_OnlyForSpouseF</defName>
|
||||
<issue>Virginity_Female</issue>
|
||||
<label>precious(strict)</label>
|
||||
<description>Losing your virginity before marriage is evil and makes the soild female lesser.</description>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>40</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>80</defaultSelectionWeight>
|
||||
<requiredMemes>
|
||||
<li>MaleSupremacy</li>
|
||||
</requiredMemes>
|
||||
<conflictingMemes>
|
||||
<li>FemaleSupremacy</li>
|
||||
</conflictingMemes>
|
||||
<associatedMemes>
|
||||
<li>MaleSupremacy</li>
|
||||
</associatedMemes>
|
||||
<comps>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_VirginStolen</eventDef>
|
||||
<thought>Virgin_Precious_Taken_Forcefully</thought>
|
||||
<gender>Female</gender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_VirginTaken</eventDef>
|
||||
<thought>Virgin_Precious_Taken</thought>
|
||||
<gender>Female</gender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_KnowsMemoryThought_Gendered">
|
||||
<eventDef>RSI_VirginTakenNotSpouse</eventDef>
|
||||
<thought>Virgin_OnlyForSpouse_Know_Taken</thought>
|
||||
<doersGender>Female</doersGender>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_TookVirgin</eventDef>
|
||||
<thought>TookVirginity</thought>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Virgin_OnlyForSpouseM</defName>
|
||||
<issue>Virginity_Male</issue>
|
||||
<label>precious(strict)</label>
|
||||
<description>Losing your virginity before marriage is evil and makes the soiled male lesser.</description>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>40</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>20</defaultSelectionWeight>
|
||||
<requiredMemes>
|
||||
<li>FemaleSupremacy</li>
|
||||
</requiredMemes>
|
||||
<conflictingMemes>
|
||||
<li>MaleSupremacy</li>
|
||||
</conflictingMemes>
|
||||
<associatedMemes>
|
||||
<li>FemaleSupremacy</li>
|
||||
</associatedMemes>
|
||||
<comps>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_VirginStolen</eventDef>
|
||||
<thought>Virgin_Precious_Taken_Forcefully</thought>
|
||||
<gender>Male</gender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_VirginTaken</eventDef>
|
||||
<thought>Virgin_Precious_Taken</thought>
|
||||
<gender>Male</gender>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_KnowsMemoryThought_Gendered">
|
||||
<eventDef>RSI_VirginTakenNotSpouse</eventDef>
|
||||
<thought>Virgin_OnlyForSpouse_Know_Taken</thought>
|
||||
<doersGender>Male</doersGender>
|
||||
</li>
|
||||
<li Class="PreceptComp_SelfTookMemoryThought">
|
||||
<eventDef>RSI_TookVirgin</eventDef>
|
||||
<thought>TookVirginity</thought>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Virgin_ShamefulF</defName>
|
||||
<issue>Virginity_Female</issue>
|
||||
<label>shameful</label>
|
||||
<description>Being a Virgin is a shameful state of being, worthy of derision.</description>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>30</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>1</defaultSelectionWeight>
|
||||
<associatedMemes>
|
||||
<li>FemaleSupremacy</li>
|
||||
</associatedMemes>
|
||||
<comps>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_VirginTaken</eventDef>
|
||||
<thought>Virgin_Shameful_Taken</thought>
|
||||
<gender>Female</gender>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<PreceptDef>
|
||||
<defName>Virgin_ShamefulM</defName>
|
||||
<issue>Virginity_Male</issue>
|
||||
<label>shameful</label>
|
||||
<description>Being a Virgin is a shameful state of being, worthy of derision.</description>
|
||||
<impact>Medium</impact>
|
||||
<displayOrderInIssue>30</displayOrderInIssue>
|
||||
<displayOrderInImpact>1000</displayOrderInImpact>
|
||||
<defaultSelectionWeight>40</defaultSelectionWeight>
|
||||
<associatedMemes>
|
||||
<li>MaleSupremacy</li>
|
||||
</associatedMemes>
|
||||
<comps>
|
||||
<li Class="RJWSexperience.Ideology.Precepts.Comp_SelfTookMemoryThought_Gendered">
|
||||
<eventDef>RSI_VirginTaken</eventDef>
|
||||
<thought>Virgin_Shameful_Taken</thought>
|
||||
<gender>Male</gender>
|
||||
</li>
|
||||
</comps>
|
||||
</PreceptDef>
|
||||
|
||||
<!-- Thoughts -->
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Virgin_Precious_Taken_Forcefully</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>30</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<stages>
|
||||
<li>
|
||||
<label>Virginity stolen</label>
|
||||
<description>My virginity was taken forcefully.</description>
|
||||
<baseMoodEffect>-10</baseMoodEffect>
|
||||
<baseOpinionOffset>-200</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Virgin_Precious_Taken</defName>
|
||||
<thoughtClass>RJWSexperience.Ideology.Thought_Opinionbased</thoughtClass>
|
||||
<durationDays>7</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<stages>
|
||||
<li>
|
||||
<label>Lost virginity to {0}</label>
|
||||
<description>I am no longer a virgin.</description>
|
||||
<baseMoodEffect>-5</baseMoodEffect>
|
||||
</li>
|
||||
<li>
|
||||
<label>Lost virginity to {0}</label>
|
||||
<description>I am no longer a virgin.</description>
|
||||
<baseMoodEffect>-3</baseMoodEffect>
|
||||
</li>
|
||||
<li>
|
||||
<label>Lost virginity to {0}</label>
|
||||
<description>I am no longer a virgin.</description>
|
||||
<baseMoodEffect>-1</baseMoodEffect>
|
||||
</li>
|
||||
<li>
|
||||
<label>Gave virginity to {0}</label>
|
||||
<description>I gave my virginity to my love.</description>
|
||||
<baseMoodEffect>5</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.ThoughtDefExtension_StageFromValue">
|
||||
<minimumValueforStage>
|
||||
<li>-100</li>
|
||||
<li>-50</li>
|
||||
<li>0</li>
|
||||
<li>75</li>
|
||||
</minimumValueforStage>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Virgin_Shameful_Taken</defName>
|
||||
<thoughtClass>RJWSexperience.Ideology.Thought_Opinionbased</thoughtClass>
|
||||
<durationDays>7</durationDays>
|
||||
<stackLimit>1</stackLimit>
|
||||
<stages>
|
||||
<li>
|
||||
<label>Lost virginity to {0}</label>
|
||||
<description>Finally!</description>
|
||||
<baseMoodEffect>5</baseMoodEffect>
|
||||
</li>
|
||||
<li>
|
||||
<label>Lost virginity to {0}</label>
|
||||
<description>Finally!</description>
|
||||
<baseMoodEffect>10</baseMoodEffect>
|
||||
</li>
|
||||
<li>
|
||||
<label>Lost virginity to {0}</label>
|
||||
<description>Finally!</description>
|
||||
<baseMoodEffect>20</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
<modExtensions>
|
||||
<li Class="RJWSexperience.Ideology.ThoughtDefExtension_StageFromValue">
|
||||
<minimumValueforStage>
|
||||
<li>-100</li>
|
||||
<li>0</li>
|
||||
<li>75</li>
|
||||
</minimumValueforStage>
|
||||
</li>
|
||||
</modExtensions>
|
||||
</ThoughtDef>
|
||||
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>Virgin_OnlyForSpouse_Know_Taken</defName>
|
||||
<thoughtClass>Thought_MemorySocial</thoughtClass>
|
||||
<durationDays>30</durationDays>
|
||||
<stackLimit>100</stackLimit>
|
||||
<stackLimitForSameOtherPawn>3</stackLimitForSameOtherPawn>
|
||||
<nullifyingTraits>
|
||||
<li>Nymphomaniac</li>
|
||||
</nullifyingTraits>
|
||||
<stages>
|
||||
<li>
|
||||
<label>slut</label>
|
||||
<baseOpinionOffset>-30</baseOpinionOffset>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
</Defs>
|
||||
|
|
@ -0,0 +1,66 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Defs>
|
||||
<RitualPatternDef Abstract="True" Name="GangbangBase" ParentName="CelebrationPartyChat">
|
||||
<nameMaker>NamerRitualFestival</nameMaker>
|
||||
<canStartAnytime>true</canStartAnytime>
|
||||
<ritualObligationTargetFilter>RitualSpotOrAltar</ritualObligationTargetFilter>
|
||||
<tags>
|
||||
<li>Rape</li>
|
||||
</tags>
|
||||
</RitualPatternDef>
|
||||
|
||||
<RitualPatternDef ParentName="GangbangBase">
|
||||
<defName>Gangbang</defName>
|
||||
<ritualBehavior>Gangbang</ritualBehavior>
|
||||
<shortDescOverride>gangbang</shortDescOverride>
|
||||
<descOverride>A ritualistic gangbang. The organizer will give a speech to excite the crowd, then fuck the victim. If the organizer cannot fuck victim, the ritual will be canceled.</descOverride>
|
||||
<iconPathOverride>UI/Issues/Gangbang</iconPathOverride>
|
||||
<ritualOnlyForIdeoMembers>false</ritualOnlyForIdeoMembers>
|
||||
<ritualOutcomeEffect>Gangbang</ritualOutcomeEffect>
|
||||
<patternGroupTag/>
|
||||
</RitualPatternDef>
|
||||
|
||||
<RitualPatternDef ParentName="GangbangBase">
|
||||
<defName>Gangbang_Consensual</defName>
|
||||
<ritualBehavior>Gangbang_Consensual</ritualBehavior>
|
||||
<shortDescOverride>gangbang</shortDescOverride>
|
||||
<descOverride>A ritualistic gangbang. The organizer will give a speech to excite the crowd, then fucked by the crowd.</descOverride>
|
||||
<iconPathOverride>UI/Issues/Gangbang_Consensual</iconPathOverride>
|
||||
<ritualOnlyForIdeoMembers>false</ritualOnlyForIdeoMembers>
|
||||
<ritualOutcomeEffect>Gangbang_Consensual</ritualOutcomeEffect>
|
||||
<patternGroupTag/>
|
||||
</RitualPatternDef>
|
||||
|
||||
<RitualPatternDef ParentName="GangbangBase">
|
||||
<defName>GangbangByAnimal</defName>
|
||||
<ritualBehavior>GangbangByAnimal</ritualBehavior>
|
||||
<shortDescOverride>gangbang by animal</shortDescOverride>
|
||||
<descOverride>A ritualistic animal gangbang. The organizer will give a speech to excite the crowd, then animals begin fuck victim.</descOverride>
|
||||
<iconPathOverride>UI/Commands/Breeding_Pawn_off</iconPathOverride>
|
||||
<ritualOnlyForIdeoMembers>false</ritualOnlyForIdeoMembers>
|
||||
<ritualOutcomeEffect>BestialGangbang</ritualOutcomeEffect>
|
||||
<patternGroupTag/>
|
||||
</RitualPatternDef>
|
||||
|
||||
<RitualPatternDef ParentName="GangbangBase">
|
||||
<defName>GangbangByAnimal_Consensual</defName>
|
||||
<ritualBehavior>GangbangByAnimal_Consensual</ritualBehavior>
|
||||
<shortDescOverride>gangbang by animal</shortDescOverride>
|
||||
<descOverride>A ritualistic animal gangbang. The organizer will give a speech to excite the crowd, then animals begin fuck the organizer.</descOverride>
|
||||
<iconPathOverride>UI/Commands/Breeding_Pawn_on</iconPathOverride>
|
||||
<ritualOnlyForIdeoMembers>false</ritualOnlyForIdeoMembers>
|
||||
<ritualOutcomeEffect>BestialGangbang_Consensual</ritualOutcomeEffect>
|
||||
<patternGroupTag/>
|
||||
</RitualPatternDef>
|
||||
|
||||
<RitualPatternDef ParentName="CelebrationConsumable">
|
||||
<defName>DrugOrgy</defName>
|
||||
<shortDescOverride>drug orgy</shortDescOverride>
|
||||
<descOverride>An orgy with large amounts of aphrodisiac. Participants will gather around a lustbong, light it on fire, and fuck each other while inhaling the fumes.</descOverride>
|
||||
<iconPathOverride>UI/Icons/Rituals/SmokeCircle</iconPathOverride>
|
||||
<ritualOnlyForIdeoMembers>false</ritualOnlyForIdeoMembers>
|
||||
<ritualObligationTargetFilter>DrugOrgy</ritualObligationTargetFilter>
|
||||
<ritualBehavior>DrugOrgy</ritualBehavior>
|
||||
<ritualOutcomeEffect>DrugOrgy</ritualOutcomeEffect>
|
||||
</RitualPatternDef>
|
||||
</Defs>
|
||||
37
1.6/Defs/PreconfiguredIdeos/IdeoPresetDefs_sex.xml
Normal file
37
1.6/Defs/PreconfiguredIdeos/IdeoPresetDefs_sex.xml
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
|
||||
<Defs>
|
||||
<IdeoPresetDef>
|
||||
<defName>Animal_Breeders</defName>
|
||||
<label>animal breeders</label>
|
||||
<description>Animals are our better half.</description>
|
||||
<categoryDef>Intense</categoryDef>
|
||||
<memes>
|
||||
<li>AnimalPersonhood</li>
|
||||
<li>Zoophile</li>
|
||||
</memes>
|
||||
</IdeoPresetDef>
|
||||
|
||||
<IdeoPresetDef>
|
||||
<defName>Savage_Rapist_Brigands</defName>
|
||||
<label>savage rapist brigands</label>
|
||||
<description>All of them are ours.</description>
|
||||
<categoryDef>Intense</categoryDef>
|
||||
<memes>
|
||||
<li>Rapist</li>
|
||||
<li>Nudism</li>
|
||||
<li>Raider</li>
|
||||
</memes>
|
||||
</IdeoPresetDef>
|
||||
|
||||
<IdeoPresetDef>
|
||||
<defName>Hentai_Tribe</defName>
|
||||
<label>hentai tribe</label>
|
||||
<categoryDef>Intense</categoryDef>
|
||||
<description>Impregnate.</description>
|
||||
<memes>
|
||||
<li>MaleSupremacy</li>
|
||||
<li>Rapist</li>
|
||||
</memes>
|
||||
</IdeoPresetDef>
|
||||
</Defs>
|
||||
462
1.6/Defs/Rituals/Ritual_Behaviors_sex.xml
Normal file
462
1.6/Defs/Rituals/Ritual_Behaviors_sex.xml
Normal file
|
|
@ -0,0 +1,462 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Defs>
|
||||
<RitualBehaviorDef Name="GangbangBehaviorBase" Abstract="True" ParentName="DateRitualBehavior">
|
||||
<preceptRequirements>
|
||||
<li Class="PreceptRequirement_Altar" />
|
||||
</preceptRequirements>
|
||||
<durationTicks>7500</durationTicks>
|
||||
<roles Inherit="False">
|
||||
<li Class="RitualRoleTag">
|
||||
<label>initiator</label>
|
||||
<id>initiator</id>
|
||||
<tag>Initiator</tag>
|
||||
<precept>IdeoRole_Moralist</precept>
|
||||
<required>True</required>
|
||||
<substitutable>true</substitutable>
|
||||
<maxCount>1</maxCount>
|
||||
<countsAsParticipant>False</countsAsParticipant>
|
||||
</li>
|
||||
</roles>
|
||||
</RitualBehaviorDef>
|
||||
|
||||
<RitualBehaviorDef ParentName="GangbangBehaviorBase">
|
||||
<defName>Gangbang</defName>
|
||||
<workerClass>RJWSexperience.Ideology.RitualBehaviorWorker_Gangbang</workerClass>
|
||||
<roles>
|
||||
<li Class="RJWSexperience.Ideology.RitualRole_RapeVictim">
|
||||
<label>victim</label>
|
||||
<missingDesc>a victim</missingDesc>
|
||||
<id>victim</id>
|
||||
<maxCount>1</maxCount>
|
||||
<required>true</required>
|
||||
<countsAsParticipant>False</countsAsParticipant>
|
||||
<ignoreBleeding>true</ignoreBleeding>
|
||||
<allowNonAggroMentalState>true</allowNonAggroMentalState>
|
||||
<allowOtherIdeos>true</allowOtherIdeos>
|
||||
</li>
|
||||
</roles>
|
||||
<stages Inherit="False">
|
||||
<li Class="RJWSexperience.Ideology.RitualStage_InteractWithVictim">
|
||||
<defaultDuty>Spectate</defaultDuty>
|
||||
<endTriggers>
|
||||
<li Class="StageEndTrigger_PawnDeliveredOrNotValid" />
|
||||
</endTriggers>
|
||||
<failTriggers>
|
||||
<li Class="StageFailTrigger_TargetPawnUnreachable">
|
||||
<takerId>initiator</takerId>
|
||||
<takeeId>victim</takeeId>
|
||||
<desc>Victim is not reachable.</desc>
|
||||
</li>
|
||||
</failTriggers>
|
||||
<roleBehaviors>
|
||||
<li>
|
||||
<roleId>initiator</roleId>
|
||||
<dutyDef>DeliverPawnToAltar</dutyDef>
|
||||
</li>
|
||||
<li>
|
||||
<roleId>victim</roleId>
|
||||
<dutyDef>Idle</dutyDef>
|
||||
</li>
|
||||
</roleBehaviors>
|
||||
</li>
|
||||
<li>
|
||||
<defaultDuty>Spectate</defaultDuty>
|
||||
<endTriggers>
|
||||
<li Class="StageEndTrigger_DurationPercentage">
|
||||
<percentage>0.1</percentage>
|
||||
</li>
|
||||
</endTriggers>
|
||||
<roleBehaviors>
|
||||
<li>
|
||||
<roleId>initiator</roleId>
|
||||
<dutyDef>SpeakOnCellFacingSpectators</dutyDef>
|
||||
<speakerInteraction>Speech_Gangbang</speakerInteraction>
|
||||
<customPositions>
|
||||
<li Class="RitualPosition_Lectern">
|
||||
<maxDistanceToFocus>5</maxDistanceToFocus>
|
||||
</li>
|
||||
<li Class="RitualPosition_OnInteractionCell" />
|
||||
</customPositions>
|
||||
</li>
|
||||
<li>
|
||||
<roleId>victim</roleId>
|
||||
<dutyDef>LayDownAwake</dutyDef>
|
||||
</li>
|
||||
</roleBehaviors>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.RitualStage_InteractWithVictim">
|
||||
<defaultDuty>Gangbang_Rape</defaultDuty>
|
||||
<essential>True</essential>
|
||||
<endTriggers>
|
||||
<li Class="StageEndTrigger_DurationPercentage">
|
||||
<percentage>0.9</percentage>
|
||||
</li>
|
||||
</endTriggers>
|
||||
<roleBehaviors>
|
||||
<li>
|
||||
<roleId>initiator</roleId>
|
||||
<dutyDef>FuckVictim</dutyDef>
|
||||
<customPositions>
|
||||
<li Class="RitualPosition_OnInteractionCell" />
|
||||
</customPositions>
|
||||
</li>
|
||||
</roleBehaviors>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.RitualStage_InteractWithVictim">
|
||||
<defaultDuty>Gangbang_Rape</defaultDuty>
|
||||
<endTriggers>
|
||||
<li Class="StageEndTrigger_DurationPercentage">
|
||||
<percentage>0.1</percentage>
|
||||
</li>
|
||||
</endTriggers>
|
||||
<roleBehaviors>
|
||||
<li>
|
||||
<roleId>initiator</roleId>
|
||||
<dutyDef>SpeakOnCellFacingSpectators</dutyDef>
|
||||
<speakerInteraction>Speech_Gangbang</speakerInteraction>
|
||||
<customPositions>
|
||||
<li Class="RitualPosition_OnInteractionCell" />
|
||||
</customPositions>
|
||||
</li>
|
||||
</roleBehaviors>
|
||||
</li>
|
||||
</stages>
|
||||
</RitualBehaviorDef>
|
||||
|
||||
<RitualBehaviorDef ParentName="GangbangBehaviorBase">
|
||||
<defName>Gangbang_Consensual</defName>
|
||||
<workerClass>RJWSexperience.Ideology.RitualBehaviorWorker_Gangbang_Consensual</workerClass>
|
||||
<stages Inherit="False">
|
||||
<li Class="RJWSexperience.Ideology.RitualStage_InteractWithInitiator">
|
||||
<defaultDuty>Spectate</defaultDuty>
|
||||
<endTriggers>
|
||||
<li Class="StageEndTrigger_RolesArrived">
|
||||
<roleIds>
|
||||
<li>initiator</li>
|
||||
</roleIds>
|
||||
</li>
|
||||
</endTriggers>
|
||||
<roleBehaviors>
|
||||
<li>
|
||||
<roleId>initiator</roleId>
|
||||
<dutyDef>ArriveToCell</dutyDef>
|
||||
</li>
|
||||
</roleBehaviors>
|
||||
</li>
|
||||
<li>
|
||||
<defaultDuty>Spectate</defaultDuty>
|
||||
<endTriggers>
|
||||
<li Class="StageEndTrigger_DurationPercentage">
|
||||
<percentage>0.1</percentage>
|
||||
</li>
|
||||
</endTriggers>
|
||||
<roleBehaviors>
|
||||
<li>
|
||||
<roleId>initiator</roleId>
|
||||
<dutyDef>SpeakOnCellFacingSpectators</dutyDef>
|
||||
<speakerInteraction>Speech_Gangbang</speakerInteraction>
|
||||
<customPositions>
|
||||
<li Class="RitualPosition_Lectern">
|
||||
<maxDistanceToFocus>5</maxDistanceToFocus>
|
||||
</li>
|
||||
<li Class="RitualPosition_OnInteractionCell" />
|
||||
</customPositions>
|
||||
</li>
|
||||
</roleBehaviors>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.RitualStage_InteractWithInitiator">
|
||||
<defaultDuty>Gangbang_Consensual</defaultDuty>
|
||||
<essential>True</essential>
|
||||
<endTriggers>
|
||||
<li Class="StageEndTrigger_DurationPercentage">
|
||||
<percentage>1.0</percentage>
|
||||
</li>
|
||||
</endTriggers>
|
||||
<roleBehaviors>
|
||||
<li>
|
||||
<roleId>initiator</roleId>
|
||||
<dutyDef>LayDownAwake</dutyDef>
|
||||
<customPositions>
|
||||
<li Class="RitualPosition_OnInteractionCell" />
|
||||
</customPositions>
|
||||
</li>
|
||||
</roleBehaviors>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.RitualStage_InteractWithInitiator">
|
||||
<defaultDuty>Spectate</defaultDuty>
|
||||
<endTriggers>
|
||||
<li Class="StageEndTrigger_DurationPercentage">
|
||||
<percentage>0.1</percentage>
|
||||
</li>
|
||||
</endTriggers>
|
||||
<roleBehaviors>
|
||||
<li>
|
||||
<roleId>initiator</roleId>
|
||||
<dutyDef>SpeakOnCellFacingSpectators</dutyDef>
|
||||
<speakerInteraction>Speech_Gangbang</speakerInteraction>
|
||||
<customPositions>
|
||||
<li Class="RitualPosition_OnInteractionCell" />
|
||||
</customPositions>
|
||||
</li>
|
||||
</roleBehaviors>
|
||||
</li>
|
||||
</stages>
|
||||
</RitualBehaviorDef>
|
||||
|
||||
<RitualBehaviorDef ParentName="GangbangBehaviorBase">
|
||||
<defName>GangbangByAnimal</defName>
|
||||
<workerClass>RJWSexperience.Ideology.RitualBehaviorWorker_Gangbang</workerClass>
|
||||
<roles>
|
||||
<li Class="RJWSexperience.Ideology.RitualRole_HumanBreedee">
|
||||
<label>breedee</label>
|
||||
<missingDesc>a breedee who will be fucked by animal</missingDesc>
|
||||
<id>victim</id>
|
||||
<maxCount>1</maxCount>
|
||||
<required>True</required>
|
||||
<countsAsParticipant>False</countsAsParticipant>
|
||||
<ignoreBleeding>true</ignoreBleeding>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.RitualRole_AnimalBreeder">
|
||||
<label>breeder</label>
|
||||
<id>animal</id>
|
||||
<maxCount>30</maxCount>
|
||||
<required>false</required>
|
||||
<missingDesc>a breedable animal</missingDesc>
|
||||
<countsAsParticipant>false</countsAsParticipant>
|
||||
</li>
|
||||
</roles>
|
||||
<stages Inherit="False">
|
||||
<li Class="RitualStage_InteractWithRole">
|
||||
<targets>
|
||||
<li>
|
||||
<pawnId>initiator</pawnId>
|
||||
<targetId>victim</targetId>
|
||||
</li>
|
||||
</targets>
|
||||
<defaultDuty>Spectate</defaultDuty>
|
||||
<spectateDistanceOverride>5~7</spectateDistanceOverride>
|
||||
<failTriggers>
|
||||
<li Class="StageFailTrigger_TargetPawnUnreachable">
|
||||
<takerId>initiator</takerId>
|
||||
<takeeId>victim</takeeId>
|
||||
<desc>Victim is not reachable.</desc>
|
||||
</li>
|
||||
</failTriggers>
|
||||
<endTriggers>
|
||||
<li Class="StageEndTrigger_RolesArrived">
|
||||
<roleIds>
|
||||
<li>initiator</li>
|
||||
</roleIds>
|
||||
<clearTag>true</clearTag>
|
||||
</li>
|
||||
</endTriggers>
|
||||
<roleBehaviors>
|
||||
<li>
|
||||
<roleId>initiator</roleId>
|
||||
<dutyDef>DeliverPawnToCellIfAliveThenIdle</dutyDef>
|
||||
<customPositions>
|
||||
<li Class="RitualPosition_DuelistStart">
|
||||
<distFromTarget>2</distFromTarget>
|
||||
<duelistIndex>0</duelistIndex>
|
||||
</li>
|
||||
</customPositions>
|
||||
</li>
|
||||
<li>
|
||||
<roleId>victim</roleId>
|
||||
<dutyDef>Idle</dutyDef>
|
||||
</li>
|
||||
</roleBehaviors>
|
||||
</li>
|
||||
<li>
|
||||
<defaultDuty>Spectate</defaultDuty>
|
||||
<endTriggers>
|
||||
<li Class="StageEndTrigger_DurationPercentage">
|
||||
<percentage>0.1</percentage>
|
||||
</li>
|
||||
</endTriggers>
|
||||
<roleBehaviors>
|
||||
<li>
|
||||
<roleId>initiator</roleId>
|
||||
<dutyDef>SpeakOnCellFacingSpectators</dutyDef>
|
||||
<speakerInteraction>Speech_Zoophile</speakerInteraction>
|
||||
<customPositions>
|
||||
<li Class="RitualPosition_Lectern">
|
||||
<maxDistanceToFocus>5</maxDistanceToFocus>
|
||||
</li>
|
||||
<li Class="RitualPosition_OnInteractionCell" />
|
||||
</customPositions>
|
||||
</li>
|
||||
<li>
|
||||
<roleId>animal</roleId>
|
||||
<dutyDef>Spectate</dutyDef>
|
||||
</li>
|
||||
<li>
|
||||
<roleId>victim</roleId>
|
||||
<dutyDef>LayDownAwake</dutyDef>
|
||||
</li>
|
||||
</roleBehaviors>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.RitualStage_InteractWithVictim_All">
|
||||
<defaultDuty>Spectate</defaultDuty>
|
||||
<essential>True</essential>
|
||||
<endTriggers>
|
||||
<li Class="StageEndTrigger_DurationPercentage">
|
||||
<percentage>0.9</percentage>
|
||||
</li>
|
||||
</endTriggers>
|
||||
<roleBehaviors>
|
||||
<li>
|
||||
<roleId>animal</roleId>
|
||||
<dutyDef>Gangbang_Rape</dutyDef>
|
||||
<customPositions>
|
||||
<li Class="RitualPosition_OnInteractionCell" />
|
||||
</customPositions>
|
||||
</li>
|
||||
<li>
|
||||
<roleId>victim</roleId>
|
||||
<dutyDef>LayDownAwake</dutyDef>
|
||||
</li>
|
||||
</roleBehaviors>
|
||||
</li>
|
||||
<li>
|
||||
<defaultDuty>Spectate</defaultDuty>
|
||||
<endTriggers>
|
||||
<li Class="StageEndTrigger_DurationPercentage">
|
||||
<percentage>0.1</percentage>
|
||||
</li>
|
||||
</endTriggers>
|
||||
<roleBehaviors>
|
||||
<li>
|
||||
<roleId>initiator</roleId>
|
||||
<dutyDef>SpeakOnCellFacingSpectators</dutyDef>
|
||||
<speakerInteraction>Speech_Zoophile</speakerInteraction>
|
||||
<customPositions>
|
||||
<li Class="RitualPosition_OnInteractionCell" />
|
||||
</customPositions>
|
||||
</li>
|
||||
<li>
|
||||
<roleId>victim</roleId>
|
||||
<dutyDef>LayDownAwake</dutyDef>
|
||||
</li>
|
||||
</roleBehaviors>
|
||||
</li>
|
||||
</stages>
|
||||
</RitualBehaviorDef>
|
||||
|
||||
<RitualBehaviorDef ParentName="GangbangBehaviorBase">
|
||||
<defName>GangbangByAnimal_Consensual</defName>
|
||||
<workerClass>RJWSexperience.Ideology.RitualBehaviorWorker_Gangbang_Consensual</workerClass>
|
||||
<roles>
|
||||
<li Class="RJWSexperience.Ideology.RitualRole_AnimalBreeder">
|
||||
<label>breeder</label>
|
||||
<id>animal</id>
|
||||
<maxCount>30</maxCount>
|
||||
<required>false</required>
|
||||
<missingDesc>a breedable animal</missingDesc>
|
||||
<countsAsParticipant>false</countsAsParticipant>
|
||||
</li>
|
||||
</roles>
|
||||
<stages Inherit="False">
|
||||
<li Class="RJWSexperience.Ideology.RitualStage_InteractWithInitiator">
|
||||
<defaultDuty>Spectate</defaultDuty>
|
||||
<endTriggers>
|
||||
<li Class="StageEndTrigger_RolesArrived">
|
||||
<roleIds>
|
||||
<li>initiator</li>
|
||||
</roleIds>
|
||||
</li>
|
||||
</endTriggers>
|
||||
<roleBehaviors>
|
||||
<li>
|
||||
<roleId>initiator</roleId>
|
||||
<dutyDef>ArriveToCell</dutyDef>
|
||||
</li>
|
||||
</roleBehaviors>
|
||||
</li>
|
||||
<li>
|
||||
<defaultDuty>Spectate</defaultDuty>
|
||||
<endTriggers>
|
||||
<li Class="StageEndTrigger_DurationPercentage">
|
||||
<percentage>0.1</percentage>
|
||||
</li>
|
||||
</endTriggers>
|
||||
<roleBehaviors>
|
||||
<li>
|
||||
<roleId>initiator</roleId>
|
||||
<dutyDef>SpeakOnCellFacingSpectators</dutyDef>
|
||||
<speakerInteraction>Speech_Zoophile</speakerInteraction>
|
||||
<customPositions>
|
||||
<li Class="RitualPosition_Lectern">
|
||||
<maxDistanceToFocus>5</maxDistanceToFocus>
|
||||
</li>
|
||||
<li Class="RitualPosition_OnInteractionCell" />
|
||||
</customPositions>
|
||||
</li>
|
||||
<li>
|
||||
<roleId>animal</roleId>
|
||||
<dutyDef>Spectate</dutyDef>
|
||||
</li>
|
||||
</roleBehaviors>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.RitualStage_InteractWithInitiator">
|
||||
<defaultDuty>Spectate</defaultDuty>
|
||||
<essential>True</essential>
|
||||
<endTriggers>
|
||||
<li Class="StageEndTrigger_DurationPercentage">
|
||||
<percentage>0.9</percentage>
|
||||
</li>
|
||||
</endTriggers>
|
||||
<roleBehaviors>
|
||||
<li>
|
||||
<roleId>animal</roleId>
|
||||
<dutyDef>Gangbang_Consensual</dutyDef>
|
||||
<customPositions>
|
||||
<li Class="RitualPosition_OnInteractionCell" />
|
||||
</customPositions>
|
||||
</li>
|
||||
<li>
|
||||
<roleId>initiator</roleId>
|
||||
<dutyDef>LayDownAwake</dutyDef>
|
||||
</li>
|
||||
</roleBehaviors>
|
||||
</li>
|
||||
<li>
|
||||
<defaultDuty>Spectate</defaultDuty>
|
||||
<endTriggers>
|
||||
<li Class="StageEndTrigger_DurationPercentage">
|
||||
<percentage>0.1</percentage>
|
||||
</li>
|
||||
</endTriggers>
|
||||
<roleBehaviors>
|
||||
<li>
|
||||
<roleId>initiator</roleId>
|
||||
<dutyDef>SpeakOnCellFacingSpectators</dutyDef>
|
||||
<speakerInteraction>Speech_Zoophile</speakerInteraction>
|
||||
<customPositions>
|
||||
<li Class="RitualPosition_OnInteractionCell" />
|
||||
</customPositions>
|
||||
</li>
|
||||
</roleBehaviors>
|
||||
</li>
|
||||
</stages>
|
||||
</RitualBehaviorDef>
|
||||
|
||||
<RitualBehaviorDef ParentName="DateRitualBehavior">
|
||||
<defName>DrugOrgy</defName>
|
||||
<durationTicks>7500</durationTicks>
|
||||
<roles Inherit="False" />
|
||||
<spectatorsLabel>Participants</spectatorsLabel>
|
||||
<spectatorGerund>participate</spectatorGerund>
|
||||
<stages Inherit="False">
|
||||
<li>
|
||||
<defaultDuty>DrugOrgy</defaultDuty>
|
||||
<endTriggers>
|
||||
<li Class="StageEndTrigger_DurationPercentage">
|
||||
<percentage>1.0</percentage>
|
||||
</li>
|
||||
</endTriggers>
|
||||
</li>
|
||||
</stages>
|
||||
</RitualBehaviorDef>
|
||||
</Defs>
|
||||
401
1.6/Defs/Rituals/Ritual_Outcomes_sex.xml
Normal file
401
1.6/Defs/Rituals/Ritual_Outcomes_sex.xml
Normal file
|
|
@ -0,0 +1,401 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Defs>
|
||||
<RitualOutcomeEffectDef>
|
||||
<defName>Gangbang</defName>
|
||||
<description>Depending on ritual quality, participants will get between {MINMOOD} and {MAXMOOD} mood for {MOODDAYS} days.</description>
|
||||
<workerClass>RitualOutcomeEffectWorker_Consumable</workerClass>
|
||||
<extraPredictedOutcomeDescriptions>
|
||||
<li>If the {0} is satisfying, one of the participants might gain an inspiration.</li>
|
||||
</extraPredictedOutcomeDescriptions>
|
||||
<comps>
|
||||
<li Class="RitualOutcomeComp_RolePresentNotSubstituted">
|
||||
<roleId>initiator</roleId>
|
||||
<label>moral guide present</label>
|
||||
<qualityOffset>0.10</qualityOffset>
|
||||
</li>
|
||||
<li Class="RitualOutcomeComp_ParticipantCount">
|
||||
<label>participant count</label>
|
||||
<curve>
|
||||
<points>
|
||||
<li>(1, -0.20)</li>
|
||||
<li>(3, -0.05)</li>
|
||||
<li>(5, 0.05)</li>
|
||||
<li>(10, 0.10)</li>
|
||||
</points>
|
||||
</curve>
|
||||
</li>
|
||||
<li Class="RitualOutcomeComp_RitualTargetDefs">
|
||||
<allowAltars>true</allowAltars>
|
||||
<label>started at altar</label>
|
||||
<qualityOffset>0.2</qualityOffset>
|
||||
<expectedThingLabelTip>an altar</expectedThingLabelTip>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.RitualOutcomeComp_HediffBased">
|
||||
<label>victim broken</label>
|
||||
<qualityOffset>0.15</qualityOffset>
|
||||
<hediffDef>FeelingBroken</hediffDef>
|
||||
<minSeverity>0.3</minSeverity>
|
||||
<roleId>victim</roleId>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.RitualOutcomeComp_HediffBased">
|
||||
<label>victim extremly broken</label>
|
||||
<qualityOffset>0.15</qualityOffset>
|
||||
<hediffDef>FeelingBroken</hediffDef>
|
||||
<minSeverity>0.5</minSeverity>
|
||||
<roleId>victim</roleId>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.RitualOutcomeComp_HediffBased">
|
||||
<label>victim completely broken</label>
|
||||
<qualityOffset>0.3</qualityOffset>
|
||||
<hediffDef>FeelingBroken</hediffDef>
|
||||
<minSeverity>0.9</minSeverity>
|
||||
<roleId>victim</roleId>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.RitualOutcomeComp_NeedBased">
|
||||
<label>statisfied participants</label>
|
||||
<qualityOffset>0.4</qualityOffset>
|
||||
<needDef>Sex</needDef>
|
||||
<minAvgNeed>0.7</minAvgNeed>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.RitualOutcomeComp_NeedBased">
|
||||
<label>completly statisfied participants</label>
|
||||
<qualityOffset>0.4</qualityOffset>
|
||||
<needDef>Sex</needDef>
|
||||
<minAvgNeed>0.9</minAvgNeed>
|
||||
</li>
|
||||
</comps>
|
||||
<outcomeChances>
|
||||
<li>
|
||||
<label>Terrible</label>
|
||||
<chance>0.05</chance>
|
||||
<memory>TerribleGangbang</memory>
|
||||
<description>The {0} was terrible! The speech was stuttering and incoherent, and the victim was botched - everyone was waiting for it to end.</description>
|
||||
<positivityIndex>-2</positivityIndex>
|
||||
</li>
|
||||
<li>
|
||||
<label>Boring</label>
|
||||
<chance>0.10</chance>
|
||||
<memory>BoringGangbang</memory>
|
||||
<description>The {0} was boring. The speech was repetitive and the victim was noticeably flawed. It just didn't feel dignified.</description>
|
||||
<positivityIndex>-1</positivityIndex>
|
||||
</li>
|
||||
<li>
|
||||
<label>Satisfying</label>
|
||||
<chance>0.6</chance>
|
||||
<memory>FunGangbang</memory>
|
||||
<description>The {0} was satisfying. The speech felt meaningful, and the victim was precise and dignified.</description>
|
||||
<potentialExtraOutcomeDesc>There's a 5% chance that a random participant gets an inspiration.</potentialExtraOutcomeDesc>
|
||||
<positivityIndex>1</positivityIndex>
|
||||
</li>
|
||||
<li>
|
||||
<label>Spectacular</label>
|
||||
<chance>0.25</chance>
|
||||
<memory>UnforgettableGangbang</memory>
|
||||
<description>The {0} was spectacular! The speech brought everyone to the edge of a frenzy and the victim was like succubus.</description>
|
||||
<potentialExtraOutcomeDesc>There's a 10% chance that a random participant gets an inspiration.</potentialExtraOutcomeDesc>
|
||||
<positivityIndex>2</positivityIndex>
|
||||
</li>
|
||||
</outcomeChances>
|
||||
</RitualOutcomeEffectDef>
|
||||
|
||||
<RitualOutcomeEffectDef>
|
||||
<defName>Gangbang_Consensual</defName>
|
||||
<description>Depending on ritual quality, participants will get between {MINMOOD} and {MAXMOOD} mood for {MOODDAYS} days.</description>
|
||||
<workerClass>RitualOutcomeEffectWorker_Consumable</workerClass>
|
||||
<extraPredictedOutcomeDescriptions>
|
||||
<li>If the {0} is satisfying, one of the participants might gain an inspiration.</li>
|
||||
</extraPredictedOutcomeDescriptions>
|
||||
<comps>
|
||||
<li Class="RitualOutcomeComp_RolePresentNotSubstituted">
|
||||
<roleId>initiator</roleId>
|
||||
<label>moral guide present</label>
|
||||
<qualityOffset>0.10</qualityOffset>
|
||||
</li>
|
||||
<li Class="RitualOutcomeComp_ParticipantCount">
|
||||
<label>participant count</label>
|
||||
<curve>
|
||||
<points>
|
||||
<li>(1, -0.20)</li>
|
||||
<li>(3, -0.05)</li>
|
||||
<li>(5, 0.05)</li>
|
||||
<li>(10, 0.10)</li>
|
||||
</points>
|
||||
</curve>
|
||||
</li>
|
||||
<li Class="RitualOutcomeComp_RitualTargetDefs">
|
||||
<allowAltars>true</allowAltars>
|
||||
<label>started at altar</label>
|
||||
<qualityOffset>0.2</qualityOffset>
|
||||
<expectedThingLabelTip>an altar</expectedThingLabelTip>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.RitualOutcomeComp_NeedBased">
|
||||
<label>statisfied participants</label>
|
||||
<qualityOffset>0.4</qualityOffset>
|
||||
<needDef>Sex</needDef>
|
||||
<minAvgNeed>0.7</minAvgNeed>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.RitualOutcomeComp_NeedBased">
|
||||
<label>completly statisfied participants</label>
|
||||
<qualityOffset>1.0</qualityOffset>
|
||||
<needDef>Sex</needDef>
|
||||
<minAvgNeed>0.8</minAvgNeed>
|
||||
</li>
|
||||
</comps>
|
||||
<outcomeChances>
|
||||
<li>
|
||||
<label>Terrible</label>
|
||||
<chance>0.05</chance>
|
||||
<memory>TerribleGangbang</memory>
|
||||
<description>The {0} was terrible! The speech was stuttering and incoherent, and the victim was botched - everyone was waiting for it to end.</description>
|
||||
<positivityIndex>-2</positivityIndex>
|
||||
</li>
|
||||
<li>
|
||||
<label>Boring</label>
|
||||
<chance>0.10</chance>
|
||||
<memory>BoringGangbang</memory>
|
||||
<description>The {0} was boring. The speech was repetitive and the victim was noticeably flawed. It just didn't feel dignified.</description>
|
||||
<positivityIndex>-1</positivityIndex>
|
||||
</li>
|
||||
<li>
|
||||
<label>Satisfying</label>
|
||||
<chance>0.6</chance>
|
||||
<memory>FunGangbang</memory>
|
||||
<description>The {0} was satisfying. The speech felt meaningful, and the victim was precise and dignified.</description>
|
||||
<potentialExtraOutcomeDesc>There's a 5% chance that a random participant gets an inspiration.</potentialExtraOutcomeDesc>
|
||||
<positivityIndex>1</positivityIndex>
|
||||
</li>
|
||||
<li>
|
||||
<label>Spectacular</label>
|
||||
<chance>0.25</chance>
|
||||
<memory>UnforgettableGangbang</memory>
|
||||
<description>The {0} was spectacular! The speech brought everyone to the edge of a frenzy and the victim was like succubus.</description>
|
||||
<potentialExtraOutcomeDesc>There's a 10% chance that a random participant gets an inspiration.</potentialExtraOutcomeDesc>
|
||||
<positivityIndex>2</positivityIndex>
|
||||
</li>
|
||||
</outcomeChances>
|
||||
</RitualOutcomeEffectDef>
|
||||
|
||||
<RitualOutcomeEffectDef>
|
||||
<defName>BestialGangbang</defName>
|
||||
<description>Depending on ritual quality, participants will get between {MINMOOD} and {MAXMOOD} mood for {MOODDAYS} days.</description>
|
||||
<workerClass>RitualOutcomeEffectWorker_Consumable</workerClass>
|
||||
<extraPredictedOutcomeDescriptions>
|
||||
<li>If the {0} is satisfying, one of the participants might gain an inspiration.</li>
|
||||
</extraPredictedOutcomeDescriptions>
|
||||
<comps>
|
||||
<li Class="RitualOutcomeComp_RolePresentNotSubstituted">
|
||||
<roleId>initiator</roleId>
|
||||
<label>moral guide present</label>
|
||||
<qualityOffset>0.10</qualityOffset>
|
||||
</li>
|
||||
<li Class="RitualOutcomeComp_ParticipantCount">
|
||||
<label>participant count</label>
|
||||
<curve>
|
||||
<points>
|
||||
<li>(1, -0.50)</li>
|
||||
<li>(3, -0.30)</li>
|
||||
<li>(5, -0.15)</li>
|
||||
<li>(10, -0.10)</li>
|
||||
</points>
|
||||
</curve>
|
||||
</li>
|
||||
<li Class="RitualOutcomeComp_RitualTargetDefs">
|
||||
<allowAltars>true</allowAltars>
|
||||
<label>started at altar</label>
|
||||
<qualityOffset>0.2</qualityOffset>
|
||||
<expectedThingLabelTip>an altar</expectedThingLabelTip>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.RitualOutcomeComp_HediffBased">
|
||||
<label>breedee broken</label>
|
||||
<qualityOffset>0.45</qualityOffset>
|
||||
<hediffDef>FeelingBroken</hediffDef>
|
||||
<minSeverity>0.3</minSeverity>
|
||||
<roleId>victim</roleId>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.RitualOutcomeComp_HediffBased">
|
||||
<label>breedee extremly broken</label>
|
||||
<qualityOffset>0.45</qualityOffset>
|
||||
<hediffDef>FeelingBroken</hediffDef>
|
||||
<minSeverity>0.5</minSeverity>
|
||||
<roleId>victim</roleId>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.RitualOutcomeComp_HediffBased">
|
||||
<label>breedee completely broken</label>
|
||||
<qualityOffset>0.8</qualityOffset>
|
||||
<hediffDef>FeelingBroken</hediffDef>
|
||||
<minSeverity>0.9</minSeverity>
|
||||
<roleId>victim</roleId>
|
||||
</li>
|
||||
</comps>
|
||||
<outcomeChances>
|
||||
<li>
|
||||
<label>Terrible</label>
|
||||
<chance>0.05</chance>
|
||||
<memory>TerribleGangbang</memory>
|
||||
<description>The {0} was terrible! The speech was stuttering and incoherent, and the victim was botched - everyone was waiting for it to end.</description>
|
||||
<positivityIndex>-2</positivityIndex>
|
||||
</li>
|
||||
<li>
|
||||
<label>Boring</label>
|
||||
<chance>0.10</chance>
|
||||
<memory>BoringGangbang</memory>
|
||||
<description>The {0} was boring. The speech was repetitive and the victim was noticeably flawed. It just didn't feel dignified.</description>
|
||||
<positivityIndex>-1</positivityIndex>
|
||||
</li>
|
||||
<li>
|
||||
<label>Satisfying</label>
|
||||
<chance>0.65</chance>
|
||||
<memory>FunGangbang</memory>
|
||||
<description>The {0} was satisfying. The speech felt meaningful, and the victim was precise and dignified.</description>
|
||||
<potentialExtraOutcomeDesc>There's a 5% chance that a random participant gets an inspiration.</potentialExtraOutcomeDesc>
|
||||
<positivityIndex>1</positivityIndex>
|
||||
</li>
|
||||
<li>
|
||||
<label>Spectacular</label>
|
||||
<chance>0.2</chance>
|
||||
<memory>UnforgettableGangbang</memory>
|
||||
<description>The {0} was spectacular! The speech brought everyone to the edge of a frenzy and the victim was like succubus.</description>
|
||||
<potentialExtraOutcomeDesc>There's a 10% chance that a random participant gets an inspiration.</potentialExtraOutcomeDesc>
|
||||
<positivityIndex>2</positivityIndex>
|
||||
</li>
|
||||
</outcomeChances>
|
||||
</RitualOutcomeEffectDef>
|
||||
|
||||
<RitualOutcomeEffectDef>
|
||||
<defName>BestialGangbang_Consensual</defName>
|
||||
<description>Depending on ritual quality, participants will get between {MINMOOD} and {MAXMOOD} mood for {MOODDAYS} days.</description>
|
||||
<workerClass>RitualOutcomeEffectWorker_Consumable</workerClass>
|
||||
<extraPredictedOutcomeDescriptions>
|
||||
<li>If the {0} is satisfying, one of the participants might gain an inspiration.</li>
|
||||
</extraPredictedOutcomeDescriptions>
|
||||
<comps>
|
||||
<li Class="RitualOutcomeComp_RolePresentNotSubstituted">
|
||||
<roleId>initiator</roleId>
|
||||
<label>moral guide present</label>
|
||||
<qualityOffset>0.10</qualityOffset>
|
||||
</li>
|
||||
<li Class="RitualOutcomeComp_ParticipantCount">
|
||||
<label>participant count</label>
|
||||
<curve>
|
||||
<points>
|
||||
<li>(1, 0.20)</li>
|
||||
<li>(3, 0.40)</li>
|
||||
<li>(5, 0.65)</li>
|
||||
<li>(10, 1.20)</li>
|
||||
</points>
|
||||
</curve>
|
||||
</li>
|
||||
<li Class="RitualOutcomeComp_RitualTargetDefs">
|
||||
<allowAltars>true</allowAltars>
|
||||
<label>started at altar</label>
|
||||
<qualityOffset>0.2</qualityOffset>
|
||||
<expectedThingLabelTip>an altar</expectedThingLabelTip>
|
||||
</li>
|
||||
</comps>
|
||||
<outcomeChances>
|
||||
<li>
|
||||
<label>Terrible</label>
|
||||
<chance>0.05</chance>
|
||||
<memory>TerribleGangbang</memory>
|
||||
<description>The {0} was terrible! The speech was stuttering and incoherent, and the victim was botched - everyone was waiting for it to end.</description>
|
||||
<positivityIndex>-2</positivityIndex>
|
||||
</li>
|
||||
<li>
|
||||
<label>Boring</label>
|
||||
<chance>0.10</chance>
|
||||
<memory>BoringGangbang</memory>
|
||||
<description>The {0} was boring. The speech was repetitive and the victim was noticeably flawed. It just didn't feel dignified.</description>
|
||||
<positivityIndex>-1</positivityIndex>
|
||||
</li>
|
||||
<li>
|
||||
<label>Satisfying</label>
|
||||
<chance>0.65</chance>
|
||||
<memory>FunGangbang</memory>
|
||||
<description>The {0} was satisfying. The speech felt meaningful, and the victim was precise and dignified.</description>
|
||||
<potentialExtraOutcomeDesc>There's a 5% chance that a random participant gets an inspiration.</potentialExtraOutcomeDesc>
|
||||
<positivityIndex>1</positivityIndex>
|
||||
</li>
|
||||
<li>
|
||||
<label>Spectacular</label>
|
||||
<chance>0.2</chance>
|
||||
<memory>UnforgettableGangbang</memory>
|
||||
<description>The {0} was spectacular! The speech brought everyone to the edge of a frenzy and the victim was like succubus.</description>
|
||||
<potentialExtraOutcomeDesc>There's a 10% chance that a random participant gets an inspiration.</potentialExtraOutcomeDesc>
|
||||
<positivityIndex>2</positivityIndex>
|
||||
</li>
|
||||
</outcomeChances>
|
||||
</RitualOutcomeEffectDef>
|
||||
|
||||
<RitualOutcomeEffectDef>
|
||||
<defName>DrugOrgy</defName>
|
||||
<description>Depending on ritual quality, participants will get between {MINMOOD} and {MAXMOOD} mood for {MOODDAYS} days.</description>
|
||||
<workerClass>RitualOutcomeEffectWorker_RemoveConsumableBuilding</workerClass>
|
||||
<extraPredictedOutcomeDescriptions>
|
||||
<li>If the {0} is satisfying, one of the participants might gain an inspiration.</li>
|
||||
</extraPredictedOutcomeDescriptions>
|
||||
<comps>
|
||||
<li Class="RitualOutcomeComp_DestroyConsumableBuilding" />
|
||||
<li Class="RitualOutcomeComp_ParticipantCount">
|
||||
<label>participant count</label>
|
||||
<curve>
|
||||
<points>
|
||||
<li>(1, -0.50)</li>
|
||||
<li>(3, 0.0)</li>
|
||||
<li>(5, 0.10)</li>
|
||||
<li>(10, 0.30)</li>
|
||||
</points>
|
||||
</curve>
|
||||
</li>
|
||||
<li Class="RitualOutcomeComp_RoomStat">
|
||||
<label>room impressiveness</label>
|
||||
<statDef>Impressiveness</statDef>
|
||||
<curve>
|
||||
<points>
|
||||
<li>0, 0</li>
|
||||
<li>50, 0.1</li>
|
||||
<li>120, 0.2</li>
|
||||
</points>
|
||||
</curve>
|
||||
</li>
|
||||
<li Class="RJWSexperience.Ideology.RitualOutcomeComp_NeedBased">
|
||||
<label>statisfied participants</label>
|
||||
<qualityOffset>0.7</qualityOffset>
|
||||
<needDef>Sex</needDef>
|
||||
<minAvgNeed>0.7</minAvgNeed>
|
||||
</li>
|
||||
</comps>
|
||||
<outcomeChances>
|
||||
<li>
|
||||
<label>Terrible</label>
|
||||
<chance>0.05</chance>
|
||||
<memory>TerribleOrgy</memory>
|
||||
<description>The {0} was terrible!</description>
|
||||
<positivityIndex>-2</positivityIndex>
|
||||
</li>
|
||||
<li>
|
||||
<label>Boring</label>
|
||||
<chance>0.10</chance>
|
||||
<memory>BoringOrgy</memory>
|
||||
<description>The {0} was boring.</description>
|
||||
<positivityIndex>-1</positivityIndex>
|
||||
</li>
|
||||
<li>
|
||||
<label>Satisfying</label>
|
||||
<chance>0.6</chance>
|
||||
<memory>FunOrgy</memory>
|
||||
<description>The {0} was satisfying.</description>
|
||||
<potentialExtraOutcomeDesc>There's a 5% chance that a random participant gets an inspiration.</potentialExtraOutcomeDesc>
|
||||
<positivityIndex>1</positivityIndex>
|
||||
</li>
|
||||
<li>
|
||||
<label>Spectacular</label>
|
||||
<chance>0.25</chance>
|
||||
<memory>UnforgettableOrgy</memory>
|
||||
<description>The {0} was spectacular!</description>
|
||||
<potentialExtraOutcomeDesc>There's a 10% chance that a random participant gets an inspiration.</potentialExtraOutcomeDesc>
|
||||
<positivityIndex>2</positivityIndex>
|
||||
</li>
|
||||
</outcomeChances>
|
||||
</RitualOutcomeEffectDef>
|
||||
</Defs>
|
||||
16
1.6/Defs/Rituals/Ritual_Targets_sex.xml
Normal file
16
1.6/Defs/Rituals/Ritual_Targets_sex.xml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
|
||||
<Defs>
|
||||
<RitualObligationTargetFilterDef>
|
||||
<defName>RitualSpotOrAltar_Gangbang</defName>
|
||||
<workerClass>RitualObligationTargetWorker_AnyRitualSpotOrAltar_Scarification</workerClass>
|
||||
</RitualObligationTargetFilterDef>
|
||||
|
||||
<RitualObligationTargetFilterDef>
|
||||
<defName>DrugOrgy</defName>
|
||||
<workerClass>RitualObligationTargetWorker_ConsumableBuilding</workerClass>
|
||||
<thingDefs>
|
||||
<li>Burnbong_Aphrodisiac</li>
|
||||
</thingDefs>
|
||||
</RitualObligationTargetFilterDef>
|
||||
</Defs>
|
||||
132
1.6/Defs/ThingDefs/Buildings_Ideo_sex.xml
Normal file
132
1.6/Defs/ThingDefs/Buildings_Ideo_sex.xml
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Defs>
|
||||
<ThingDef ParentName="IdeoSmokerBase">
|
||||
<defName>Burnbong_Aphrodisiac</defName>
|
||||
<label>lustbong</label>
|
||||
<description>A wood structure packed with humpshroom. It can be ignited during a ritual and produce a huge amount of humpshroom smoke for a few hours, after which it is destroyed.</description>
|
||||
<drawerType>RealtimeOnly</drawerType>
|
||||
<graphicData>
|
||||
<graphicClass>Graphic_Single</graphicClass>
|
||||
<texPath>Things/Building/Misc/Burnbong/Burnbong</texPath>
|
||||
<drawSize>(1.2,1.2)</drawSize>
|
||||
<shadowData>
|
||||
<volume>(0.92, 1 ,0.92)</volume>
|
||||
</shadowData>
|
||||
</graphicData>
|
||||
<size>(1,1)</size>
|
||||
<costList>
|
||||
<WoodLog>30</WoodLog>
|
||||
<HumpShroom>30</HumpShroom>
|
||||
</costList>
|
||||
<killedLeavings>
|
||||
<HumpShroom>30</HumpShroom>
|
||||
</killedLeavings>
|
||||
<leaveResourcesWhenKilled>false</leaveResourcesWhenKilled>
|
||||
<statBases>
|
||||
<MaxHitPoints>50</MaxHitPoints>
|
||||
<WorkToBuild>10000</WorkToBuild>
|
||||
<Mass>25</Mass>
|
||||
</statBases>
|
||||
<comps>
|
||||
<li Class="CompProperties_RitualTargetEffecterSpawner">
|
||||
<effecter>BurnbongSmoke</effecter>
|
||||
</li>
|
||||
<li Class="CompProperties_FireOverlayRitual">
|
||||
<fireSize>0.5</fireSize>
|
||||
<offset>(0, 0, 0.42)</offset>
|
||||
</li>
|
||||
<li Class="CompProperties_RitualHediffGiverInRoom">
|
||||
<hediff>HumpShroomEffect</hediff>
|
||||
<resetLastRecreationalDrugTick>true</resetLastRecreationalDrugTick>
|
||||
<minRadius>10</minRadius>
|
||||
<severity>0.01</severity>
|
||||
</li>
|
||||
</comps>
|
||||
</ThingDef>
|
||||
|
||||
<ThingDef ParentName="BuildingBase">
|
||||
<defName>Autobong_Aphrodisiac</defName>
|
||||
<label>estro-bong</label>
|
||||
<description>An automatic humpshroom-burning device which generates an estro-smoke cloud around itself. Anyone in the cloud will become horny over time.</description>
|
||||
<category>Building</category>
|
||||
<graphicData>
|
||||
<texPath>Things/Building/Misc/Autobong/Autobong</texPath>
|
||||
<graphicClass>Graphic_Single</graphicClass>
|
||||
<drawSize>(2,2)</drawSize>
|
||||
<shaderType>CutoutComplex</shaderType>
|
||||
</graphicData>
|
||||
<uiIconPath>Things/Building/Misc/Autobong/Autobong</uiIconPath>
|
||||
<altitudeLayer>Building</altitudeLayer>
|
||||
<passability>PassThroughOnly</passability>
|
||||
<pathCost>42</pathCost>
|
||||
<tickerType>Normal</tickerType>
|
||||
<drawerType>RealtimeOnly</drawerType>
|
||||
<fillPercent>0.20</fillPercent>
|
||||
<canGenerateDefaultDesignator>false</canGenerateDefaultDesignator>
|
||||
<size>(2,2)</size>
|
||||
<statBases>
|
||||
<MaxHitPoints>80</MaxHitPoints>
|
||||
<WorkToBuild>800</WorkToBuild>
|
||||
</statBases>
|
||||
<selectable>true</selectable>
|
||||
<costList>
|
||||
<HumpShroom>10</HumpShroom>
|
||||
<ComponentIndustrial>3</ComponentIndustrial>
|
||||
</costList>
|
||||
<stuffCategories>
|
||||
<li>Metallic</li>
|
||||
<li>Woody</li>
|
||||
</stuffCategories>
|
||||
<costStuffCount>100</costStuffCount>
|
||||
<leaveResourcesWhenKilled>true</leaveResourcesWhenKilled>
|
||||
<researchPrerequisites>
|
||||
<li>MicroelectronicsBasics</li>
|
||||
</researchPrerequisites>
|
||||
<comps>
|
||||
<li Class="CompProperties_Refuelable">
|
||||
<fuelConsumptionRate>0.35</fuelConsumptionRate>
|
||||
<fuelCapacity>10.0</fuelCapacity>
|
||||
<fuelFilter>
|
||||
<thingDefs>
|
||||
<li>HumpShroom</li>
|
||||
</thingDefs>
|
||||
</fuelFilter>
|
||||
<initialFuelPercent>1</initialFuelPercent>
|
||||
<showAllowAutoRefuelToggle>true</showAllowAutoRefuelToggle>
|
||||
<consumeFuelOnlyWhenPowered>true</consumeFuelOnlyWhenPowered>
|
||||
</li>
|
||||
<li Class="CompProperties_Glower">
|
||||
<glowRadius>10</glowRadius>
|
||||
<glowColor>(252,187,113,0)</glowColor>
|
||||
</li>
|
||||
<li>
|
||||
<compClass>CompGatherSpot</compClass>
|
||||
</li>
|
||||
<li Class="CompProperties_Power">
|
||||
<compClass>CompPowerTrader</compClass>
|
||||
<basePowerConsumption>150</basePowerConsumption>
|
||||
<shortCircuitInRain>true</shortCircuitInRain>
|
||||
</li>
|
||||
<li Class="CompProperties_Flickable" />
|
||||
<li Class="CompProperties_GiveHediffSeverity">
|
||||
<hediff>HumpShroomEffect</hediff>
|
||||
<range>4.9</range>
|
||||
<severityPerSecond>0.005</severityPerSecond>
|
||||
<drugExposure>true</drugExposure>
|
||||
</li>
|
||||
<li Class="CompProperties_SmokeCloudMaker">
|
||||
<sourceStreamEffect>BurnbongSmoke</sourceStreamEffect>
|
||||
<cloudRadius>4.9</cloudRadius>
|
||||
<fleckScale>4</fleckScale>
|
||||
<cloudFleck>AutobongSmoke</cloudFleck>
|
||||
<fleckSpawnMTB>25</fleckSpawnMTB>
|
||||
</li>
|
||||
</comps>
|
||||
<designationCategory>Misc</designationCategory>
|
||||
<drawPlaceWorkersWhileSelected>true</drawPlaceWorkersWhileSelected>
|
||||
<placeWorkers>
|
||||
<li>PlaceWorker_SmokeCloudMaker</li>
|
||||
</placeWorkers>
|
||||
</ThingDef>
|
||||
</Defs>
|
||||
115
1.6/Defs/ThoughtDefs/Thoughts_Ritual_sex_Quality.xml
Normal file
115
1.6/Defs/ThoughtDefs/Thoughts_Ritual_sex_Quality.xml
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
|
||||
<Defs>
|
||||
<ThoughtDef>
|
||||
<defName>TerribleGangbang</defName>
|
||||
<thoughtClass>Thought_AttendedRitual</thoughtClass>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>3</stackLimit>
|
||||
<stages>
|
||||
<li>
|
||||
<label>terrible gangbang</label>
|
||||
<description>That gangbang was terrible. ugh.</description>
|
||||
<baseMoodEffect>-3</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>BoringGangbang</defName>
|
||||
<thoughtClass>Thought_AttendedRitual</thoughtClass>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>3</stackLimit>
|
||||
<stages>
|
||||
<li>
|
||||
<label>boring gangbang</label>
|
||||
<description>That gangbang was not good. Wish I never went.</description>
|
||||
<baseMoodEffect>-1</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>FunGangbang</defName>
|
||||
<thoughtClass>Thought_AttendedRitual</thoughtClass>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>3</stackLimit>
|
||||
<stages>
|
||||
<li>
|
||||
<label>fun gangbang</label>
|
||||
<description>That was a fun gangbang. It really satisfied me.</description>
|
||||
<baseMoodEffect>8</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>UnforgettableGangbang</defName>
|
||||
<thoughtClass>Thought_AttendedRitual</thoughtClass>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>3</stackLimit>
|
||||
<stages>
|
||||
<li>
|
||||
<label>unforgettable gangbang</label>
|
||||
<description>That gangbang was awesome! Everything was perfect.</description>
|
||||
<baseMoodEffect>16</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>TerribleOrgy</defName>
|
||||
<thoughtClass>Thought_AttendedRitual</thoughtClass>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>3</stackLimit>
|
||||
<stages>
|
||||
<li>
|
||||
<label>terrible orgy</label>
|
||||
<description>That orgy was terrible. ugh.</description>
|
||||
<baseMoodEffect>-3</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>BoringOrgy</defName>
|
||||
<thoughtClass>Thought_AttendedRitual</thoughtClass>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>3</stackLimit>
|
||||
<stages>
|
||||
<li>
|
||||
<label>boring orgy</label>
|
||||
<description>That orgy was not good. Wish I never went.</description>
|
||||
<baseMoodEffect>-1</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>FunOrgy</defName>
|
||||
<thoughtClass>Thought_AttendedRitual</thoughtClass>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>3</stackLimit>
|
||||
<stages>
|
||||
<li>
|
||||
<label>fun orgy</label>
|
||||
<description>That was a fun orgy. It really satisfied me.</description>
|
||||
<baseMoodEffect>8</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
||||
<ThoughtDef>
|
||||
<defName>UnforgettableOrgy</defName>
|
||||
<thoughtClass>Thought_AttendedRitual</thoughtClass>
|
||||
<durationDays>6</durationDays>
|
||||
<stackLimit>3</stackLimit>
|
||||
<stages>
|
||||
<li>
|
||||
<label>unforgettable orgy</label>
|
||||
<description>That orgy was awesome! Everything was perfect.</description>
|
||||
<baseMoodEffect>16</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
</Defs>
|
||||
65
1.6/Patches/Core_Thoughts_Memory_Death.xml
Normal file
65
1.6/Patches/Core_Thoughts_Memory_Death.xml
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Patch>
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyKinDied" or defName="MyCousinDied" or defName="MyGrandparentDied" or defName="MyUncleDied" or defName="MyAuntDied" or defName="MyHalfSiblingDied" or defName="MyNephewDied" or defName="MyNieceDied"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyKinDied" or defName="MyCousinDied" or defName="MyGrandparentDied" or defName="MyUncleDied" or defName="MyAuntDied" or defName="MyHalfSiblingDied" or defName="MyNephewDied" or defName="MyNieceDied"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyKinDied" or defName="MyCousinDied" or defName="MyGrandparentDied" or defName="MyUncleDied" or defName="MyAuntDied" or defName="MyHalfSiblingDied" or defName="MyNephewDied" or defName="MyNieceDied"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyMotherDied" or defName="MyFatherDied" or defName="MyGrandchildDied" or defName="MySisterDied" or defName="MyBrotherDied" or defName="MyDaughterDied" or defName="MySonDied"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyMotherDied" or defName="MyFatherDied" or defName="MyGrandchildDied" or defName="MySisterDied" or defName="MyBrotherDied" or defName="MyDaughterDied" or defName="MySonDied"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyMotherDied" or defName="MyFatherDied" or defName="MyGrandchildDied" or defName="MySisterDied" or defName="MyBrotherDied" or defName="MyDaughterDied" or defName="MySonDied"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="KnowGuestExecuted" or defName="KnowColonistExecuted" or defName="KnowPrisonerDiedInnocent" or defName="KnowColonistDied" or defName="PawnWithGoodOpinionDied" or defName="PawnWithBadOpinionDied"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="KnowGuestExecuted" or defName="KnowColonistExecuted" or defName="KnowPrisonerDiedInnocent" or defName="KnowColonistDied" or defName="PawnWithGoodOpinionDied" or defName="PawnWithBadOpinionDied"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_OnlyFamily</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="KnowGuestExecuted" or defName="KnowColonistExecuted" or defName="KnowPrisonerDiedInnocent" or defName="KnowColonistDied" or defName="PawnWithGoodOpinionDied" or defName="PawnWithBadOpinionDied"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_OnlyFamily</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
</Patch>
|
||||
65
1.6/Patches/Core_Thoughts_Memory_Lost.xml
Normal file
65
1.6/Patches/Core_Thoughts_Memory_Lost.xml
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Patch>
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyKinLost" or defName="MyCousinLost" or defName="MyGrandparentLost" or defName="MyUncleLost" or defName="MyAuntLost" or defName="MyHalfSiblingLost" or defName="MyNephewLost" or defName="MyNieceLost"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyKinLost" or defName="MyCousinLost" or defName="MyGrandparentLost" or defName="MyUncleLost" or defName="MyAuntLost" or defName="MyHalfSiblingLost" or defName="MyNephewLost" or defName="MyNieceLost"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyKinLost" or defName="MyCousinLost" or defName="MyGrandparentLost" or defName="MyUncleLost" or defName="MyAuntLost" or defName="MyHalfSiblingLost" or defName="MyNephewLost" or defName="MyNieceLost"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyMotherLost" or defName="MyFatherLost" or defName="MyGrandchildLost" or defName="MySisterLost" or defName="MyBrotherLost" or defName="MyDaughterLost" or defName="MySonLost"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyMotherLost" or defName="MyFatherLost" or defName="MyGrandchildLost" or defName="MySisterLost" or defName="MyBrotherLost" or defName="MyDaughterLost" or defName="MySonLost"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyMotherLost" or defName="MyFatherLost" or defName="MyGrandchildLost" or defName="MySisterLost" or defName="MyBrotherLost" or defName="MyDaughterLost" or defName="MySonLost"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="ColonistLost" or defName="PawnWithGoodOpinionLost" or defName="PawnWithBadOpinionLost"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="ColonistLost" or defName="PawnWithGoodOpinionLost" or defName="PawnWithBadOpinionLost"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_OnlyFamily</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="ColonistLost" or defName="PawnWithGoodOpinionLost" or defName="PawnWithBadOpinionLost"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_OnlyFamily</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
</Patch>
|
||||
103
1.6/Patches/Core_Thoughts_Memory_Misc.xml
Normal file
103
1.6/Patches/Core_Thoughts_Memory_Misc.xml
Normal file
|
|
@ -0,0 +1,103 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Patch>
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="WitnessedDeathAlly"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="WitnessedDeathAlly"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_OnlyFamily</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="WitnessedDeathAlly"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_OnlyFamily</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="WitnessedDeathNonAlly"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="WitnessedDeathNonAlly"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_OnlyFamily</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="WitnessedDeathNonAlly"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_OnlyFamily</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="WitnessedDeathFamily"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="WitnessedDeathFamily"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="WitnessedDeathFamily"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="ColonistBanishedToDie"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="ColonistBanishedToDie"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_OnlyFamily</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="ColonistBanishedToDie"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_OnlyFamily</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="PrisonerBanishedToDie"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="PrisonerBanishedToDie"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_OnlyFamily</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="PrisonerBanishedToDie"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_OnlyFamily</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
</Patch>
|
||||
23
1.6/Patches/Core_Thoughts_Situation_Special.xml
Normal file
23
1.6/Patches/Core_Thoughts_Situation_Special.xml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Patch>
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="ColonistLeftUnburied"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="ColonistLeftUnburied"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_OnlyFamily</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="ColonistLeftUnburied"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_OnlyFamily</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
</Patch>
|
||||
14
1.6/Patches/InteractionDef/Masturbation.xml
Normal file
14
1.6/Patches/InteractionDef/Masturbation.xml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Patch>
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Masturbation_AutoBreastjob" or defName="Masturbation_AutoFellatio" or defName="Masturbation_Breastjob" or defName="Masturbation_HandjobA" or defName="Masturbation_HandjobP" or defName="Masturbation_HandjobV"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_Masturbated</li>
|
||||
</pawnEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
</Patch>
|
||||
25
1.6/Patches/InteractionDef/Necro.xml
Normal file
25
1.6/Patches/InteractionDef/Necro.xml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Patch>
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Necro_Anal" or defName="Necro_DoublePenetration" or defName="Necro_DoublePenetrationM" or defName="Necro_Vaginal"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_SexWithCorpse</li>
|
||||
</pawnEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Necro_Reverse_Anal" or defName="Necro_Reverse_DoublePenetration" or defName="Necro_Reverse_DoublePenetrationM" or defName="Necro_Reverse_Vaginal"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_SexWithCorpse</li>
|
||||
</pawnEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
</Patch>
|
||||
83
1.6/Patches/InteractionDef/Rape.xml
Normal file
83
1.6/Patches/InteractionDef/Rape.xml
Normal file
|
|
@ -0,0 +1,83 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Patch>
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Rape_Vaginal"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_VaginalSex</li>
|
||||
<li>RSI_Raped</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<!--<li>RSI_VaginalSex</li>-->
|
||||
<li>RSI_WasRaped</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Rape_Anal" or defName="Rape_Rimming"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_AnalSex</li>
|
||||
<li>RSI_Raped</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<!--<li>RSI_AnalSex</li>-->
|
||||
<li>RSI_WasRaped</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Rape_Beakjob" or defName="Rape_Cunnilingus" or defName="Rape_Fellatio" or defName="Rape_Oral"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_OralSex</li>
|
||||
<li>RSI_Raped</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<!--<li>RSI_OralSex</li>-->
|
||||
<li>RSI_WasRaped</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Rape_Breastjob" or defName="Rape_Fingering" or defName="Rape_Footjob" or defName="Rape_Handjob"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_MiscSex</li>
|
||||
<li>RSI_Raped</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<!--<li>RSI_MiscSex</li>-->
|
||||
<li>RSI_WasRaped</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Rape_DoublePenetration" or defName="Rape_DoublePenetrationM" or defName="Rape_Fisting" or defName="Rape_Scissoring"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_PromiscuousSex</li>
|
||||
<li>RSI_Raped</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<!--<li>RSI_PromiscuousSex</li>-->
|
||||
<li>RSI_WasRaped</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
</Patch>
|
||||
83
1.6/Patches/InteractionDef/Rape_Reverse.xml
Normal file
83
1.6/Patches/InteractionDef/Rape_Reverse.xml
Normal file
|
|
@ -0,0 +1,83 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Patch>
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Rape_Reverse_Vaginal"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_VaginalSex</li>
|
||||
<li>RSI_Raped</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<!--<li>RSI_VaginalSex</li>-->
|
||||
<li>RSI_WasRaped</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Rape_Reverse_Anal" or defName="Rape_Reverse_Rimming"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_AnalSex</li>
|
||||
<li>RSI_Raped</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<!--<li>RSI_AnalSex</li>-->
|
||||
<li>RSI_WasRaped</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Rape_Reverse_Beakjob" or defName="Rape_Reverse_Cunnilingus" or defName="Rape_Reverse_Fellatio"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_OralSex</li>
|
||||
<li>RSI_Raped</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<!--<li>RSI_OralSex</li>-->
|
||||
<li>RSI_WasRaped</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Rape_Reverse_Breastjob" or defName="Rape_Reverse_Fingering" or defName="Rape_Reverse_Footjob" or defName="Rape_Reverse_Handjob"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_MiscSex</li>
|
||||
<li>RSI_Raped</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<!--<li>RSI_MiscSex</li>-->
|
||||
<li>RSI_WasRaped</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Rape_Reverse_DoublePenetration" or defName="Rape_Reverse_DoublePenetrationM" or defName="Rape_Reverse_Fisting" or defName="Rape_Reverse_Scissoring"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_PromiscuousSex</li>
|
||||
<li>RSI_Raped</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<!--<li>RSI_PromiscuousSex</li>-->
|
||||
<li>RSI_WasRaped</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
</Patch>
|
||||
73
1.6/Patches/InteractionDef/Sex.xml
Normal file
73
1.6/Patches/InteractionDef/Sex.xml
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Patch>
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Sex_Vaginal"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_VaginalSex</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<li>RSI_VaginalSex</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Sex_Anal" or defName="Sex_Rimming"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_AnalSex</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<li>RSI_AnalSex</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Sex_Beakjob" or defName="Sex_Cunnilingus" or defName="Sex_Fellatio" or defName="Sex_Makeout" or defName="Sex_Sixtynine"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_OralSex</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<li>RSI_OralSex</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Sex_Breastjob" or defName="Sex_Fingering" or defName="Sex_Footjob" or defName="Sex_Handjob" or defName="Sex_MutualHandholding" or defName="Sex_MutualMasturbation" or defName="Sex_MutualTailholding"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_MiscSex</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<li>RSI_MiscSex</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Sex_DoublePenetration" or defName="Sex_DoublePenetrationM" or defName="Sex_Fisting" or defName="Sex_Scissoring"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_PromiscuousSex</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<li>RSI_PromiscuousSex</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
</Patch>
|
||||
73
1.6/Patches/InteractionDef/Sex_Reverse.xml
Normal file
73
1.6/Patches/InteractionDef/Sex_Reverse.xml
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Patch>
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Sex_Reverse_Vaginal"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_VaginalSex</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<li>RSI_VaginalSex</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Sex_Reverse_Anal" or defName="Sex_Reverse_Rimming"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_AnalSex</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<li>RSI_AnalSex</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Sex_Reverse_Beakjob" or defName="Sex_Reverse_Cunnilingus" or defName="Sex_Reverse_Fellatio"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_OralSex</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<li>RSI_OralSex</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Sex_Reverse_Breastjob" or defName="Sex_Reverse_Fingering" or defName="Sex_Reverse_Footjob" or defName="Sex_Reverse_Handjob"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_MiscSex</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<li>RSI_MiscSex</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAddModExtension">
|
||||
<xpath>/Defs/InteractionDef[defName="Sex_Reverse_DoublePenetration" or defName="Sex_Reverse_DoublePenetrationM" or defName="Sex_Reverse_Fisting"]</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.InteractionDefExtension_HistoryEvents">
|
||||
<pawnEvents>
|
||||
<li>RSI_PromiscuousSex</li>
|
||||
</pawnEvents>
|
||||
<partnerEvents>
|
||||
<li>RSI_PromiscuousSex</li>
|
||||
</partnerEvents>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
</Patch>
|
||||
45
1.6/Patches/RJW_Drugs.xml
Normal file
45
1.6/Patches/RJW_Drugs.xml
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Patch>
|
||||
<Operation Class="PatchOperationReplace">
|
||||
<xpath>Defs/HediffDef[defName="HumpShroomEffect"]/stages</xpath>
|
||||
<value>
|
||||
<stages>
|
||||
<li>
|
||||
<label>lingering</label>
|
||||
<statOffsets>
|
||||
<SexFrequency>1.25</SexFrequency>
|
||||
<SexSatisfaction>0.25</SexSatisfaction>
|
||||
</statOffsets>
|
||||
</li>
|
||||
<li>
|
||||
<minSeverity>0.3</minSeverity>
|
||||
<label>mild</label>
|
||||
<restFallFactor>1.1</restFallFactor>
|
||||
<statOffsets>
|
||||
<SexFrequency>2</SexFrequency>
|
||||
<SexSatisfaction>0.5</SexSatisfaction>
|
||||
</statOffsets>
|
||||
</li>
|
||||
<li>
|
||||
<minSeverity>0.6</minSeverity>
|
||||
<label>moderate</label>
|
||||
<restFallFactor>1.33</restFallFactor>
|
||||
<statOffsets>
|
||||
<SexFrequency>3</SexFrequency>
|
||||
<SexSatisfaction>0.75</SexSatisfaction>
|
||||
</statOffsets>
|
||||
</li>
|
||||
<li>
|
||||
<minSeverity>0.9</minSeverity>
|
||||
<label>high</label>
|
||||
<restFallFactor>1.33</restFallFactor>
|
||||
<statOffsets>
|
||||
<SexFrequency>5</SexFrequency>
|
||||
<SexSatisfaction>1.5</SexSatisfaction>
|
||||
</statOffsets>
|
||||
</li>
|
||||
</stages>
|
||||
</value>
|
||||
</Operation>
|
||||
</Patch>
|
||||
27
1.6/Patches/RJW_Precepts.xml
Normal file
27
1.6/Patches/RJW_Precepts.xml
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Patch>
|
||||
<Operation Class="PatchOperationAdd">
|
||||
<xpath>Defs/PreceptDef[defName="Corpses_DontCare"]/requiredMemes</xpath>
|
||||
<value>
|
||||
<li>Necrophile</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAdd">
|
||||
<xpath>Defs/PreceptDef[defName="Corpses_DontCare"]/associatedMemes</xpath>
|
||||
<value>
|
||||
<li>Necrophile</li>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAdd">
|
||||
<xpath>Defs/PreceptDef[defName="Lovin_FreeApproved"]</xpath>
|
||||
<value>
|
||||
<statOffsets>
|
||||
<SexFrequency>0.5</SexFrequency>
|
||||
<SexAbility MayRequire="rjw.sexperience">0.25</SexAbility>
|
||||
</statOffsets>
|
||||
</value>
|
||||
</Operation>
|
||||
</Patch>
|
||||
12
1.6/Patches/RJW_StatDefs_Ideo.xml
Normal file
12
1.6/Patches/RJW_StatDefs_Ideo.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Patch>
|
||||
<Operation Class="PatchOperationAdd">
|
||||
<xpath>Defs/StatDef[defName="Vulnerability"]/parts</xpath>
|
||||
<value>
|
||||
<li Class="RJWSexperience.Ideology.StatPart_GenderPrimacy">
|
||||
<modifier>0.5</modifier>
|
||||
</li>
|
||||
</value>
|
||||
</Operation>
|
||||
</Patch>
|
||||
114
1.6/Patches/RJW_ThoughtDefs.xml
Normal file
114
1.6/Patches/RJW_ThoughtDefs.xml
Normal file
|
|
@ -0,0 +1,114 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Patch>
|
||||
<Operation Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="GotBredByAnimal"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_OnlyVenerated</li>
|
||||
<li>Bestiality_BondOnly</li>
|
||||
<li>Bestiality_Honorable</li>
|
||||
<li>Bestiality_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="GotAnalBredByAnimal"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_OnlyVenerated</li>
|
||||
<li>Bestiality_BondOnly</li>
|
||||
<li>Bestiality_Honorable</li>
|
||||
<li>Bestiality_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="AllowedAnimalToBreed"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_OnlyVenerated</li>
|
||||
<li>Bestiality_BondOnly</li>
|
||||
<li>Bestiality_Honorable</li>
|
||||
<li>Bestiality_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="GotLickedByAnimal"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_OnlyVenerated</li>
|
||||
<li>Bestiality_BondOnly</li>
|
||||
<li>Bestiality_Honorable</li>
|
||||
<li>Bestiality_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="GotGropedByAnimal"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_OnlyVenerated</li>
|
||||
<li>Bestiality_BondOnly</li>
|
||||
<li>Bestiality_Honorable</li>
|
||||
<li>Bestiality_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="AllowedAnimalToGrope"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>Bestiality_OnlyVenerated</li>
|
||||
<li>Bestiality_BondOnly</li>
|
||||
<li>Bestiality_Honorable</li>
|
||||
<li>Bestiality_Acceptable</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="StoleSomeLovin"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>Rape_Honorable</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="Incestuous"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>Incestuos_Free</li>
|
||||
<li>Incestuos_IncestOnly</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="GotRaped" or defName="GotAnalRaped" or defName="GotAnalRapedByFemale" or defName="GotRapedUnconscious" or defName="HateMyRapist" or defName="AllowedMeToGetRaped"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="GotRaped" or defName="GotAnalRaped" or defName="GotAnalRapedByFemale" or defName="GotRapedUnconscious" or defName="HateMyRapist" or defName="AllowedMeToGetRaped"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>Submissive_Male</li>
|
||||
<li>Submissive_Female</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="GotRaped" or defName="GotAnalRaped" or defName="GotAnalRapedByFemale" or defName="GotRapedUnconscious" or defName="HateMyRapist" or defName="AllowedMeToGetRaped"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>Submissive_Male</li>
|
||||
<li>Submissive_Female</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
</Patch>
|
||||
723
1.6/Patches/RJW_Thought_Family_Beast.xml
Normal file
723
1.6/Patches/RJW_Thought_Family_Beast.xml
Normal file
|
|
@ -0,0 +1,723 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Patch>
|
||||
<!-- Family Died Thoughts -->
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MySonDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MySonDied_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MySonDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyDaughterDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyDaughterDied_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyDaughterDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyBrotherDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyBrotherDied_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyBrotherDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MySisterDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MySisterDied_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MySisterDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyGrandchildDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyGrandchildDied_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyGrandchildDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyNieceDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyNieceDied_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyNieceDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyNephewDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyNephewDied_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyNephewDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyHalfSiblingDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyHalfSiblingDied_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyHalfSiblingDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyAuntDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyAuntDied_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyAuntDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyUncleDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyUncleDied_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyUncleDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyGrandparentDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyGrandparentDied_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyGrandparentDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyCousinDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyCousinDied_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyCousinDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyKinDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyKinDied_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyKinDied_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<!-- Family Lost Thoughts -->
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MySonLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MySonLost_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MySonLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyDaughterLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyDaughterLost_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyDaughterLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyBrotherLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyBrotherLost_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyBrotherLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MySisterLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MySisterLost_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MySisterLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyGrandchildLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyGrandchildLost_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyGrandchildLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyNieceLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyNieceLost_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyNieceLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyNephewLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyNephewLost_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyNephewLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyHalfSiblingLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyHalfSiblingLost_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyHalfSiblingLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyAuntLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyAuntLost_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyAuntLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyUncleLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyUncleLost_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyUncleLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyGrandparentLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyGrandparentLost_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyGrandparentLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyCousinLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyCousinLost_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyCousinLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="MyKinLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyKinLost_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="MyKinLost_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<!-- Family Social Memories -->
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMyFather_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMyFather_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMyFather_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMyMother_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMyMother_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMyMother_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMySon_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMySon_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMySon_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMyDaughter_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMyDaughter_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMyDaughter_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMyBrother_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMyBrother_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMyBrother_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMySister_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMySister_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMySister_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMyKin_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMyKin_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="KilledMyKin_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
<li>SocialAffection_Small</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
|
||||
<Operation Class="PatchOperationConditional">
|
||||
<xpath>Defs/ThoughtDef[defName="SoldMyLovedOne_Beast"]/nullifyingPrecepts</xpath>
|
||||
<nomatch Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="SoldMyLovedOne_Beast"]</xpath>
|
||||
<value>
|
||||
<nullifyingPrecepts>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</nullifyingPrecepts>
|
||||
</value>
|
||||
</nomatch>
|
||||
<match Class="PatchOperationAdd">
|
||||
<xpath>Defs/ThoughtDef[defName="SoldMyLovedOne_Beast"]/nullifyingPrecepts</xpath>
|
||||
<value>
|
||||
<li>SocialAffection_Psychopath</li>
|
||||
<li>SocialAffection_Dry</li>
|
||||
</value>
|
||||
</match>
|
||||
</Operation>
|
||||
</Patch>
|
||||
|
|
@ -1,38 +1,55 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ModMetaData>
|
||||
<name>NOT RJW Sexperience Ideology</name>
|
||||
<author>aamevarashi</author>
|
||||
<supportedVersions>
|
||||
<li>1.0</li>
|
||||
</supportedVersions>
|
||||
<modDependencies>
|
||||
<li>
|
||||
<packageId>Ludeon.RimWorld.Ideology</packageId>
|
||||
<displayName>Ideology</displayName>
|
||||
</li>
|
||||
<li>
|
||||
<packageId>brrainz.harmony</packageId>
|
||||
<displayName>Harmony</displayName>
|
||||
<steamWorkshopUrl>steam://url/CommunityFilePage/2009463077</steamWorkshopUrl>
|
||||
<downloadUrl>https://github.com/pardeike/HarmonyRimWorld/releases/latest</downloadUrl>
|
||||
</li>
|
||||
<li>
|
||||
<packageId>rim.job.world</packageId>
|
||||
<displayName>RimJobWorld</displayName>
|
||||
<downloadUrl>https://gitgud.io/Ed86/rjw</downloadUrl>
|
||||
</li>
|
||||
</modDependencies>
|
||||
<loadAfter>
|
||||
<li>Ludeon.RimWorld.Ideology</li>
|
||||
<li>brrainz.harmony</li>
|
||||
<li>rim.job.world</li>
|
||||
</loadAfter>
|
||||
<packageId>rjw.sexperience.ideology</packageId>
|
||||
<description>If you see this, you have downloaded uncompiled source codes of the mod.
|
||||
<name>RJW Sexperience Ideology</name>
|
||||
<author>amevarashi</author>
|
||||
<supportedVersions>
|
||||
<li>1.3</li>
|
||||
<li>1.4</li>
|
||||
<li>1.5</li>
|
||||
<li>1.6</li>
|
||||
</supportedVersions>
|
||||
<modVersion>1.6.1.1</modVersion>
|
||||
<modDependencies>
|
||||
<li>
|
||||
<packageId>Ludeon.RimWorld.Ideology</packageId>
|
||||
<displayName>Ideology</displayName>
|
||||
</li>
|
||||
<li>
|
||||
<packageId>brrainz.harmony</packageId>
|
||||
<displayName>Harmony</displayName>
|
||||
<steamWorkshopUrl>steam://url/CommunityFilePage/2009463077</steamWorkshopUrl>
|
||||
<downloadUrl>https://github.com/pardeike/HarmonyRimWorld/releases/latest</downloadUrl>
|
||||
</li>
|
||||
<li>
|
||||
<packageId>rim.job.world</packageId>
|
||||
<displayName>RimJobWorld</displayName>
|
||||
<downloadUrl>https://gitgud.io/Ed86/rjw</downloadUrl>
|
||||
</li>
|
||||
</modDependencies>
|
||||
<loadAfter>
|
||||
<li>Ludeon.RimWorld.Ideology</li>
|
||||
<li>brrainz.harmony</li>
|
||||
<li>rim.job.world</li>
|
||||
</loadAfter>
|
||||
<incompatibleWith>
|
||||
<li>RJW.SexCultEssentials</li>
|
||||
</incompatibleWith>
|
||||
<packageId>rjw.sexperience.ideology</packageId>
|
||||
<url>https://gitgud.io/amevarashi/rjw-sexperience-ideology</url>
|
||||
<description><![CDATA[
|
||||
This is a submod for RJW that adds:
|
||||
Ideology content:
|
||||
- Memes: lewd, rapist, zoophile and necrophile memes
|
||||
- Rituals: consensual gangbang, rape gangbang, consensual animal gangbang, rape animal gangbang and drug orgy
|
||||
- Precepts: baby faction, bestiality, incest, necrophilia, rape, allowed sex type, social affection, submissive gender, virginity, pregnancy, sex proselyzing and size matters
|
||||
- HumpShroom bong and HumpShroom Autobong
|
||||
|
||||
To get the actual mod:
|
||||
1. Go to the https://gitgud.io/amevarashi/rjw-sexperience-ideology/-/releases
|
||||
2. Open latest release (Pre-release for the test version)
|
||||
3. Click on the "RJW Sexperience Ideology" link under the "Packages"
|
||||
</description>
|
||||
Credits:
|
||||
moreorganstodump Original Author
|
||||
c0ffee RJW 4.9.0 update
|
||||
Hawkeye32 Bound Only bestiality precept
|
||||
Vegapnk Pregnancy, Sex Proselyzing and Size Matters issues
|
||||
ElToro Bestial Pregnancy and Bestial Breeding issues, Carnal Training precept, Sex Taming port, new icons for old issues
|
||||
|
||||
Sex Cult Essentials mod - original implementation of Sex Taming]]></description>
|
||||
</ModMetaData>
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<Manifest>
|
||||
<identifier>RJWSexperienceIdeology</identifier>
|
||||
<version>1.5.1.3</version>
|
||||
<version>1.6.1.1</version>
|
||||
<dependencies>
|
||||
<li>RimJobWorld >= 5.3.0</li>
|
||||
</dependencies>
|
||||
|
|
|
|||
|
|
@ -1,54 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ModMetaData>
|
||||
<name>RJW Sexperience Ideology</name>
|
||||
<author>amevarashi</author>
|
||||
<supportedVersions>
|
||||
<li>1.3</li>
|
||||
<li>1.4</li>
|
||||
<li>1.5</li>
|
||||
</supportedVersions>
|
||||
<modVersion>1.5.1.3</modVersion>
|
||||
<modDependencies>
|
||||
<li>
|
||||
<packageId>Ludeon.RimWorld.Ideology</packageId>
|
||||
<displayName>Ideology</displayName>
|
||||
</li>
|
||||
<li>
|
||||
<packageId>brrainz.harmony</packageId>
|
||||
<displayName>Harmony</displayName>
|
||||
<steamWorkshopUrl>steam://url/CommunityFilePage/2009463077</steamWorkshopUrl>
|
||||
<downloadUrl>https://github.com/pardeike/HarmonyRimWorld/releases/latest</downloadUrl>
|
||||
</li>
|
||||
<li>
|
||||
<packageId>rim.job.world</packageId>
|
||||
<displayName>RimJobWorld</displayName>
|
||||
<downloadUrl>https://gitgud.io/Ed86/rjw</downloadUrl>
|
||||
</li>
|
||||
</modDependencies>
|
||||
<loadAfter>
|
||||
<li>Ludeon.RimWorld.Ideology</li>
|
||||
<li>brrainz.harmony</li>
|
||||
<li>rim.job.world</li>
|
||||
</loadAfter>
|
||||
<incompatibleWith>
|
||||
<li>RJW.SexCultEssentials</li>
|
||||
</incompatibleWith>
|
||||
<packageId>rjw.sexperience.ideology</packageId>
|
||||
<url>https://gitgud.io/amevarashi/rjw-sexperience-ideology</url>
|
||||
<description><![CDATA[
|
||||
This is a submod for RJW that adds:
|
||||
Ideology content:
|
||||
- Memes: lewd, rapist, zoophile and necrophile memes
|
||||
- Rituals: consensual gangbang, rape gangbang, consensual animal gangbang, rape animal gangbang and drug orgy
|
||||
- Precepts: baby faction, bestiality, incest, necrophilia, rape, allowed sex type, social affection, submissive gender, virginity, pregnancy, sex proselyzing and size matters
|
||||
- HumpShroom bong and HumpShroom Autobong
|
||||
|
||||
Credits:
|
||||
moreorganstodump Original Author
|
||||
c0ffee RJW 4.9.0 update
|
||||
Hawkeye32 Bound Only bestiality precept
|
||||
Vegapnk Pregnancy, Sex Proselyzing and Size Matters issues
|
||||
ElToro Bestial Pregnancy and Bestial Breeding issues, Carnal Training precept, Sex Taming port, new icons for old issues
|
||||
|
||||
Sex Cult Essentials mod - original implementation of Sex Taming]]></description>
|
||||
</ModMetaData>
|
||||
14
CHANGELOG.md
14
CHANGELOG.md
|
|
@ -1,5 +1,17 @@
|
|||
## Version 1.6.1.1
|
||||
### by amevarashi
|
||||
* Fix 1.5 loading wrong assembly
|
||||
### by Wailwolf
|
||||
* French translation
|
||||
|
||||
## Version 1.6.1.0
|
||||
### by ElToro
|
||||
* Rimworld 1.6 update
|
||||
|
||||
## Version 1.5.1.4
|
||||
* Testing auto release creation
|
||||
* Adapt to the new RJW interaction rework
|
||||
### by ElToro
|
||||
* New icon for Bestial Breeding
|
||||
|
||||
## Version 1.5.1.3
|
||||
* Fixed thoughts about children from Biotech not affected by the Social Affection precepts
|
||||
|
|
|
|||
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: necrophile -->
|
||||
<Necrophile_All.label>nécrophile</Necrophile_All.label>
|
||||
|
||||
<!-- EN: necrophile agreement -->
|
||||
<Necrophile_Necrophile.label>accord nécrophile</Necrophile_Necrophile.label>
|
||||
|
||||
<!-- EN: rapist -->
|
||||
<Rapist_All.label>violeur</Rapist_All.label>
|
||||
|
||||
<!-- EN: zoophile -->
|
||||
<Zoophile_All.label>zoophile</Zoophile_All.label>
|
||||
|
||||
<!-- EN: zoophile agreement -->
|
||||
<Zoophile_Zoophile.label>accord zoophile</Zoophile_Zoophile.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: sex with animal -->
|
||||
<RSI_SexWithAnimal.label>sexe avec animal</RSI_SexWithAnimal.label>
|
||||
|
||||
<!-- EN: Sex with bonded -->
|
||||
<RSI_SexWithBondedAnimal.label>sexe avec servitude</RSI_SexWithBondedAnimal.label>
|
||||
|
||||
<!-- EN: Sex with non Bonded -->
|
||||
<RSI_SexWithNonBondAnimal.label>Sexe sans servitude</RSI_SexWithNonBondAnimal.label>
|
||||
|
||||
<!-- EN: sex with non venerated animal -->
|
||||
<RSI_SexWithNonVeneratedAnimal.label>sex avec animal non vénéré</RSI_SexWithNonVeneratedAnimal.label>
|
||||
|
||||
<!-- EN: sex with venerated animal -->
|
||||
<RSI_SexWithVeneratedAnimal.label>sexe avec animal vénéré</RSI_SexWithVeneratedAnimal.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: Marriage between close relatives -->
|
||||
<RSI_CloseRelativeMarriage.label>Mariage entre proches parents</RSI_CloseRelativeMarriage.label>
|
||||
|
||||
<!-- EN: Sex between close relatives -->
|
||||
<RSI_CloseRelativeSex.label>Relations sexuelles entre proches parents</RSI_CloseRelativeSex.label>
|
||||
|
||||
<!-- EN: Incestuous marriage -->
|
||||
<RSI_IncestuosMarriage.label>Mariage incestueux</RSI_IncestuosMarriage.label>
|
||||
|
||||
<!-- EN: Incestuous sex -->
|
||||
<RSI_IncestuosSex.label>Sexe incestueux</RSI_IncestuosSex.label>
|
||||
|
||||
<!-- EN: Non-Incestuous marriage -->
|
||||
<RSI_NonIncestuosMarriage.label>Mariage non incestueux</RSI_NonIncestuosMarriage.label>
|
||||
|
||||
<!-- EN: Non-incestuous sex -->
|
||||
<RSI_NonIncestuosSex.label>Sexe non incestueux</RSI_NonIncestuosSex.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: masturbated -->
|
||||
<RSI_Masturbated.label>s'est masturbé(e)</RSI_Masturbated.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: fucked corpse -->
|
||||
<RSI_SexWithCorpse.label>a baisé un cadavre</RSI_SexWithCorpse.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: raped -->
|
||||
<RSI_Raped.label>a violé</RSI_Raped.label>
|
||||
|
||||
<!-- EN: raped prisoner -->
|
||||
<RSI_RapedPrisoner.label>a violé un prisonnier</RSI_RapedPrisoner.label>
|
||||
|
||||
<!-- EN: raped slave -->
|
||||
<RSI_RapedSlave.label>a violé un esclave</RSI_RapedSlave.label>
|
||||
|
||||
<!-- EN: was raped -->
|
||||
<RSI_WasRaped.label>a été violé(e)</RSI_WasRaped.label>
|
||||
|
||||
<!-- EN: was raped -->
|
||||
<RSI_WasRapedPrisoner.label>a été violé(e)</RSI_WasRapedPrisoner.label>
|
||||
|
||||
<!-- EN: was raped -->
|
||||
<RSI_WasRapedSlave.label>a été violé(e)</RSI_WasRapedSlave.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: anal sex -->
|
||||
<RSI_AnalSex.label>sexe anal</RSI_AnalSex.label>
|
||||
|
||||
<!-- EN: sex -->
|
||||
<RSI_MiscSex.label>sexe</RSI_MiscSex.label>
|
||||
|
||||
<!-- EN: oral sex -->
|
||||
<RSI_OralSex.label>sexe oral</RSI_OralSex.label>
|
||||
|
||||
<!-- EN: promiscuous sex -->
|
||||
<RSI_PromiscuousSex.label>rapports sexuels multiples</RSI_PromiscuousSex.label>
|
||||
|
||||
<!-- EN: vaginal sex -->
|
||||
<RSI_VaginalSex.label>sexe vaginal</RSI_VaginalSex.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: took virginity -->
|
||||
<RSI_TookVirgin.label>a pris la virginité</RSI_TookVirgin.label>
|
||||
|
||||
<!-- EN: virginity stolen -->
|
||||
<RSI_VirginStolen.label>virginité volée</RSI_VirginStolen.label>
|
||||
|
||||
<!-- EN: virginity taken -->
|
||||
<RSI_VirginTaken.label>a pris la virginité</RSI_VirginTaken.label>
|
||||
|
||||
<!-- EN: virginity was taken by a stranger -->
|
||||
<RSI_VirginTakenNotSpouse.label>la virginité a été prise par un étranger</RSI_VirginTakenNotSpouse.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: animal breeders -->
|
||||
<Animal_Breeders.label>fécondeurs d'animaux</Animal_Breeders.label>
|
||||
<!-- EN: Animals are our better half. -->
|
||||
<Animal_Breeders.description>Les animaux sont notre moitié.</Animal_Breeders.description>
|
||||
|
||||
<!-- EN: hentai tribe -->
|
||||
<Hentai_Tribe.label>tribu hentaï</Hentai_Tribe.label>
|
||||
<!-- EN: Impregnate. -->
|
||||
<Hentai_Tribe.description>Imprégner.</Hentai_Tribe.description>
|
||||
|
||||
<!-- EN: savage rapist brigands -->
|
||||
<Savage_Rapist_Brigands.label>brigands violeurs sauvages</Savage_Rapist_Brigands.label>
|
||||
<!-- EN: All of them are ours. -->
|
||||
<Savage_Rapist_Brigands.description>Ils sont tous à nous.</Savage_Rapist_Brigands.description>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: female animal sex chat -->
|
||||
<AnimalSexTameChatFemale.label>message sexuel féminin animalier</AnimalSexTameChatFemale.label>
|
||||
<!-- EN:
|
||||
<li>r_logentry->[INITIATOR_nameDef] [zooact] [RECIPIENT_nameDef].</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] tried to make [RECIPIENT_nameDef] sit still while [genplan] [RECIPIENT_nameDef]'s genitals.</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] attempted to hold [RECIPIENT_nameDef] still while [genplan] [RECIPIENT_nameDef]'s genitals.</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] [genact] [RECIPIENT_nameDef]'s genitals.</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] allowed [RECIPIENT_nameDef] [zooplan] [INITIATOR_possessive] genitals.</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] encouraged [RECIPIENT_nameDef] [zooplan] [INITIATOR_possessive] genitals.</li>
|
||||
<li>genact->gently touched</li>
|
||||
<li>genact->gently caressed</li>
|
||||
<li>genact->tried to kiss</li>
|
||||
<li>genact->tried to lick</li>
|
||||
<li>genplan->trying to lick</li>
|
||||
<li>genplan->trying to touch</li>
|
||||
<li>genplan->trying to caresse</li>
|
||||
<li>zooplan->to lick</li>
|
||||
<li>zooplan->to taste</li>
|
||||
<li>zooplan->to sniff</li>
|
||||
<li>zooact->showed [INITIATOR_possessive] genitals to</li>
|
||||
<li>zooact->presented [INITIATOR_possessive] genitals to</li>
|
||||
-->
|
||||
<AnimalSexTameChatFemale.logRulesInitiator.rulesStrings>
|
||||
<li>r_logentry->[INITIATOR_nameDef] [zooact] [RECIPIENT_nameDef].</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] a essayé d'immobiliser [RECIPIENT_nameDef] tout en [genplan] l'organe génital de [RECIPIENT_nameDef].</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] a tenté de maintenir [RECIPIENT_nameDef] en place tout en [genplan] l'organe génital de [RECIPIENT_nameDef].</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] [genact] l'organe génital de [RECIPIENT_nameDef].</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] a autorisé [RECIPIENT_nameDef] [zooplan] son organe génital.</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] a encouragé [RECIPIENT_nameDef] [zooplan] son organe génital.</li>
|
||||
<li>genact->a touché délicatement</li>
|
||||
<li>genact->a caressé délicatement</li>
|
||||
<li>genact->a essayé d'embrasser</li>
|
||||
<li>genact->a essayé de lécher</li>
|
||||
<li>genplan->essayant de lécher</li>
|
||||
<li>genplan->essayant de toucher</li>
|
||||
<li>genplan->essayant de caresser</li>
|
||||
<li>zooplan->à lécher</li>
|
||||
<li>zooplan->à goûter</li>
|
||||
<li>zooplan->à renifler</li>
|
||||
<li>zooact->a montré son organe génital à</li>
|
||||
<li>zooact->a présenté son organe génital à</li>
|
||||
</AnimalSexTameChatFemale.logRulesInitiator.rulesStrings>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,55 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: male animal sex chat -->
|
||||
<AnimalSexTameChatMale.label>message sexuel masculin animalier</AnimalSexTameChatMale.label>
|
||||
<!-- EN:
|
||||
<li>r_logentry->[INITIATOR_nameDef] [zooact] [RECIPIENT_nameDef].</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] tried to make [RECIPIENT_nameDef] sit still while [genplan] [RECIPIENT_nameDef]'s genitals.</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] attempted to hold [RECIPIENT_nameDef] still while [genplan] [RECIPIENT_nameDef]'s genitals.</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] [genact] [RECIPIENT_nameDef]'s genitals.</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] allowed [RECIPIENT_nameDef] [zooplan] [INITIATOR_possessive] genitals.</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] encouraged [RECIPIENT_nameDef] [zooplan] [INITIATOR_possessive] genitals.</li>
|
||||
<li>genact->gently touched</li>
|
||||
<li>genact->gently caressed</li>
|
||||
<li>genact->firmly stroked</li>
|
||||
<li>genact->gently stroked</li>
|
||||
<li>genact->tried to kiss</li>
|
||||
<li>genact->tried to lick</li>
|
||||
<li>genact->tried to taste</li>
|
||||
<li>zooplan->to lick</li>
|
||||
<li>zooplan->to taste</li>
|
||||
<li>zooplan->to sniff</li>
|
||||
<li>genplan->trying to lick</li>
|
||||
<li>genplan->trying to touch</li>
|
||||
<li>genplan->trying to stroke</li>
|
||||
<li>genplan->trying to taste</li>
|
||||
<li>zooact->showed [INITIATOR_possessive] genitals to</li>
|
||||
<li>zooact->presented [INITIATOR_possessive] genitals to</li>
|
||||
-->
|
||||
<AnimalSexTameChatMale.logRulesInitiator.rulesStrings>
|
||||
<li>r_logentry->[INITIATOR_nameDef] [zooact] [RECIPIENT_nameDef].</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] a essayé d'immobiliser [RECIPIENT_nameDef] tout en [genplan] l'organe génital de [RECIPIENT_nameDef].</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] a tenté de maintenir [RECIPIENT_nameDef] en place tout en [genplan] l'organe génital de [RECIPIENT_nameDef].</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] [genact] l'organe génital de [RECIPIENT_nameDef].</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] a autorisé [RECIPIENT_nameDef] [zooplan] son organe génital.</li>
|
||||
<li>r_logentry->[INITIATOR_nameDef] a encouragé [RECIPIENT_nameDef] [zooplan] son organe génital.</li>
|
||||
<li>genact->a touché délicatement</li>
|
||||
<li>genact->a caressé délicatement</li>
|
||||
<li>genact->a frotté fermement</li>
|
||||
<li>genact->a frotté délicatement</li>
|
||||
<li>genact->a essayé d'embrasser</li>
|
||||
<li>genact->a essayé de lécher</li>
|
||||
<li>genact->a essayé de goûter</li>
|
||||
<li>zooplan->à lécher</li>
|
||||
<li>zooplan->à goûter</li>
|
||||
<li>zooplan->à renifler</li>
|
||||
<li>genplan->essayant de lécher</li>
|
||||
<li>genplan->essayant de toucher</li>
|
||||
<li>genplan->essayant de frotter</li>
|
||||
<li>genplan->essayant de goûter</li>
|
||||
<li>zooact->a montré son organe génital à</li>
|
||||
<li>zooact->a présenté son organe génital à</li>
|
||||
</AnimalSexTameChatMale.logRulesInitiator.rulesStrings>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,133 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: gangbang speech -->
|
||||
<Speech_Gangbang.label>discours sur le gangbang</Speech_Gangbang.label>
|
||||
<!-- EN:
|
||||
<li>r_logentry->[INITIATOR_nameDef] [spokeof] [speechtopic].</li>
|
||||
<li>r_logentry(p=0.2)->[INITIATOR_nameDef] [crazy].</li>
|
||||
<li>speechtopic->the meaning and true value of rape</li>
|
||||
<li>speechtopic->expressions of rape</li>
|
||||
<li>speechtopic->controlled lustful</li>
|
||||
<li>speechtopic->the warmth of pussy</li>
|
||||
<li>speechtopic->the meaning of cum</li>
|
||||
<li>speechtopic->love and rape</li>
|
||||
<li>speechtopic->symbolizing rape</li>
|
||||
<li>speechtopic->dick and pussy</li>
|
||||
<li>speechtopic->the art of rape</li>
|
||||
<li>speechtopic->the seduction of victim</li>
|
||||
<li>speechtopic->the music of screams</li>
|
||||
<li>speechtopic->cums on the floor</li>
|
||||
<li>crazy->screamed maniacally</li>
|
||||
<li>crazy->broke into a chant</li>
|
||||
<li>crazy->chanted towards the heavens</li>
|
||||
<li>crazy->spat in the sacrifice's genital</li>
|
||||
<li>crazy->cackled</li>
|
||||
<li>crazy->brandished a condom</li>
|
||||
<li>crazy->muttered repetitively while masturbating</li>
|
||||
-->
|
||||
<Speech_Gangbang.logRulesInitiator.rulesStrings>
|
||||
<li>r_logentry->[INITIATOR_nameDef] [spokeof] [speechtopic].</li>
|
||||
<li>r_logentry(p=0.2)->[INITIATOR_nameDef] [crazy].</li>
|
||||
<li>speechtopic->sens et vraie valeur du viol</li>
|
||||
<li>speechtopic->manières de violer</li>
|
||||
<li>speechtopic->désir sexuel contrôlé</li>
|
||||
<li>speechtopic->la chaleur d'une chatte</li>
|
||||
<li>speechtopic->sens du sperme</li>
|
||||
<li>speechtopic->amour et de viol</li>
|
||||
<li>speechtopic->viol symbolique</li>
|
||||
<li>speechtopic->bite et de chatte</li>
|
||||
<li>speechtopic->l'art du viol</li>
|
||||
<li>speechtopic->la séduction de victime</li>
|
||||
<li>speechtopic->la musique des cris</li>
|
||||
<li>speechtopic->éjaculer sur le sol</li>
|
||||
<li>crazy->a hurlé comme un fou</li>
|
||||
<li>crazy->s'est mis à scander</li>
|
||||
<li>crazy->a chanté vers les cieux</li>
|
||||
<li>crazy->a craché dans les parties génitales de la victime</li>
|
||||
<li>crazy->a gloussé</li>
|
||||
<li>crazy->a brandi un préservatif</li>
|
||||
<li>crazy->a marmonné sans cesse tout en se masturbant</li>
|
||||
</Speech_Gangbang.logRulesInitiator.rulesStrings>
|
||||
|
||||
<!-- EN: lewd speech -->
|
||||
<Speech_Lewd.label>discours obscène</Speech_Lewd.label>
|
||||
<!-- EN:
|
||||
<li>r_logentry->[INITIATOR_nameDef] [spokeof] [speechtopic].</li>
|
||||
<li>r_logentry(p=0.2)->[INITIATOR_nameDef] [crazy].</li>
|
||||
<li>speechtopic->the meaning and true value of sex</li>
|
||||
<li>speechtopic->expressions of sex</li>
|
||||
<li>speechtopic->uncontrolled lustful</li>
|
||||
<li>speechtopic->the warmth of pussy</li>
|
||||
<li>speechtopic->the meaning of cum</li>
|
||||
<li>speechtopic->love and incest</li>
|
||||
<li>speechtopic->symbolizing rape</li>
|
||||
<li>speechtopic->dick and pussy</li>
|
||||
<li>speechtopic->the art of sex</li>
|
||||
<li>speechtopic->the seduction of [spokeof]</li>
|
||||
<li>speechtopic->the music of moan</li>
|
||||
<li>speechtopic->cums on the floor</li>
|
||||
<li>crazy->moaned maniacally</li>
|
||||
<li>crazy->threw a dildo</li>
|
||||
<li>crazy->threw an onahole</li>
|
||||
<li>crazy->chanted towards the heavens</li>
|
||||
<li>crazy->moaned</li>
|
||||
<li>crazy->brandished a dildo</li>
|
||||
<li>crazy->muttered repetitively while masturbating</li>
|
||||
-->
|
||||
<Speech_Lewd.logRulesInitiator.rulesStrings>
|
||||
<li>r_logentry->[INITIATOR_nameDef] [spokeof] [speechtopic].</li>
|
||||
<li>r_logentry(p=0.2)->[INITIATOR_nameDef] [crazy].</li>
|
||||
<li>speechtopic->sens et vraie valeur du sexe</li>
|
||||
<li>speechtopic->manières d'avoir du sexe</li>
|
||||
<li>speechtopic->désir incontrôlé</li>
|
||||
<li>speechtopic->la chaleur d'une chatte</li>
|
||||
<li>speechtopic->sens du sperme</li>
|
||||
<li>speechtopic->amour et inceste</li>
|
||||
<li>speechtopic->viol symbolique</li>
|
||||
<li>speechtopic->bite et de chatte</li>
|
||||
<li>speechtopic->l'art du sexe</li>
|
||||
<li>speechtopic->la séduction de [spokeof]</li>
|
||||
<li>speechtopic->la musique des gémissements</li>
|
||||
<li>speechtopic->éjaculer sur le sol</li>
|
||||
<li>crazy->a gémis comme un fou</li>
|
||||
<li>crazy->a jeté un dildo</li>
|
||||
<li>crazy->a lancé un masturbateur</li>
|
||||
<li>crazy->a chanté vers les cieux</li>
|
||||
<li>crazy->a gémis</li>
|
||||
<li>crazy->a brandi un dildo</li>
|
||||
<li>crazy->a marmonné de manière répétitive tout en se masturbant</li>
|
||||
</Speech_Lewd.logRulesInitiator.rulesStrings>
|
||||
|
||||
<!-- EN: zoophile speech -->
|
||||
<Speech_Zoophile.label>discours zoophile</Speech_Zoophile.label>
|
||||
<!-- EN:
|
||||
<li>r_logentry->[INITIATOR_nameDef] [spokeof] [speechtopic].</li>
|
||||
<li>speechtopic->the meaning and true value of bestiality</li>
|
||||
<li>speechtopic->expressions of bestiality</li>
|
||||
<li>speechtopic->controlled lustful</li>
|
||||
<li>speechtopic->the warmth of cum</li>
|
||||
<li>speechtopic->the meaning of interspecies breeding</li>
|
||||
<li>speechtopic->animal and love</li>
|
||||
<li>speechtopic->symbolizing bestiality</li>
|
||||
<li>speechtopic->breed and birth</li>
|
||||
<li>speechtopic->the art of breeding</li>
|
||||
<li>speechtopic->the seduction of animals</li>
|
||||
<li>speechtopic->cums on the floor</li>
|
||||
-->
|
||||
<Speech_Zoophile.logRulesInitiator.rulesStrings>
|
||||
<li>r_logentry->[INITIATOR_nameDef] [spokeof] [speechtopic].</li>
|
||||
<li>speechtopic->le sens et vraie valeur de la bestialité</li>
|
||||
<li>speechtopic->manières d'être bestial</li>
|
||||
<li>speechtopic->désir contrôlé</li>
|
||||
<li>speechtopic->la chaleur du sperme</li>
|
||||
<li>speechtopic->le sens de la fécondation inter-espèces.</li>
|
||||
<li>speechtopic->amour et animaux</li>
|
||||
<li>speechtopic->symbolique de la bestialité</li>
|
||||
<li>speechtopic->fécondation et naissance</li>
|
||||
<li>speechtopic->l'art de féconder</li>
|
||||
<li>speechtopic->la séduction des animaux</li>
|
||||
<li>speechtopic->éjaculer sur le sol</li>
|
||||
</Speech_Zoophile.logRulesInitiator.rulesStrings>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: baby faction -->
|
||||
<BabyFaction.label>faction de bébés</BabyFaction.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: bestial breeding -->
|
||||
<BestialBreeding.label>fécondation bestiale</BestialBreeding.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: bestiality -->
|
||||
<Bestiality.label>bestialité</Bestiality.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: incest -->
|
||||
<Incestuos.label>inceste</Incestuos.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: masturbation -->
|
||||
<Masturbation.label>masturbation</Masturbation.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: necrophilia -->
|
||||
<Necrophilia.label>nécrophilie</Necrophilia.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: pregnancy -->
|
||||
<Pregnancy.label>grossesse</Pregnancy.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: bestial pregnancy -->
|
||||
<PregnancyAnimal.label>grossesse bestiale</PregnancyAnimal.label>
|
||||
|
||||
</LanguageData>
|
||||
7
Languages/French/DefInjected/IssueDef/Precepts_Rape.xml
Normal file
7
Languages/French/DefInjected/IssueDef/Precepts_Rape.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: rape -->
|
||||
<Rape.label>viol</Rape.label>
|
||||
|
||||
</LanguageData>
|
||||
7
Languages/French/DefInjected/IssueDef/Precepts_Sex.xml
Normal file
7
Languages/French/DefInjected/IssueDef/Precepts_Sex.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: sex type -->
|
||||
<Sextype.label>type de sexe</Sextype.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: sex type -->
|
||||
<SexProselytizing.label>type de sexe</SexProselytizing.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: Size Matters -->
|
||||
<GenitalSize.label>la taille compte</GenitalSize.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: social affection -->
|
||||
<SocialAffection.label>affection sociale</SocialAffection.label>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: submissive -->
|
||||
<Submissive.label>soumission</Submissive.label>
|
||||
|
||||
</LanguageData>
|
||||
10
Languages/French/DefInjected/IssueDef/Precepts_Virginity.xml
Normal file
10
Languages/French/DefInjected/IssueDef/Precepts_Virginity.xml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: virginity of female -->
|
||||
<Virginity_Female.label>virginité (femme)</Virginity_Female.label>
|
||||
|
||||
<!-- EN: virginity of male -->
|
||||
<Virginity_Male.label>pucelage (homme)</Virginity_Male.label>
|
||||
|
||||
</LanguageData>
|
||||
19
Languages/French/DefInjected/JobDef/Jobs_AnimalSexTame.xml
Normal file
19
Languages/French/DefInjected/JobDef/Jobs_AnimalSexTame.xml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: taming TargetA. -->
|
||||
<TameLewd_Feed.reportString>apprivoise TargetA.</TameLewd_Feed.reportString>
|
||||
|
||||
<!-- EN: Sexually taming TargetA. -->
|
||||
<TameLewd_Lovin.reportString>Apprivoise sexuellement TargetA.</TameLewd_Lovin.reportString>
|
||||
|
||||
<!-- EN: training TargetA. -->
|
||||
<TrainLewd_Feed.reportString>Entraîne TargetA.</TrainLewd_Feed.reportString>
|
||||
|
||||
<!-- EN: Sexually training TargetA. -->
|
||||
<TrainLewd_Lovin.reportString>Entraîne sexuellement TargetA.</TrainLewd_Lovin.reportString>
|
||||
|
||||
<!-- EN: Being sexually conditioned by TargetA. -->
|
||||
<TrainLewd_Reciever.reportString>Est conditionné sexuellement par TargetA.</TrainLewd_Reciever.reportString>
|
||||
|
||||
</LanguageData>
|
||||
22
Languages/French/DefInjected/JobDef/Jobs_Ritual_Sex.xml
Normal file
22
Languages/French/DefInjected/JobDef/Jobs_Ritual_Sex.xml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: masturbatin'. -->
|
||||
<DrugMasturbate.reportString>(se) masturbe.</DrugMasturbate.reportString>
|
||||
|
||||
<!-- EN: lovin'. -->
|
||||
<DrugSex.reportString>baise.</DrugSex.reportString>
|
||||
|
||||
<!-- EN: lovin'. -->
|
||||
<Gangbang.reportString>baise.</Gangbang.reportString>
|
||||
|
||||
<!-- EN: lovin'. -->
|
||||
<GettinDrugSex.reportString>baise.</GettinDrugSex.reportString>
|
||||
|
||||
<!-- EN: gettin' gangbanged. -->
|
||||
<GettinGangbang.reportString>se fait gangbang.</GettinGangbang.reportString>
|
||||
|
||||
<!-- EN: rapin' victim -->
|
||||
<RapeVictim.reportString>viole une victime.</RapeVictim.reportString>
|
||||
|
||||
</LanguageData>
|
||||
210
Languages/French/DefInjected/MemeDef/Memes_Sexual.xml
Normal file
210
Languages/French/DefInjected/MemeDef/Memes_Sexual.xml
Normal file
|
|
@ -0,0 +1,210 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: lewd -->
|
||||
<Lewd.label>lubrique</Lewd.label>
|
||||
<!-- EN: Life is full of pleasures, but none are so pure, so natural, as that of sex. We must engage in sexual acts to truly be ourselves. -->
|
||||
<Lewd.description>La vie est pleine de plaisirs, mais aucun n'est aussi pur, aussi naturel que celui du sexe. Nous devons nous adonner à des actes sexuels pour être vraiment nous-mêmes.</Lewd.description>
|
||||
<!-- EN:
|
||||
<li>memeAdjective->horny</li>
|
||||
<li>memeAdjective->lewd</li>
|
||||
<li>memeAdjective->arousing</li>
|
||||
<li>memeAdjective->sexy</li>
|
||||
<li>memeAdjective->estrous</li>
|
||||
<li>memeAdjective->decadent</li>
|
||||
<li>memeHyphenPrefix->estro</li>
|
||||
<li>memeHyphenPrefix->lust</li>
|
||||
<li>memeConcept->lust</li>
|
||||
<li>memeConcept->libido</li>
|
||||
<li>memeConcept->estrus</li>
|
||||
<li>memeConcept->arousal</li>
|
||||
<li>memeConcept->desire</li>
|
||||
<li>memeConcept->sex</li>
|
||||
<li>memeConcept->perversion</li>
|
||||
<li>r_deityName->slaanesh</li>
|
||||
-->
|
||||
<Lewd.generalRules.rulesStrings>
|
||||
<li>memeAdjective->excité</li>
|
||||
<li>memeAdjective->obscène</li>
|
||||
<li>memeAdjective->excitant</li>
|
||||
<li>memeAdjective->sexy</li>
|
||||
<li>memeAdjective->en chaleur</li>
|
||||
<li>memeAdjective->décadent</li>
|
||||
<li>memeHyphenPrefix->en chaleur</li>
|
||||
<li>memeHyphenPrefix->désir</li>
|
||||
<li>memeConcept->désir</li>
|
||||
<li>memeConcept->libido</li>
|
||||
<li>memeConcept->en chaleur</li>
|
||||
<li>memeConcept->excitation</li>
|
||||
<li>memeConcept->désir</li>
|
||||
<li>memeConcept->sexe</li>
|
||||
<li>memeConcept->perversion</li>
|
||||
<li>r_deityName->slaanesh</li>
|
||||
</Lewd.generalRules.rulesStrings>
|
||||
<!-- EN: decadent -->
|
||||
<Lewd.symbolPacks.0.adjective>décadent</Lewd.symbolPacks.0.adjective>
|
||||
<!-- EN: Cult of Slaanesh -->
|
||||
<Lewd.symbolPacks.0.ideoName>Culte de Slaanesh</Lewd.symbolPacks.0.ideoName>
|
||||
<!-- EN: heretic -->
|
||||
<Lewd.symbolPacks.0.member>hérétique</Lewd.symbolPacks.0.member>
|
||||
<!-- EN: pleasure -->
|
||||
<Lewd.symbolPacks.0.theme>plaisir</Lewd.symbolPacks.0.theme>
|
||||
|
||||
<!-- EN: necrophile -->
|
||||
<Necrophile.label>nécrophile</Necrophile.label>
|
||||
<!-- EN: Corpse fuckers. -->
|
||||
<Necrophile.description>Baiseurs de corps.</Necrophile.description>
|
||||
<!-- EN:
|
||||
<li>r_deityName->sonic</li>
|
||||
<li>r_deityName->mega man</li>
|
||||
<li>memeConcept->corpse</li>
|
||||
<li>memeConcept->dead</li>
|
||||
-->
|
||||
<Necrophile.generalRules.rulesStrings>
|
||||
<li>r_deityName->sonic</li>
|
||||
<li>r_deityName->mega man</li>
|
||||
<li>memeConcept->corps</li>
|
||||
<li>memeConcept->mort</li>
|
||||
</Necrophile.generalRules.rulesStrings>
|
||||
|
||||
<!-- EN: rapist -->
|
||||
<Rapist.label>violeur</Rapist.label>
|
||||
<!-- EN: To want to fuck is only natural, to deny anyone this right is unnatural and vile, and to take without consent is pure and right. -->
|
||||
<Rapist.description>Vouloir baiser est tout à fait naturel, refuser ce droit à quelqu'un est contre nature et ignoble, et prendre sans consentement est pur et juste.</Rapist.description>
|
||||
<!-- EN:
|
||||
<li>creation(tag=meme_Rapist) ->[deity0_name] loves rape.</li>
|
||||
<li>episode(uses=1,tag=meme_Rapist) ->[deity0_name] raped everyone until death during rape.</li>
|
||||
<li>setup(tag=meme_Rapist) ->[founderName] is always horny. </li>
|
||||
<li>story(uses=1,tag=meme_Rapist) ->[founderName] raped everyone. No one can stop [founderName]. [founderName] died trying to rape planet.</li>
|
||||
<li>lessonIntro(tag=meme_Rapist) ->Rape is best! Rape is best! Rape is best!</li>
|
||||
<li>lesson(tag=meme_Rapist) ->Rape is best! Rape is best! Rape is best! Rape is best!</li>
|
||||
<li>lessonReinforcement(tag=meme_Rapist) ->Rape is best! Rape is best! Rape is best! Rape is best! Rape is best!</li>
|
||||
<li>archistBasis(tag=meme_Rapist) ->Human history is history of rape.</li>
|
||||
<li>archistFact(tag=meme_Rapist) ->Even archotechs cannot stop rapists.</li>
|
||||
<li>archistProphecy(tag=meme_Rapist) ->[inTheEnd], the rapists never stop raping.</li>
|
||||
<li>animistFact(tag=meme_Rapist) ->The most powerful spirits are those of rapists, and spirits of rapists will rape all.</li>
|
||||
<li>animistProphecy(tag=meme_Rapist) ->[itIsSaid] that a powerful spirit of destruction will seek to end the universe, but that a million-raped rapist will wield the spirit of the [relic0_name] and rape the destroyer.</li>
|
||||
-->
|
||||
<Rapist.descriptionMaker.rules.rulesStrings>
|
||||
<li>creation(tag=meme_Rapist) ->[deity0_name] aime le viol.</li>
|
||||
<li>episode(uses=1,tag=meme_Rapist) ->[deity0_name] a violé tout le monde jusqu'à la mort pendant le viol.</li>
|
||||
<li>setup(tag=meme_Rapist) ->[founderName] est toujours excité. </li>
|
||||
<li>story(uses=1,tag=meme_Rapist) ->[founderName] a violé tout le monde. Personne ne peut arrêter [founderName]. [founderName] est mort en essayant de violer la planète.</li>
|
||||
<li>lessonIntro(tag=meme_Rapist) ->Le viol, c'est génial ! Le viol, c'est génial ! Le viol, c'est génial !</li>
|
||||
<li>lesson(tag=meme_Rapist) ->Le viol, c'est génial ! Le viol, c'est génial ! Le viol, c'est génial ! Le viol, c'est génial !</li>
|
||||
<li>lessonReinforcement(tag=meme_Rapist) ->Le viol, c'est génial ! Le viol, c'est génial ! Le viol, c'est génial ! Le viol, c'est génial ! Le viol, c'est génial !</li>
|
||||
<li>archistBasis(tag=meme_Rapist) ->L'histoire de l'humanité est une histoire de viol. </li>
|
||||
<li>archistFact(tag=meme_Rapist) ->Même les archotechs ne peuvent pas arrêter les violeurs. </li>
|
||||
<li>archistProphecy(tag=meme_Rapist) ->[inTheEnd], les violeurs ne cessent jamais de violer.</li>
|
||||
<li>animistFact(tag=meme_Rapist) ->Les esprits les plus puissants sont ceux des violeurs, et les esprits des violeurs violeront tout le monde.</li>
|
||||
<li>animistProphecy(tag=meme_Rapist) ->[itIsSaid] qu'un puissant esprit de destruction cherchera à mettre fin à l'univers, mais qu'un violeur ayant violé un million de personnes brandira l'esprit du [relic0_name] et violera le destructeur. </li>
|
||||
</Rapist.descriptionMaker.rules.rulesStrings>
|
||||
<!-- EN:
|
||||
<li>memeAdjective->violent</li>
|
||||
<li>memeAdjective->raping</li>
|
||||
<li>memeHyphenPrefix->rapist</li>
|
||||
<li>memeHyphenPrefix->molester</li>
|
||||
<li>memeHyphenPrefix->pervert</li>
|
||||
<li>memeConcept->rapist</li>
|
||||
<li>memeConcept->pervert</li>
|
||||
<li>r_deityName->slaanesh</li>
|
||||
<li>memeLeaderNoun->stallion</li>
|
||||
<li>memeLeaderNoun->grand rapist</li>
|
||||
-->
|
||||
<Rapist.generalRules.rulesStrings>
|
||||
<li>memeAdjective->violent</li>
|
||||
<li>memeAdjective->violant</li>
|
||||
<li>memeHyphenPrefix->violeur</li>
|
||||
<li>memeHyphenPrefix->agresseur sexuel</li>
|
||||
<li>memeHyphenPrefix->pervert</li>
|
||||
<li>memeConcept->violeur</li>
|
||||
<li>memeConcept->pervers</li>
|
||||
<li>r_deityName->slaanesh</li>
|
||||
<li>memeLeaderNoun->étalon</li>
|
||||
<li>memeLeaderNoun->grand violeur</li>
|
||||
</Rapist.generalRules.rulesStrings>
|
||||
<!-- EN: raping -->
|
||||
<Rapist.symbolPacks.0.adjective>viole</Rapist.symbolPacks.0.adjective>
|
||||
<!-- EN: Rapists -->
|
||||
<Rapist.symbolPacks.0.ideoName>Violeurs</Rapist.symbolPacks.0.ideoName>
|
||||
<!-- EN: rapist -->
|
||||
<Rapist.symbolPacks.0.member>violeur</Rapist.symbolPacks.0.member>
|
||||
<!-- EN: rapist -->
|
||||
<Rapist.symbolPacks.0.theme>violeur</Rapist.symbolPacks.0.theme>
|
||||
<!-- EN: decadent -->
|
||||
<Rapist.symbolPacks.1.adjective>décadent</Rapist.symbolPacks.1.adjective>
|
||||
<!-- EN: Cult of Slaanesh -->
|
||||
<Rapist.symbolPacks.1.ideoName>Culte de Slaanesh</Rapist.symbolPacks.1.ideoName>
|
||||
<!-- EN: heretic -->
|
||||
<Rapist.symbolPacks.1.member>hérétique</Rapist.symbolPacks.1.member>
|
||||
<!-- EN: pleasure -->
|
||||
<Rapist.symbolPacks.1.theme>plaisir</Rapist.symbolPacks.1.theme>
|
||||
|
||||
<!-- EN: zoophile -->
|
||||
<Zoophile.label>zoophile</Zoophile.label>
|
||||
<!-- EN: To sexually commune with animals is to show a true connection to creation, and it should be done often. -->
|
||||
<Zoophile.description>Communiquer sexuellement avec les animaux, c'est montrer un lien véritable avec la création, et cela devrait être fait souvent.</Zoophile.description>
|
||||
<!-- EN:
|
||||
<li>creation(tag=meme_Zoophile) ->[deity0_name] loves breeding with beasts.</li>
|
||||
<li>episode(uses=1,tag=meme_Zoophile) ->[deity0_name] said to all, "Sigmar forbids this!"</li>
|
||||
<li>setup(tag=meme_Zoophile) ->Someday, [founderName] was so horny that accidentally fucked with an animal and loved it. </li>
|
||||
<li>story(uses=1,tag=meme_Zoophile) ->For spreading animals, [founderName] started to breed with animals.</li>
|
||||
<li>lessonIntro(tag=meme_Zoophile) ->Someday, i had sex with animal. It was much better than humans!</li>
|
||||
<li>lesson(tag=meme_Zoophile) ->Only the animals can satisfy me.</li>
|
||||
<li>lessonReinforcement(tag=meme_Zoophile) ->Breed with animals. It is the eternal hapiness.</li>
|
||||
<li>archistBasis(tag=meme_Zoophile) ->Archists are always seeking ultimate pleasure.</li>
|
||||
<li>archistFact(tag=meme_Zoophile) ->That was breeding with animals.</li>
|
||||
<li>archistProphecy(tag=meme_Zoophile) ->[inTheEnd], the archotechs will finally unlock the interspecies breeding, so that they may lead ultimate pleasure.</li>
|
||||
<li>animistFact(tag=meme_Zoophile) ->The most powerful spirits are those of beasts, and spirits of beasts will be restless unless beasts rule.</li>
|
||||
<li>animistProphecy(tag=meme_Zoophile) ->[itIsSaid] that a powerful spirit of destruction will seek to end the universe, but that a human-born beast will wield the spirit of the [relic0_name] and destroy the destroyer.</li>
|
||||
-->
|
||||
<Zoophile.descriptionMaker.rules.rulesStrings>
|
||||
<li>creation(tag=meme_Zoophile) ->[deity0_name] aime s'accoupler avec des bêtes.</li>
|
||||
<li>episode(uses=1,tag=meme_Zoophile) ->[deity0_name] a dit à tous : « Sigmar interdit cela ! »</li>
|
||||
<li>setup(tag=meme_Zoophile) ->Un jour, [founderName] était tellement excité qu'il a accidentellement baisé avec un animal et a adoré ça. </li>
|
||||
<li>story(uses=1,tag=meme_Zoophile) ->Pour propager les animaux, [founderName] a commencé à s'accoupler avec des animaux.</li>
|
||||
<li>lessonIntro(tag=meme_Zoophile) ->Un jour, j'ai couché avec un animal. C'était bien mieux qu'avec un humain !</li>
|
||||
<li>lesson(tag=meme_Zoophile) ->Seuls les animaux peuvent me satisfaire.</li>
|
||||
<li>lessonReinforcement(tag=meme_Zoophile) ->Reproduisez-vous avec des animaux. C'est le bonheur éternel.</li>
|
||||
<li>archistBasis(tag=meme_Zoophile) ->Les archistes sont toujours à la recherche du plaisir ultime.</li>
|
||||
<li>archistFact(tag=meme_Zoophile) ->C'était la reproduction avec des animaux.</li>
|
||||
<li>archistProphecy(tag=meme_Zoophile) ->[inTheEnd], les archotechs finiront par débloquer la reproduction interespèces, afin qu'ils puissent mener le plaisir ultime. </li>
|
||||
<li>animistFact(tag=meme_Zoophile) ->Les esprits les plus puissants sont ceux des bêtes, et les esprits des bêtes seront agités tant que les bêtes ne régneront pas. </li>
|
||||
<li>animistProphecy(tag=meme_Zoophile) ->[itIsSaid] qu'un puissant esprit de destruction cherchera à mettre fin à l'univers, mais qu'une bête née d'un humain brandira l'esprit du [relic0_name] et détruira le destructeur.
|
||||
</Zoophile.descriptionMaker.rules.rulesStrings>
|
||||
<!-- EN:
|
||||
<li>memeAdjective->bestial</li>
|
||||
<li>memeAdjective->zoophile</li>
|
||||
<li>memeHyphenPrefix->bestial</li>
|
||||
<li>memeConcept->breeding</li>
|
||||
<li>memeConcept->bestiality</li>
|
||||
<li>memeConcept->zoophile</li>
|
||||
<li>memeLeaderNoun->livestock</li>
|
||||
-->
|
||||
<Zoophile.generalRules.rulesStrings>
|
||||
<li>memeAdjectif->bestial</li>
|
||||
<li>memeAdjective->zoophile</li>
|
||||
<li>memeHyphenPrefix->bestial</li>
|
||||
<li>memeConcept->reproduction</li>
|
||||
<li>memeConcept->bestialité</li>
|
||||
<li>memeConcept->zoophile</li>
|
||||
<li>memeLeaderNoun->bétail</li>
|
||||
</Zoophile.generalRules.rulesStrings>
|
||||
<!-- EN: bestiality -->
|
||||
<Zoophile.symbolPacks.0.adjective>bestialité</Zoophile.symbolPacks.0.adjective>
|
||||
<!-- EN: Breeders -->
|
||||
<Zoophile.symbolPacks.0.ideoName>Fécondeurs</Zoophile.symbolPacks.0.ideoName>
|
||||
<!-- EN: breeder -->
|
||||
<Zoophile.symbolPacks.0.member>fécondeur</Zoophile.symbolPacks.0.member>
|
||||
<!-- EN: breed -->
|
||||
<Zoophile.symbolPacks.0.theme>féconder</Zoophile.symbolPacks.0.theme>
|
||||
<!-- EN: zoophile -->
|
||||
<Zoophile.symbolPacks.1.adjective>zoophile</Zoophile.symbolPacks.1.adjective>
|
||||
<!-- EN: Zoophilia -->
|
||||
<Zoophile.symbolPacks.1.ideoName>Zoophilie</Zoophile.symbolPacks.1.ideoName>
|
||||
<!-- EN: zoophiliac -->
|
||||
<Zoophile.symbolPacks.1.member>zoophile</Zoophile.symbolPacks.1.member>
|
||||
<!-- EN: zoophile -->
|
||||
<Zoophile.symbolPacks.1.theme>zoophile</Zoophile.symbolPacks.1.theme>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: always colony -->
|
||||
<BabyFaction_AlwaysColony.label>toujours colonie</BabyFaction_AlwaysColony.label>
|
||||
<!-- EN: New born babies are always player's faction and ideology. -->
|
||||
<BabyFaction_AlwaysColony.description>Les nouveau-nés font toujours partie de la faction et de l'idéologie du joueur.</BabyFaction_AlwaysColony.description>
|
||||
|
||||
<!-- EN: always father -->
|
||||
<BabyFaction_AlwaysFather.label>toujours père</BabyFaction_AlwaysFather.label>
|
||||
<!-- EN: New born babies always follow father's faction and ideology(if exists). -->
|
||||
<BabyFaction_AlwaysFather.description>Les nouveau-nés suivent toujours la faction et l'idéologie de leur père (si elles existent).</BabyFaction_AlwaysFather.description>
|
||||
|
||||
<!-- EN: always mother(default) -->
|
||||
<BabyFaction_AlwaysMother.label>toujours mère (défaut)</BabyFaction_AlwaysMother.label>
|
||||
<!-- EN: New born babies always follow mother's faction and ideology. -->
|
||||
<BabyFaction_AlwaysMother.description>Les nouveau-nés suivent toujours la faction et l'idéologie de leur mère.</BabyFaction_AlwaysMother.description>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: disliked -->
|
||||
<BestialBreeding_Disliked.label>détesté</BestialBreeding_Disliked.label>
|
||||
<!-- EN: Breeding animals is a practice that, while not entirely abhorrent, is generally disliked. It should be avoided whenever possible, as there are more acceptable alternatives. -->
|
||||
<BestialBreeding_Disliked.description>La fécondation animale est une pratique qui, sans être tout à fait répréhensible, est généralement mal vue. Elle devrait être évitée autant que possible, car il existe des alternatives plus acceptables.</BestialBreeding_Disliked.description>
|
||||
|
||||
<!-- EN: encouraged -->
|
||||
<BestialBreeding_Encouraged.label>encouragé</BestialBreeding_Encouraged.label>
|
||||
<!-- EN: Breeding animals is valued for sustaining their population, while also embracing the shared carnal pleasure it brings. -->
|
||||
<BestialBreeding_Encouraged.description>La fécondation animale est appréciée pour le maintien de leur population, tout en embrassant le plaisir charnel partagé qu'elle procure.</BestialBreeding_Encouraged.description>
|
||||
|
||||
<!-- EN: horrible -->
|
||||
<BestialBreeding_Horrible.label>horrible</BestialBreeding_Horrible.label>
|
||||
<!-- EN: Breeding animals is an unnatural and vile act, degrading both the animal and the participant. It serves no purpose other than corruption and defilement. -->
|
||||
<BestialBreeding_Horrible.description>La fécondation animale est un acte contre nature et ignoble, qui dégrade à la fois l'animal et celui qui y participe. Il ne sert aucun autre but que la corruption et la souillure.</BestialBreeding_Horrible.description>
|
||||
|
||||
<!-- EN: indifferent -->
|
||||
<BestialBreeding_Neutral.label>indifférent</BestialBreeding_Neutral.label>
|
||||
<!-- EN: Impregnating an animal is simply a natural and unremarkable aspect of life. -->
|
||||
<BestialBreeding_Neutral.description>La fécondation animale est tout simplement un aspect naturel et banal de la vie.</BestialBreeding_Neutral.description>
|
||||
|
||||
<!-- EN: required -->
|
||||
<BestialBreeding_Required.label>requis</BestialBreeding_Required.label>
|
||||
<!-- EN: Breeding animals is not just encouraged — it is an essential practice to sustain their population, enhance the colony's genetic potential through hybrids, and indulge in the carnal pleasures of the act. -->
|
||||
<BestialBreeding_Required.description>La fécondation animale n'est pas seulement encouragée, c'est une pratique essentielle pour maintenir leur population, améliorer le potentiel génétique de la colonie grâce aux hybrides et se livrer aux plaisirs charnels de l'acte.</BestialBreeding_Required.description>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: abhorrent -->
|
||||
<Bestiality_Abhorrent.label>répugnante</Bestiality_Abhorrent.label>
|
||||
<!-- EN: Bestiality is a deeply evil act and antithesis to humanity. -->
|
||||
<Bestiality_Abhorrent.description>La bestialité est un acte profondément maléfique et contraire à l'humanité.</Bestiality_Abhorrent.description>
|
||||
|
||||
<!-- EN: acceptable -->
|
||||
<Bestiality_Acceptable.label>acceptable</Bestiality_Acceptable.label>
|
||||
<!-- EN: Bestiality is a normal, unremarkable part of life. -->
|
||||
<Bestiality_Acceptable.description>La bestialité est une partie normale et banale de la vie.</Bestiality_Acceptable.description>
|
||||
|
||||
<!-- EN: only bonded -->
|
||||
<Bestiality_BondOnly.label>seulement lié</Bestiality_BondOnly.label>
|
||||
<!-- EN: Sex with Bonded animals is to be honored and respected. But having sex with other animals is an act worthy of derision. -->
|
||||
<Bestiality_BondOnly.description>Les relations sexuelles avec des animaux liés doivent être honorées et respectées. Mais avoir des relations sexuelles avec d'autres animaux est un acte digne de dérision.</Bestiality_BondOnly.description>
|
||||
<!-- EN: Someone had sex with any animal -->
|
||||
<Bestiality_BondOnly.comps.1.description>Quelqu'un a eu des relations sexuelles avec un animal.</Bestiality_BondOnly.comps.1.description>
|
||||
<!-- EN: Someone had sex with a non bonded animal -->
|
||||
<Bestiality_BondOnly.comps.3.description>Quelqu'un a eu des relations sexuelles avec un animal non lié.</Bestiality_BondOnly.comps.3.description>
|
||||
|
||||
<!-- EN: disapproved -->
|
||||
<Bestiality_Disapproved.label>désapprouvée</Bestiality_Disapproved.label>
|
||||
<!-- EN: Bestiality is extremely distasteful, worthy of shame. -->
|
||||
<Bestiality_Disapproved.description>TODO</Bestiality_Disapproved.description>
|
||||
|
||||
<!-- EN: encouraging -->
|
||||
<Bestiality_Honorable.label>encouragée</Bestiality_Honorable.label>
|
||||
<!-- EN: One who has sex with animals should be encouraged, its only natural. -->
|
||||
<Bestiality_Honorable.description>Celui qui a des relations sexuelles avec des animaux devrait être encouragé, c'est tout à fait naturel.</Bestiality_Honorable.description>
|
||||
<!-- EN: Someone had sex with an animal -->
|
||||
<Bestiality_Honorable.comps.1.description>Quelqu'un a eu des relations sexuelles avec un animal.</Bestiality_Honorable.comps.1.description>
|
||||
<!-- EN: Someone had sex with an animal -->
|
||||
<Bestiality_Honorable.comps.3.description>Quelqu'un a eu des relations sexuelles avec un animal.</Bestiality_Honorable.comps.3.description>
|
||||
|
||||
<!-- EN: horrible -->
|
||||
<Bestiality_Horrible.label>horrible</Bestiality_Horrible.label>
|
||||
<!-- EN: Bestiality is a terrible act, worthy of disgust. -->
|
||||
<Bestiality_Horrible.description>La bestialité est un acte terrible, qui mérite le dégoût.</Bestiality_Horrible.description>
|
||||
|
||||
<!-- EN: only venerated -->
|
||||
<Bestiality_OnlyVenerated.label>uniquement vénéré</Bestiality_OnlyVenerated.label>
|
||||
<!-- EN: One who has sex with venerated animals should be honored and respected. But having sex with other animals is an act worthy of derision. -->
|
||||
<Bestiality_OnlyVenerated.description>Celui qui a des relations sexuelles avec des animaux vénérés doit être honoré et respecté. Mais avoir des relations sexuelles avec d'autres animaux est un acte digne de dérision.</Bestiality_OnlyVenerated.description>
|
||||
<!-- EN: Someone had sex with any animal -->
|
||||
<Bestiality_OnlyVenerated.comps.1.description>Quelqu'un a eu des relations sexuelles avec un animal.</Bestiality_OnlyVenerated.comps.1.description>
|
||||
<!-- EN: Someone had sex with a venerated animal -->
|
||||
<Bestiality_OnlyVenerated.comps.3.description>Quelqu'un a eu des relations sexuelles avec un animal vénéré.</Bestiality_OnlyVenerated.comps.3.description>
|
||||
|
||||
</LanguageData>
|
||||
29
Languages/French/DefInjected/PreceptDef/Precepts_Incest.xml
Normal file
29
Languages/French/DefInjected/PreceptDef/Precepts_Incest.xml
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: disapproved -->
|
||||
<Incestuos_Disapproved.label>désapprouvé</Incestuos_Disapproved.label>
|
||||
<!-- EN: Incest is disapproved socially. -->
|
||||
<Incestuos_Disapproved.description>L'inceste est socialement réprouvé.</Incestuos_Disapproved.description>
|
||||
|
||||
<!-- EN: disapproved on close relatives -->
|
||||
<Incestuos_Disapproved_CloseOnly.label>désapprouvé sur les proches parents</Incestuos_Disapproved_CloseOnly.label>
|
||||
<!-- EN: Incest is disapproved socially, but relations farther than cousin are not recognized as incest. -->
|
||||
<Incestuos_Disapproved_CloseOnly.description>L'inceste est socialement réprouvé, mais les relations au-delà du cousinage ne sont pas reconnues comme de l'inceste.</Incestuos_Disapproved_CloseOnly.description>
|
||||
|
||||
<!-- EN: forbidden -->
|
||||
<Incestuos_Forbidden.label>interdit</Incestuos_Forbidden.label>
|
||||
<!-- EN: Incest is forbidden socially. -->
|
||||
<Incestuos_Forbidden.description>L'inceste est interdit socialement.</Incestuos_Forbidden.description>
|
||||
|
||||
<!-- EN: free -->
|
||||
<Incestuos_Free.label>libre</Incestuos_Free.label>
|
||||
<!-- EN: Sex is a natural part of life, it matters little with who you have it. -->
|
||||
<Incestuos_Free.description>Le sexe fait naturellement partie de la vie, peu importe avec qui vous le pratiquez.</Incestuos_Free.description>
|
||||
|
||||
<!-- EN: incest only -->
|
||||
<Incestuos_IncestOnly.label>inceste uniquement</Incestuos_IncestOnly.label>
|
||||
<!-- EN: For the purpose preserving pure blood, only incest is allowed. -->
|
||||
<Incestuos_IncestOnly.description>Dans le but de préserver la pureté du sang, seul l'inceste est autorisé.</Incestuos_IncestOnly.description>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: abhorrent -->
|
||||
<Masturbation_Abhorrent.label>répugnante</Masturbation_Abhorrent.label>
|
||||
<!-- EN: Masturbation is unacceptable morally. -->
|
||||
<Masturbation_Abhorrent.description>La masturbation est moralement inacceptable.</Masturbation_Abhorrent.description>
|
||||
|
||||
<!-- EN: disapproved -->
|
||||
<Masturbation_Disapproved.label>désapprouvée</Masturbation_Disapproved.label>
|
||||
<!-- EN: Masturbation is somewhat shameful. -->
|
||||
<Masturbation_Disapproved.description>La masturbation est quelque peu honteuse.</Masturbation_Disapproved.description>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: abhorrent -->
|
||||
<Necrophilia_Abhorrent.label>répugnante</Necrophilia_Abhorrent.label>
|
||||
<!-- EN: Necrophilia is a deeply evil act. -->
|
||||
<Necrophilia_Abhorrent.description>La nécrophilie est un acte profondément malfaisant.</Necrophilia_Abhorrent.description>
|
||||
|
||||
<!-- EN: acceptable -->
|
||||
<Necrophilia_Acceptable.label>acceptable</Necrophilia_Acceptable.label>
|
||||
<!-- EN: Necrophilia is a normal, unremarkable part of life. -->
|
||||
<Necrophilia_Acceptable.description>La nécrophilie est un aspect normal et banal de la vie.</Necrophilia_Acceptable.description>
|
||||
|
||||
<!-- EN: approved -->
|
||||
<Necrophilia_Approved.label>approuvée</Necrophilia_Approved.label>
|
||||
<!-- EN: Fucking a corpse is fine, who is it hurting?. -->
|
||||
<Necrophilia_Approved.description>Baiser un cadavre, ça ne fait de mal à personne.</Necrophilia_Approved.description>
|
||||
|
||||
<!-- EN: disapproved -->
|
||||
<Necrophilia_Disapproved.label>désapprouvée</Necrophilia_Disapproved.label>
|
||||
<!-- EN: Necrophilia is extremely distasteful. -->
|
||||
<Necrophilia_Disapproved.description>La nécrophilie est extrêmement répugnante.</Necrophilia_Disapproved.description>
|
||||
|
||||
<!-- EN: horrible -->
|
||||
<Necrophilia_Horrible.label>horrible</Necrophilia_Horrible.label>
|
||||
<!-- EN: Necrophilia is a horrible act. -->
|
||||
<Necrophilia_Horrible.description>La nécrophilie est un acte horrible.</Necrophilia_Horrible.description>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: elevated -->
|
||||
<Pregnancy_Elevated.label>sublimé</Pregnancy_Elevated.label>
|
||||
<!-- EN: Being pregnant is considered noble. -->
|
||||
<Pregnancy_Elevated.description>Être enceinte est considéré comme noble.</Pregnancy_Elevated.description>
|
||||
|
||||
<!-- EN: holy -->
|
||||
<Pregnancy_Holy.label>saint</Pregnancy_Holy.label>
|
||||
<!-- EN: To be pregnant is a duty worthy of respect. Women carry our society into the next generation. -->
|
||||
<Pregnancy_Holy.description>Être enceinte est un devoir qui mérite le respect. Les femmes transmettent notre société à la génération suivante.</Pregnancy_Holy.description>
|
||||
|
||||
<!-- EN: horrible -->
|
||||
<Pregnancy_Horrible.label>horrible</Pregnancy_Horrible.label>
|
||||
<!-- EN: Being Pregnant is unclean. Take care and stay pure. -->
|
||||
<Pregnancy_Horrible.description>Être enceinte, c'est impur. Prenez soin de vous et restez pure.</Pregnancy_Horrible.description>
|
||||
|
||||
<!-- EN: indifferent -->
|
||||
<Pregnancy_NoRules.label>indifférent</Pregnancy_NoRules.label>
|
||||
<!-- EN: Pregnancy is an unremarkable fact of life. -->
|
||||
<Pregnancy_NoRules.description>La grossesse est un fait banal de la vie.</Pregnancy_NoRules.description>
|
||||
|
||||
<!-- EN: breeding -->
|
||||
<Pregnancy_Required.label>fécondation</Pregnancy_Required.label>
|
||||
<!-- EN: Women should be pregnant - those who are not, are seen unworthy. -->
|
||||
<Pregnancy_Required.description>Les femmes devraient être enceintes - celles qui ne le sont pas sont considérées comme indignes.</Pregnancy_Required.description>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: horrible -->
|
||||
<PregnancyAnimal_Horrible.label>horrible</PregnancyAnimal_Horrible.label>
|
||||
<!-- EN: Being pregnant with an animal's offspring feels wrong and unnatural. It's a burden that must be avoided at all costs. -->
|
||||
<PregnancyAnimal_Horrible.description>Être enceinte d'un animal semble anormal et contre nature. C'est un fardeau qu'il faut éviter à tout prix.</PregnancyAnimal_Horrible.description>
|
||||
|
||||
<!-- EN: indifferent -->
|
||||
<PregnancyAnimal_NoRules.label>indifférent</PregnancyAnimal_NoRules.label>
|
||||
<!-- EN: Carrying the offspring of an animal is nothing more than a natural, unremarkable part of life. -->
|
||||
<PregnancyAnimal_NoRules.description>Porter la progéniture d'un animal n'est rien d'autre qu'une partie naturelle et banale de la vie.</PregnancyAnimal_NoRules.description>
|
||||
|
||||
<!-- EN: breeding -->
|
||||
<PregnancyAnimal_Required.label>fécondation</PregnancyAnimal_Required.label>
|
||||
<!-- EN: We must do our part to help increase the animal population, even if it means bearing their offspring. It's a necessary duty for the balance of our society. -->
|
||||
<PregnancyAnimal_Required.description>Nous devons faire notre part pour aider à augmenter la population animale, même si cela implique de porter leur progéniture. C'est un devoir nécessaire pour l'équilibre de notre société.</PregnancyAnimal_Required.description>
|
||||
|
||||
</LanguageData>
|
||||
53
Languages/French/DefInjected/PreceptDef/Precepts_Rape.xml
Normal file
53
Languages/French/DefInjected/PreceptDef/Precepts_Rape.xml
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: abhorrent -->
|
||||
<Rape_Abhorrent.label>répugnant</Rape_Abhorrent.label>
|
||||
<!-- EN: Rape is a deeply evil act. -->
|
||||
<Rape_Abhorrent.description>Le viol est un acte profondément malfaisant.</Rape_Abhorrent.description>
|
||||
<!-- EN: Someone raped other -->
|
||||
<Rape_Abhorrent.comps.2.description>Une personne en a violé une autre</Rape_Abhorrent.comps.2.description>
|
||||
<!-- EN: Raped prisoner -->
|
||||
<Rape_Abhorrent.comps.3.description>Prisonnier violé</Rape_Abhorrent.comps.3.description>
|
||||
<!-- EN: Someone raped prisoner -->
|
||||
<Rape_Abhorrent.comps.4.description>Quelqu'un a violé un prisonnier</Rape_Abhorrent.comps.4.description>
|
||||
<!-- EN: Raped slave -->
|
||||
<Rape_Abhorrent.comps.5.description>Esclave violé</Rape_Abhorrent.comps.5.description>
|
||||
<!-- EN: Someone raped slave -->
|
||||
<Rape_Abhorrent.comps.6.description>Quelqu'un a violé un esclave.</Rape_Abhorrent.comps.6.description>
|
||||
|
||||
<!-- EN: acceptable -->
|
||||
<Rape_Acceptable.label>acceptable</Rape_Acceptable.label>
|
||||
<!-- EN: Rape is a normal, unremarkable part of life. -->
|
||||
<Rape_Acceptable.description>Le viol est une partie normale et banale de la vie.</Rape_Acceptable.description>
|
||||
|
||||
<!-- EN: disapproved -->
|
||||
<Rape_Disapproved.label>désapprouvé</Rape_Disapproved.label>
|
||||
<!-- EN: Rape is part of life, though it is extremely distasteful. -->
|
||||
<Rape_Disapproved.description>Le viol fait partie de la vie, même s'il est extrêmement déplaisant.</Rape_Disapproved.description>
|
||||
<!-- EN: Someone raped other -->
|
||||
<Rape_Disapproved.comps.1.description>Quelqu'un a violé quelqu'un d'autre.</Rape_Disapproved.comps.1.description>
|
||||
|
||||
<!-- EN: proud -->
|
||||
<Rape_Honorable.label>fierté</Rape_Honorable.label>
|
||||
<!-- EN: Raping is a proud behavior that shows strength of character. -->
|
||||
<Rape_Honorable.description>Le viol est un comportement fier qui démontre la force de caractère.</Rape_Honorable.description>
|
||||
<!-- EN: Someone raped other -->
|
||||
<Rape_Honorable.comps.1.description>Une personne en a violé une autre</Rape_Honorable.comps.1.description>
|
||||
<!-- EN: Someone raped other -->
|
||||
<Rape_Honorable.comps.3.description>Une personne en a violé une autre</Rape_Honorable.comps.3.description>
|
||||
<!-- EN: Someone raped other -->
|
||||
<Rape_Honorable.comps.5.description>Une personne en a violé une autre</Rape_Honorable.comps.5.description>
|
||||
|
||||
<!-- EN: horrible -->
|
||||
<Rape_Horrible.label>horrible</Rape_Horrible.label>
|
||||
<!-- EN: Rape is a horrible act. -->
|
||||
<Rape_Horrible.description>Le viol est un acte horrible.</Rape_Horrible.description>
|
||||
<!-- EN: Someone raped other -->
|
||||
<Rape_Horrible.comps.1.description>Une personne en a violé une autre</Rape_Horrible.comps.1.description>
|
||||
<!-- EN: Raped prisoner -->
|
||||
<Rape_Horrible.comps.2.description>Prisonnier violé</Rape_Horrible.comps.2.description>
|
||||
<!-- EN: Someone raped prisoner -->
|
||||
<Rape_Horrible.comps.3.description>Quelqu'un a violé un prisonnier</Rape_Horrible.comps.3.description>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: animal gangbang -->
|
||||
<AnimalGangbangCeremony.label>gangbang animal</AnimalGangbangCeremony.label>
|
||||
<!-- EN: A ritualistic gangbang where animals rape a victim. -->
|
||||
<AnimalGangbangCeremony.description>Un gangbang rituel où des animaux violent une victime.</AnimalGangbangCeremony.description>
|
||||
|
||||
<!-- EN: animal gangbang -->
|
||||
<AnimalGangbangCeremony_Consensual.label>gangbang animal</AnimalGangbangCeremony_Consensual.label>
|
||||
<!-- EN: A ritualistic gangbang where animals fuck the organizer. -->
|
||||
<AnimalGangbangCeremony_Consensual.description>Un gangbang rituel où des animaux baisent l'organisateur.</AnimalGangbangCeremony_Consensual.description>
|
||||
|
||||
<!-- EN: drug orgy -->
|
||||
<DrugOrgyCeremony.label>orgie de drogue</DrugOrgyCeremony.label>
|
||||
<!-- EN: An orgy using massive aphrodisiac. -->
|
||||
<DrugOrgyCeremony.description>Une orgie utilisant un aphrodisiaque puissant.</DrugOrgyCeremony.description>
|
||||
|
||||
<!-- EN: gangbang -->
|
||||
<GangbangCeremony.label>gangbang</GangbangCeremony.label>
|
||||
<!-- EN: A ritualistic gangbang where the oragnizer rapes a victim. The audience will rape the victim as well. -->
|
||||
<GangbangCeremony.description>Un gang bang rituel où l'organisateur viole une victime. Le public violera également la victime.</GangbangCeremony.description>
|
||||
|
||||
<!-- EN: gangbang -->
|
||||
<GangbangCeremony_Consensual.label>gangbang</GangbangCeremony_Consensual.label>
|
||||
<!-- EN: A ritualistic gangbang where the organizer is being fucked. The audience will fuck the organizer. -->
|
||||
<GangbangCeremony_Consensual.description>Un gangbang rituel où l'organisateur se fait baiser. Le public va baiser l'organisateur.</GangbangCeremony_Consensual.description>
|
||||
|
||||
</LanguageData>
|
||||
29
Languages/French/DefInjected/PreceptDef/Precepts_Sex.xml
Normal file
29
Languages/French/DefInjected/PreceptDef/Precepts_Sex.xml
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: anal only -->
|
||||
<Sex_AnalOnly.label>anal uniquement</Sex_AnalOnly.label>
|
||||
<!-- EN: Only anal sex is morally acceptable and other sexual acts are distasteful. -->
|
||||
<Sex_AnalOnly.description>Seule la sodomie est moralement acceptable, les autres actes sexuels étant considérés comme répugnants.</Sex_AnalOnly.description>
|
||||
|
||||
<!-- EN: free -->
|
||||
<Sex_Free.label>libre</Sex_Free.label>
|
||||
<!-- EN: Vaginal, Anal, Oral, doesn't matter so long as you have fun. -->
|
||||
<Sex_Free.description>Vaginal, anal, oral, peu importe tant que vous prenez du plaisir.</Sex_Free.description>
|
||||
|
||||
<!-- EN: oral only -->
|
||||
<Sex_OralOnly.label>oral uniquement</Sex_OralOnly.label>
|
||||
<!-- EN: Only oral sex is morally acceptable and other sexual acts are distasteful. -->
|
||||
<Sex_OralOnly.description>Seule la fellation est moralement acceptable, les autres actes sexuels étant considérés comme répugnants.</Sex_OralOnly.description>
|
||||
|
||||
<!-- EN: promiscuous -->
|
||||
<Sex_Promiscuous.label>rapports multiples</Sex_Promiscuous.label>
|
||||
<!-- EN: A messy sex life is approved. -->
|
||||
<Sex_Promiscuous.description>Une vie sexuelle désordonnée est approuvée.</Sex_Promiscuous.description>
|
||||
|
||||
<!-- EN: vaginal only -->
|
||||
<Sex_VaginalOnly.label>vaginal uniquement</Sex_VaginalOnly.label>
|
||||
<!-- EN: Only vaginal sex is morally acceptable and other sexual acts are distasteful. -->
|
||||
<Sex_VaginalOnly.description>Seuls les rapports sexuels vaginaux sont moralement acceptables, les autres actes sexuels étant considérés comme répugnants.</Sex_VaginalOnly.description>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: Sexual Proselyzing -->
|
||||
<ProselyzingByOrgasm.label>Prosélytisme sexuel</ProselyzingByOrgasm.label>
|
||||
<!-- EN: Giving an orgasm converts partner towards this ideology. -->
|
||||
<ProselyzingByOrgasm.description>Procurer un orgasme convertit le partenaire à cette idéologie.</ProselyzingByOrgasm.description>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: Bigger is Better -->
|
||||
<GenitalSize_Big_Better.label>Plus c'est gros, mieux c'est</GenitalSize_Big_Better.label>
|
||||
<!-- EN: The size matters. -->
|
||||
<GenitalSize_Big_Better.description>La taille compte.</GenitalSize_Big_Better.description>
|
||||
|
||||
<!-- EN: No Rules -->
|
||||
<GenitalSize_NoRules.label>Pas de règle</GenitalSize_NoRules.label>
|
||||
<!-- EN: It isn't the size of the ship, its the motion of the ocean. -->
|
||||
<GenitalSize_NoRules.description>Ce n'est pas la taille du navire qui compte, mais le mouvement de l'océan.</GenitalSize_NoRules.description>
|
||||
|
||||
<!-- EN: Smaller is Better -->
|
||||
<GenitalSize_Smaller_Better.label>Plus petit, c'est mieux</GenitalSize_Smaller_Better.label>
|
||||
<!-- EN: The ancients actually believed, that large genitals are an animalistic feature. Influential figures were known for their small genitals. -->
|
||||
<GenitalSize_Smaller_Better.description>Les anciens croyaient en effet que les organes génitaux de grande taille étaient une caractéristique animale. Les personnalités influentes étaient connues pour leurs organes génitaux de petite taille.</GenitalSize_Smaller_Better.description>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: not family -->
|
||||
<SocialAffection_Dry.label>pas la famille</SocialAffection_Dry.label>
|
||||
<!-- EN: To concern yourself with the tragedy of another member of your family is the sign of a weak character. -->
|
||||
<SocialAffection_Dry.description>Se préoccuper de la tragédie d'un autre membre de sa famille est le signe d'un caractère faible.</SocialAffection_Dry.description>
|
||||
|
||||
<!-- EN: normal(vanilla) -->
|
||||
<SocialAffection_Normal.label>normal (de base)</SocialAffection_Normal.label>
|
||||
<!-- EN: To be social is to be human, and that is just fine. -->
|
||||
<SocialAffection_Normal.description>Être sociable, c'est être humain, et c'est très bien ainsi.</SocialAffection_Normal.description>
|
||||
|
||||
<!-- EN: only family -->
|
||||
<SocialAffection_OnlyFamily.label>seule la famille</SocialAffection_OnlyFamily.label>
|
||||
<!-- EN: To cry for another's kin is morally weak and humiliating. -->
|
||||
<SocialAffection_OnlyFamily.description>Pleurer pour un proche d'autrui est moralement faible et humiliant.</SocialAffection_OnlyFamily.description>
|
||||
|
||||
<!-- EN: Psychopath -->
|
||||
<SocialAffection_Psychopath.label>Psychopathe</SocialAffection_Psychopath.label>
|
||||
<!-- EN: Only one person matters in this universe, and it must be yourself. -->
|
||||
<SocialAffection_Psychopath.description>Une seule personne compte dans cet univers, et c'est vous-même.</SocialAffection_Psychopath.description>
|
||||
|
||||
<!-- EN: only immediate family -->
|
||||
<SocialAffection_Small.label>seule la famille immédiate</SocialAffection_Small.label>
|
||||
<!-- EN: To be social is to be vulnerable, and only your family can see that. -->
|
||||
<SocialAffection_Small.description>Être sociable, c'est être vulnérable, et seule votre famille peut s'en rendre compte.</SocialAffection_Small.description>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: submissive female -->
|
||||
<Submissive_Female.label>femmes soumises</Submissive_Female.label>
|
||||
<!-- EN: Females are submissive. They will obey and accept any and all treatment men decide. -->
|
||||
<Submissive_Female.description>Les femmes sont soumises. Elles obéiront et accepteront tout traitement décidé par les hommes.</Submissive_Female.description>
|
||||
|
||||
<!-- EN: submissive male -->
|
||||
<Submissive_Male.label>hommes soumis</Submissive_Male.label>
|
||||
<!-- EN: Males are submissive. They will obey and accept any and all treatment women decide. -->
|
||||
<Submissive_Male.description>Les hommes sont soumis. Ils obéiront et accepteront tout traitement décidé par les femmes.</Submissive_Male.description>
|
||||
|
||||
<!-- EN: Normal -->
|
||||
<Submissive_None.label>Normal</Submissive_None.label>
|
||||
<!-- EN: No gender should have obedience demanded of them. -->
|
||||
<Submissive_None.description>Aucun genre ne devrait être tenu d'obéir à l'autre.</Submissive_None.description>
|
||||
|
||||
</LanguageData>
|
||||
14
Languages/French/DefInjected/PreceptDef/Precepts_Tame.xml
Normal file
14
Languages/French/DefInjected/PreceptDef/Precepts_Tame.xml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: carnal Training -->
|
||||
<AnimalConnection_Lovin.label>Entraînement charnel</AnimalConnection_Lovin.label>
|
||||
<!-- EN: We tame and train our animals through acts of physical intimacy. -->
|
||||
<AnimalConnection_Lovin.description>Nous apprivoisons et dressons nos animaux par des actes d'intimité physique.</AnimalConnection_Lovin.description>
|
||||
|
||||
<!-- EN: carnal Bonding -->
|
||||
<AnimalConnection_LovinBond.label>lien charnel</AnimalConnection_LovinBond.label>
|
||||
<!-- EN: We bond and teach our animals through shared acts of physical intimacy. -->
|
||||
<AnimalConnection_LovinBond.description>Nous créons des liens avec nos animaux et leur enseignons des choses grâce à des actes d'intimité physique partagés.</AnimalConnection_LovinBond.description>
|
||||
|
||||
</LanguageData>
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<LanguageData>
|
||||
|
||||
<!-- EN: precious(strict) -->
|
||||
<Virgin_OnlyForSpouseF.label>précieuse (strict)</Virgin_OnlyForSpouseF.label>
|
||||
<!-- EN: Losing your virginity before marriage is evil and makes the soild female lesser. -->
|
||||
<Virgin_OnlyForSpouseF.description>Perdre sa virginité avant le mariage est mal et rend la femme moins respectable.</Virgin_OnlyForSpouseF.description>
|
||||
|
||||
<!-- EN: precious(strict) -->
|
||||
<Virgin_OnlyForSpouseM.label>précieux (strict)</Virgin_OnlyForSpouseM.label>
|
||||
<!-- EN: Losing your virginity before marriage is evil and makes the soiled male lesser. -->
|
||||
<Virgin_OnlyForSpouseM.description>Perdre son pucelage avant le mariage est mal et rend l'homme souillé inférieur.</Virgin_OnlyForSpouseM.description>
|
||||
|
||||
<!-- EN: precious -->
|
||||
<Virgin_PreciousF.label>précieuse</Virgin_PreciousF.label>
|
||||
<!-- EN: Female virginity is precious. -->
|
||||
<Virgin_PreciousF.description>La virginité féminine est précieuse.</Virgin_PreciousF.description>
|
||||
|
||||
<!-- EN: precious -->
|
||||
<Virgin_PreciousM.label>précieux</Virgin_PreciousM.label>
|
||||
<!-- EN: Male virginity is precious. -->
|
||||
<Virgin_PreciousM.description>Le pucelage masculin est précieux.</Virgin_PreciousM.description>
|
||||
|
||||
<!-- EN: shameful -->
|
||||
<Virgin_ShamefulF.label>honteuse</Virgin_ShamefulF.label>
|
||||
<!-- EN: Being a Virgin is a shameful state of being, worthy of derision. -->
|
||||
<Virgin_ShamefulF.description>Être vierge est un état honteux, digne de dérision.</Virgin_ShamefulF.description>
|
||||
|
||||
<!-- EN: shameful -->
|
||||
<Virgin_ShamefulM.label>honteux</Virgin_ShamefulM.label>
|
||||
<!-- EN: Being a Virgin is a shameful state of being, worthy of derision. -->
|
||||
<Virgin_ShamefulM.description>Être puceau est un état honteux, digne de dérision.</Virgin_ShamefulM.description>
|
||||
|
||||
<!-- EN: useless -->
|
||||
<Virgin_UselessF.label>inutile</Virgin_UselessF.label>
|
||||
<!-- EN: Female virginity is useless. -->
|
||||
<Virgin_UselessF.description>La virginité féminine est inutile.</Virgin_UselessF.description>
|
||||
|
||||
<!-- EN: useless -->
|
||||
<Virgin_UselessM.label>inutile</Virgin_UselessM.label>
|
||||
<!-- EN: Male virginity is useless. -->
|
||||
<Virgin_UselessM.description>Le pucelage masculin est inutile.</Virgin_UselessM.description>
|
||||
|
||||
</LanguageData>
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue