diff --git a/config/advRocketry/advancedRocketry.cfg b/config/advRocketry/advancedRocketry.cfg index 0164cafe..a0f15cc5 100644 --- a/config/advRocketry/advancedRocketry.cfg +++ b/config/advRocketry/advancedRocketry.cfg @@ -96,6 +96,9 @@ general { # Enables the laser drill machine B:EnableLaserDrill=true + # Enables the orbital registry machine + B:EnableOrbitalRegistry=true + # Enables terraforming items and blocks B:EnableTerraforming=true @@ -138,6 +141,9 @@ general { # Maximum gravity the crystalliser will function at. Use 0.0 to disable! D:crystalliserMaximumGravity=0.0 + + # Multiplier applied to the Data Bus (Big) max data capacity. (Base=2000 -> default= 4 * 2000 = 8000) [range: 1 ~ 20, default: 4] + I:dataBusBigMultiplier=4 B:dropExtinguishedTorches=false B:electricPlantsSpawnLightning=true @@ -151,35 +157,8 @@ general { # Amount of force the jetpack provides with respect to gravity, 1 is the same acceleration as caused by Earth's gravity, 2 is 2x the acceleration caused by Earth's gravity, etc. To make jetpack only work on low gravity planets, simply set it to a value less than 1 D:jetPackForce=1.3 - S:laserDrillOres < - oreIron - oreGold - oreCopper - oreTin - oreRedstone - oreDiamond - oreDilithium - oreTitanium - oreIridium - oreAnglesite - oreBenitoite - oreMithril - oreArlemite - oreRealmite - oreRupee - oreBloodgem - oreNetherite - oreRosite - oreLimonite - oreRunium - oreAscendedAmethyst - oreAscendedJade - oreAscendedSapphire - oreAlchemicalMatter - > - B:laserDrillOres_blacklist=false - # If true the orbital laser will actually mine blocks on the planet below + # If true the orbital laser will actually mine blocks on the planet below, (false makes it a VoidMiner with improved performance especially when using Void Cobble: ON in the GUI) B:laserDrillPlanet=false # Outputs and chances of objects from Enriched Lava in the Centrifuge. Format: :. Larger weights are more frequent [default: [nuggetCopper:100], [nuggetIron:100], [nuggetTin:100], [nuggetLead:100], [nuggetSilver:100], [nuggetGold:75], [nuggetDiamond:10], [nuggetUranium:10], [nuggetIridium:1]] @@ -469,6 +448,9 @@ rockets { # The multiplier for the thrust of the nuclear core block. With default configuration, this value provides a (max) thrust of 1000 per core. D:nuclearCoreThrustRatio=1.0 + # Nuclear rocket should respect artifact gating for planets + B:nuclearRocketsRespectArtifactGating=true + # How high the rocket has to go before it reaches orbit. This is used by itself when launching from a planet to LEO, which can be either a satellite, a space station, or another point on this planet's surface. It's used in conjunction with the TBI burn when launching to the moon or asteroids. Warp flights will need orbit height + 10x TBI to launch from planets [range: 255 ~ 2147483647, default: 1000] I:orbitHeight=1000 @@ -599,30 +581,32 @@ rockets { # List of oredictionary names of ores allowed to be mined by the laser drill if surface drilling is disabled. Ores can be specified by just the oreName: or by ::: where size is optional S:laserDrillOres < - oreIron - oreGold - oreCopper - oreTin - oreRedstone - oreDiamond - oreDilithium - oreTitanium - oreIridium - oreAnglesite - oreBenitoite - oreMithril - oreArlemite - oreRealmite - oreRupee - oreBloodgem - oreNetherite - oreRosite - oreLimonite - oreRunium - oreAscendedAmethyst - oreAscendedJade - oreAscendedSapphire - oreAlchemicalMatter + oreIron:10 + oreGold:10 + oreCopper:10 + oreTin:10 + oreRedstone:10 + oreDiamond:10 + oreDilithium:10 + oreTitanium:10 + oreIridium:10 + oreAnglesite:10 + oreBenitoite:10 + oreMithril:10 + oreArlemite:10 + oreRealmite:10 + oreRupee:10 + oreBloodgem:10 + oreNetherite:10 + oreRosite:10 + oreLimonite:10 + oreRunium:10 + oreAscendedAmethyst:10 + oreAscendedJade:10 + oreAscendedSapphire:10 + oreAlchemicalMatter:10 + oreUranium:10 + oreThorium:10 > # True if the ores in laserDrillOres should be a blacklist, false for whitelist. if set to false in combination with empty ore list it will crash the game diff --git a/config/agricraft/config.cfg b/config/agricraft/config.cfg index 85428acf..fe9e4960 100644 --- a/config/agricraft/config.cfg +++ b/config/agricraft/config.cfg @@ -187,4 +187,3 @@ world { I:"Irrigated greenhouse weight"=2 } - diff --git a/config/agricraft/json/defaults/mod_mysticalagradditions/tier6_inferium_plant.json b/config/agricraft/json/defaults/mod_mysticalagradditions/tier6_inferium_plant.json index 22206cc2..fc951390 100644 --- a/config/agricraft/json/defaults/mod_mysticalagradditions/tier6_inferium_plant.json +++ b/config/agricraft/json/defaults/mod_mysticalagradditions/tier6_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 7, + "max": 15, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", diff --git a/config/agricraft/json/defaults/mod_mysticalagriculture/plants/tier2_inferium_plant.json b/config/agricraft/json/defaults/mod_mysticalagriculture/plants/tier2_inferium_plant.json index 67cf30bd..427d0709 100644 --- a/config/agricraft/json/defaults/mod_mysticalagriculture/plants/tier2_inferium_plant.json +++ b/config/agricraft/json/defaults/mod_mysticalagriculture/plants/tier2_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 2, + "max": 7, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", diff --git a/config/agricraft/json/defaults/mod_mysticalagriculture/plants/tier3_inferium_plant.json b/config/agricraft/json/defaults/mod_mysticalagriculture/plants/tier3_inferium_plant.json index 6034846a..3f8993c2 100644 --- a/config/agricraft/json/defaults/mod_mysticalagriculture/plants/tier3_inferium_plant.json +++ b/config/agricraft/json/defaults/mod_mysticalagriculture/plants/tier3_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 3, + "max": 9, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", diff --git a/config/agricraft/json/defaults/mod_mysticalagriculture/plants/tier4_inferium_plant.json b/config/agricraft/json/defaults/mod_mysticalagriculture/plants/tier4_inferium_plant.json index 60dea4a7..e32b8619 100644 --- a/config/agricraft/json/defaults/mod_mysticalagriculture/plants/tier4_inferium_plant.json +++ b/config/agricraft/json/defaults/mod_mysticalagriculture/plants/tier4_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 4, + "max": 10, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", diff --git a/config/agricraft/json/defaults/mod_mysticalagriculture/plants/tier5_inferium_plant.json b/config/agricraft/json/defaults/mod_mysticalagriculture/plants/tier5_inferium_plant.json index dbcca999..e6deb796 100644 --- a/config/agricraft/json/defaults/mod_mysticalagriculture/plants/tier5_inferium_plant.json +++ b/config/agricraft/json/defaults/mod_mysticalagriculture/plants/tier5_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 5, + "max": 12, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", diff --git a/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagradditions/tier6_inferium_plant.json b/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagradditions/tier6_inferium_plant.json index cd73af40..fc951390 100644 --- a/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagradditions/tier6_inferium_plant.json +++ b/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagradditions/tier6_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 7, + "max": 15, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", @@ -52,7 +52,9 @@ "max_light": 16, "soils": [ "farmland_soil", - "fertilized_dirt_soil" + "fertilized_dirt_soil", + "loamy_dirt_soil", + "silty_dirt_soil" ], "conditions": [] }, diff --git a/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagriculture/plants/tier2_inferium_plant.json b/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagriculture/plants/tier2_inferium_plant.json index 67cf30bd..427d0709 100644 --- a/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagriculture/plants/tier2_inferium_plant.json +++ b/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagriculture/plants/tier2_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 2, + "max": 7, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", diff --git a/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagriculture/plants/tier3_inferium_plant.json b/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagriculture/plants/tier3_inferium_plant.json index 6034846a..3f8993c2 100644 --- a/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagriculture/plants/tier3_inferium_plant.json +++ b/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagriculture/plants/tier3_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 3, + "max": 9, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", diff --git a/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagriculture/plants/tier4_inferium_plant.json b/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagriculture/plants/tier4_inferium_plant.json index 60dea4a7..e32b8619 100644 --- a/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagriculture/plants/tier4_inferium_plant.json +++ b/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagriculture/plants/tier4_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 4, + "max": 10, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", diff --git a/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagriculture/plants/tier5_inferium_plant.json b/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagriculture/plants/tier5_inferium_plant.json index dbcca999..e6deb796 100644 --- a/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagriculture/plants/tier5_inferium_plant.json +++ b/config/agricraft/json/server_162-33-19-107_25565/mod_mysticalagriculture/plants/tier5_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 5, + "max": 12, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", diff --git a/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagradditions/tier6_inferium_plant.json b/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagradditions/tier6_inferium_plant.json index cd73af40..fc951390 100644 --- a/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagradditions/tier6_inferium_plant.json +++ b/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagradditions/tier6_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 7, + "max": 15, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", @@ -52,7 +52,9 @@ "max_light": 16, "soils": [ "farmland_soil", - "fertilized_dirt_soil" + "fertilized_dirt_soil", + "loamy_dirt_soil", + "silty_dirt_soil" ], "conditions": [] }, diff --git a/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagriculture/plants/tier2_inferium_plant.json b/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagriculture/plants/tier2_inferium_plant.json index 67cf30bd..427d0709 100644 --- a/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagriculture/plants/tier2_inferium_plant.json +++ b/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagriculture/plants/tier2_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 2, + "max": 7, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", diff --git a/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagriculture/plants/tier3_inferium_plant.json b/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagriculture/plants/tier3_inferium_plant.json index 6034846a..3f8993c2 100644 --- a/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagriculture/plants/tier3_inferium_plant.json +++ b/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagriculture/plants/tier3_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 3, + "max": 9, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", diff --git a/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagriculture/plants/tier4_inferium_plant.json b/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagriculture/plants/tier4_inferium_plant.json index 60dea4a7..e32b8619 100644 --- a/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagriculture/plants/tier4_inferium_plant.json +++ b/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagriculture/plants/tier4_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 4, + "max": 10, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", diff --git a/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagriculture/plants/tier5_inferium_plant.json b/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagriculture/plants/tier5_inferium_plant.json index dbcca999..e6deb796 100644 --- a/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagriculture/plants/tier5_inferium_plant.json +++ b/config/agricraft/json/server_162-33-19-32_25565/mod_mysticalagriculture/plants/tier5_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 5, + "max": 12, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", diff --git a/config/agricraft/json/server_54-39-12-226/mod_mysticalagradditions/tier6_inferium_plant.json b/config/agricraft/json/server_54-39-12-226/mod_mysticalagradditions/tier6_inferium_plant.json index cd73af40..fc951390 100644 --- a/config/agricraft/json/server_54-39-12-226/mod_mysticalagradditions/tier6_inferium_plant.json +++ b/config/agricraft/json/server_54-39-12-226/mod_mysticalagradditions/tier6_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 7, + "max": 15, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", @@ -52,7 +52,9 @@ "max_light": 16, "soils": [ "farmland_soil", - "fertilized_dirt_soil" + "fertilized_dirt_soil", + "loamy_dirt_soil", + "silty_dirt_soil" ], "conditions": [] }, diff --git a/config/agricraft/json/server_54-39-12-226/mod_mysticalagriculture/plants/tier2_inferium_plant.json b/config/agricraft/json/server_54-39-12-226/mod_mysticalagriculture/plants/tier2_inferium_plant.json index 67cf30bd..427d0709 100644 --- a/config/agricraft/json/server_54-39-12-226/mod_mysticalagriculture/plants/tier2_inferium_plant.json +++ b/config/agricraft/json/server_54-39-12-226/mod_mysticalagriculture/plants/tier2_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 2, + "max": 7, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", diff --git a/config/agricraft/json/server_54-39-12-226/mod_mysticalagriculture/plants/tier3_inferium_plant.json b/config/agricraft/json/server_54-39-12-226/mod_mysticalagriculture/plants/tier3_inferium_plant.json index 6034846a..3f8993c2 100644 --- a/config/agricraft/json/server_54-39-12-226/mod_mysticalagriculture/plants/tier3_inferium_plant.json +++ b/config/agricraft/json/server_54-39-12-226/mod_mysticalagriculture/plants/tier3_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 3, + "max": 9, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", diff --git a/config/agricraft/json/server_54-39-12-226/mod_mysticalagriculture/plants/tier4_inferium_plant.json b/config/agricraft/json/server_54-39-12-226/mod_mysticalagriculture/plants/tier4_inferium_plant.json index 60dea4a7..e32b8619 100644 --- a/config/agricraft/json/server_54-39-12-226/mod_mysticalagriculture/plants/tier4_inferium_plant.json +++ b/config/agricraft/json/server_54-39-12-226/mod_mysticalagriculture/plants/tier4_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 4, + "max": 10, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", diff --git a/config/agricraft/json/server_54-39-12-226/mod_mysticalagriculture/plants/tier5_inferium_plant.json b/config/agricraft/json/server_54-39-12-226/mod_mysticalagriculture/plants/tier5_inferium_plant.json index dbcca999..e6deb796 100644 --- a/config/agricraft/json/server_54-39-12-226/mod_mysticalagriculture/plants/tier5_inferium_plant.json +++ b/config/agricraft/json/server_54-39-12-226/mod_mysticalagriculture/plants/tier5_inferium_plant.json @@ -34,8 +34,8 @@ "products": { "products": [ { - "min": 1, - "max": 5, + "min": 5, + "max": 12, "chance": 0.9, "required": true, "item": "mysticalagriculture:crafting", diff --git a/modlist_files.txt b/modlist_files.txt index 32decc12..60f60084 100644 Binary files a/modlist_files.txt and b/modlist_files.txt differ diff --git a/scripts/ToolTips.zs b/scripts/ToolTips.zs index 81e47d73..eda4c382 100644 --- a/scripts/ToolTips.zs +++ b/scripts/ToolTips.zs @@ -464,7 +464,7 @@ .addTooltip(format.red("通过远古飞龙召唤石获得")); -.addTooltip(format.red("通过使用精准采集破坏世界中林业和Binnie模组的树获得")); +.addTooltip(format.red("通过使用精准采集破坏世界中自然生成的林业和Binnie模组的树获得")); .addTooltip(format.red("召唤石")); .addTooltip(format.red("召唤石"));