Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=2958061468
Hope it helps anyone!
I have an updated version ready of this if you want to use it @eagle0600
some plant called Bean from some other mod, can only tolerate heat from 26 to 32 degrees C, above its dead
below, its stagnated.
i presume now they just perish instead of freezing
Mod doesnt have ingame option i suppose.
Nope, i did forget, but that wasn't it.
Not sure why i just can't get patch operations working.
I'm trying to patch pines grow in colder biomes but it's not working.
<li Class="PatchOperationAdd">
<xpath>/Defs/ThingsDef_Plants[defName="Plant_TreePine"]</xpath>
<value>
<comps>
<li Class="ExpandablePlants.CompProperties_Plant">
<minLeaflessTemperature>-50</minLeaflessTemperature>
<minGrowthTemperature>-40</minGrowthTemperature>
<minOptimalGrowthTemperature>-20</minOptimalGrowthTemperature>
</li>
</comps>
</value>
</li>
Lemme know if it works, looking to list this mod as a dependency for my Winter Taiga biome.
I'm going to put it in the mod that already exists, so I want to change the name space of dll and use it. Of course I'll reveal the source.
I was wondering if you'd be already handing off the mod to someone who would be able and willing to do so? I'm looking into making many different kind of plants, from maskable ones to ones that support gizmos. If you are, I'd love to go over the specifics with you!
Please let me know if you are interested (or not), and if so I can get in contact with you elsewhere. Cheers!
Question: Would this mod library be useful to directly affect the temperature plants experience, such as for the above mod?
my code:
<Operation Class="PatchOperationFindMod">
<mods>
<li>Expandable Plants</li>
</mods>
<match Class="PatchOperationAdd">
<xpath>/Defs/ThingDef[defName="Plant_TreeAnima"]/comps</xpath>
<value>
<li Class="ExpandablePlants.CompProperties_Plant">
<minLeaflessTemperature>-40</minLeaflessTemperature>
<maxLeaflessTemperature>-30</maxLeaflessTemperature>
<minGrowthTemperature>-30</minGrowthTemperature>
<minOptimalGrowthTemperature>-20</minOptimalGrowthTemperature>
<maxOptimalGrowthTemperature>58</maxOptimalGrowthTemperature>
<maxGrowthTemperature>70</maxGrowthTemperature>
<restBegins>0</restBegins>
<restEnds>0</restEnds>
</li>
</value>
</match>
</Operation>
if you don't mind can you give a little explanation on when a plant will start taking penalties to growth from temp?