RimWorld
261 értékelés
[A15/A16] Where is rich soil?
   
Díjazás
Kedvenc
Kedvenc
Törlés
Fájlméret:
Közzétéve:
Frissítve:
2.300 MB
2016. okt. 19., 1:57
2016. dec. 13., 9:40
2 változásjegyzék ( megnézés )

Feliratkozás a letöltéshez
[A15/A16] Where is rich soil?

Leírás
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 megjegyzés
DaTrüf! 2023. dec. 25., 20:45 
UPDATE
Smokie 2018. jan. 22., 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 2018. jan. 8., 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 2018. jan. 4., 7:50 
B18 update coming anytime soon?
k1LLz0Rz 2017. dec. 11., 22:31 
Woot!
Thanks for the feedback ZeProfessional, this (albeit minor) success makes me want to learn more haha.
ZeProfessional 2017. dec. 11., 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 2017. dec. 9., 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 2017. dec. 9., 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 2017. nov. 30., 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>