RimWorld

RimWorld

330 vurderinger
Precepts and Memes
2
3
2
   
Pris
Føj til foretrukne
Gjort til foretrukken
Fjern som foretrukken
Mod, 1.3
Filstørrelse:
Offentliggjort:
Opdateret:
16.409 MB
22. aug. 2021 kl. 15:06
26. okt. 2021 kl. 11:49
6 ændringsbemærkninger ( vis )
Du mangler DLC for at kunne bruge dette emne.

Abonner for at downloade
Precepts and Memes

Beskrivelse
ATTENTION: All rituals now belong to their own separate mod, as they have their own dependencies. It still requires this mod to be fully used.

Rituals mod: https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?edit=true&id=2586107221

For those that are missing the colonist duel ritual, it is contained on that mod now, albeit with some alterations.

If the last update somehow broke your game, heres the original version. Remove this one and add that one to your load order: https://github.com/00Zezz/MemesAndP/releases/tag/1.0

Adds new precepts and some memes to the game to spice up your ideologies.

Note: If you're using any other precepts mod and get an xml error with the exclusion tags please ignore it. It's harmless at worst.

Precepts:

Population. Either small or large. Will give you a bonus or malus when below 5 colonists, and a bonus or malus for each colonist above 5. A good compensation for those who want small colonies, or a nice helper for those that want gigantic ones.

Trading: Either honored or respected. Will give you better trading prices, but will make it so that you need to trade every few days or you'll get a penalty. There's also a penalty on global work speed for both of these. Require trader meme.

Death: Either don't care or Revered. Don't care is justs that, you don't care. Revered give you a mood buff when one of you colonists die. Both of these also incur a penalty on tending.


Memes:

Necrolatry: You love death. Gives you access to the melee and shooting specialist, and the precept Death: Revered.

Traders: Trade is paramount, Charity isn't. Gives access to trading precepts.

Altruism. From my other mod of the same name. Charity is important or better, and blocks most "bad people" precepts.

Ritual:

Colonist duel: Also from my other mod. Allows two colonists and/or slaves to fight each other.



I'll be adding more things as I get more Ideas. Leave any sugestion in the comment.

The source files are included. And you're free to use them as you like as long as you give credit back.


Due to extreme pressure from a friend of mine, I've set up a Kofi page. Send some Yayo Love this way if you feel like it.

https://ko-fi.com/zezz_

Populære diskussioner Vis alle (1)
27
30. nov. 2021 kl. 0:40
Bug reports
Zezz
128 kommentarer
Mikki 5. jan. 2023 kl. 10:07 
@Mlie Thanks for taking care of so many abandoned mods, your work is incredible!
Mlie 28. nov. 2022 kl. 2:40 
Drago Duval 8. nov. 2022 kl. 14:12 
Nope, the dev is busy working on 1.5.
Rude 22. okt. 2022 kl. 9:22 
we getting 1.4 update?
Thetaprime 29. juli 2022 kl. 8:08 
Good features in this mod, but it seems abandoned, along with the ritual framework.
Soraya 12. apr. 2022 kl. 18:20 
The image has an icon for for a precept called orthodoxy, which isn't mentioned in the description. Is that a part of this mod as well?
Jacque Pott 8. jan. 2022 kl. 4:26 
I've found a compatibility problem with Pawnmorpher. Turning a pawn into an animal causes a null reference exception and stops them from being transformed. I've managed decompile and fix the problem by adding some null checks to the offending patch:

public static class MemoryPatch
{
private static void Prefix(ref MemoryThoughtHandler __instance, ref Thought_Memory newThought, Pawn otherPawn = null)
{
if (newThought != null && __instance.pawn != null && __instance.pawn.Ideo != null)
{
if (newThought.sourcePrecept == null || !__instance.pawn.Ideo.HasPrecept(PreceptDefOfDeath.Orthodoxy))
return;
newThought.moodPowerFactor *= 2f;
Log.Message("hello");
}
}
}
Zezz  [ophavsmand] 4. dec. 2021 kl. 11:55 
@RedCell You could get Visual Studio, change the number to whatever you want, and recompile the .dll. Maybe you could edit it straight from the .dll with a program like dnSpy. That's as much as I can help, and probably the easiest way.
Akahige 3. dec. 2021 kl. 13:08 
I understand that, but is it possible to have a scaling difficulty proportionate to how many colonists I choose to have instead of a mood debuff that caps at a mere 15 compared to the 37+ Colonists I've recruited because I have no reason to not recruit more other than my PC's processing power?
Zezz  [ophavsmand] 3. dec. 2021 kl. 9:35 
@RedCell you can change the base mood debuff on the defs, so no need to touch the C# code for that. But remember that the number you put there is going to be multiplied by the amount of people over the threshold. you would probably want a -3, or even a -4 for some real challenge.