RimWorld

RimWorld

262 betyg
[A15/A16] Where is rich soil?
   
Utmärkelse
Favorit
Favoritmarkerad
Avfavoritmarkerad
Filstorlek
Lades upp
Uppdaterades
2.300 MB
19 okt, 2016 @ 1:57
13 dec, 2016 @ 9:40
2 ändringsnotiser ( visa )

Abonnera för att ladda ner
[A15/A16] Where is rich soil?

Beskrivning
Are you tired of having to seek rich soil?
This mod changes original rich soil color to be darker to make it easier to find.


https://ludeon.com/forums/index.php?topic=27551
72 kommentarer
مُتَّقِينَMUTTAKIIN 4 nov, 2024 @ 11:03 
DO NOT UPDATE
DaTrüf! (feng shui) 25 dec, 2023 @ 20:45 
UPDATE
Smokie 22 jan, 2018 @ 12:25 
Endoric: I just tried to go through the whole process to setup a account to upload mods. I have no clue how to upload it. The code below works though for B18.
endoric 8 jan, 2018 @ 3:43 
if someone here claims to have fixed it for 18 just upload it to the workshop and include credit and a link to here.
Snow 4 jan, 2018 @ 7:50 
B18 update coming anytime soon?
k1LLz0Rz 11 dec, 2017 @ 22:31 
Woot!
Thanks for the feedback ZeProfessional, this (albeit minor) success makes me want to learn more haha.
ZeProfessional 11 dec, 2017 @ 11:55 
@k1LLz0Rz

Your recent fix seems to be working so far with no problems. Will update if any arise cause I have no clue what I'm doing otherwise. Thanks!
k1LLz0Rz 9 dec, 2017 @ 22:04 
@ebonite & Blaze

First off, thank you for giving enough info that I'm pretty sure I was able to figure this out!
I'm just learning how to tinker with XML files / just getting into modding, and want to learn properly.
Would one of you cats (or anyone else with experience / skill in this area) mind telling me if this edit looks right in order to get this working with B18?


<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<TerrainDef>
<defName>SoilRich</defName>
<label>rich soil</label>
<texturePath>SoilDark</texturePath>
<edgeType>FadeRough</edgeType>
<renderPrecedence>335</renderPrecedence>
<pathCost>2</pathCost>
<statBases>
<Beauty>-1</Beauty>
<Cleanliness>-1</Cleanliness>
</statBases>
<affordances>
<li>Light</li>
<li>Heavy</li>
<li>GrowSoil</li>
<li>Diggable</li>
</affordances>
<terrainFilthDef>FilthDirt</terrainFilthDef>
<fertility>1.4</fertility>
<takeFootprints>True</takeFootprints>
</TerrainDef>
</Defs>
k1LLz0Rz 9 dec, 2017 @ 21:38 
@Reaper & Enlon

Assuming I've figured this out properly, the directory you're looking for to edit the XML file (at least on my current setup) is roughly as follows -

C:>Program Files> Steam>steamapps>workshop>content>294100>783475829>Defs>TerrainDefs

Then right click on the XML file and tell it to "Open With" Notepad, so you can edit things!
Ebo 30 nov, 2017 @ 14:44 
So, TerrainDefs and /TerrainDefs to Defs and /Defs

EdgeType
RenderPrecedence
PathCost
TerrainFilthDef
Fertility
TakeFootprints

all have the FIRST character changed to lower case. Remeber to get BOTH instances of the above items (on either side of the data)

<EdgeType>FadeRough</EdgeType>

becomes

<edgeType>FadeRough</edgeType>