安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题
https://psteamcommunity.yuanyoumao.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?