初级玩家

- 贡献度
- 2
- 金元
- 650
- 积分
- 73
- 精华
- 0
- 注册时间
- 2017-4-4
|
本帖最后由 coozum 于 2019-12-4 18:13 编辑
//适用V6版的Custom Plants的LessIrrigationState.json文件参数,复制使用时最好把//和后面的注释删除,不然可能会出错
//农作物的各项参数不是必需的,不设置的话就使用游戏内默认的参数
{
"RemoveIrrigationFromPlants": [
//这里设置需要修改种植环境的作物名称
"BasicSingleHarvestPlant",
"MushroomPlant"
],
"AddIrrigation": {
//这里设置各种作物种植需要的土、矿物和液体,可以设置多种,如果有多种液体则不能使用水培箱的自动灌溉
"BasicSingleHarvestPlant": {
"Water": 5.0
//"消耗物": 数量 ,Water=干净的水,Dirt=土,DirtyWater=污水,也可以加入各种矿物需求
}
},
"SetIllumination": {
//设置光照需求环境,-1=需要黑暗,0=无需求-有没有光照都可以,1=需要光照
"MushroomPlant": 0
//这里把蘑菇设置成:有没有光照都可以生长
},
"SetPlantTempAtmosphere": {
//设置需要的温度、气体、产出的物品等附加设置
"BasicSingleHarvestPlant": {
"temperature_lethal_low": 118.15,//死亡的最低温度
"temperature_warning_low": 253.15,//允许的最低温度
"temperature_warning_high": 353.15,//允许的最高温度
"temperature_lethal_high": 498.15,//死亡的最高温度
"safe_elements": [
//可以在以下气体中生长
"Oxygen",
"ContaminatedOxygen",
"CarbonDioxide",
"ChlorineGas",
"Hydrogen"
],
"pressure_sensitive": true, //是否启用气压设置
"pressure_lethal_low": 0.0, //死亡的最低气压
"pressure_warning_low": 0.1,//允许的最低气压
"crop_id": "Meat",//农作物收获时产出的物品,这里的米虱木居然产肉!
"can_drown": true,//是否能被淹死?
"can_tinker": true,//是否能修复?
"require_solid_tile": true,//是否需要实心种植砖
"should_grow_old": true,//是否变老?
"max_age": 2400.0 //最大年龄?这项好像不起作用
}
},
"SetPlantCrop": {
//设置指定作物的产出参数
"BasicPlantFood": {
"cropId": "Meat",//产出肉
"cropDuration": 1800.0,//收获时间
"numProduced": 1,//产出数量
"renewable": true//可再生?
},
},
"SeedsGoIntoAnyFlowerPots": true,//是否可以在花盆中种植:true=可以,false=不可以
"WheezewortTempDelta": -20.0, //植物呼吸设置?
"OxyfernOxygenPerSecond": 0.03125 //每秒消耗的氧气?
}
|
评分
-
1
查看全部评分
-
|