diff --git a/changelog.txt b/changelog.txt index b0925c5..b0a41d9 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,9 @@ --------------------------------------------------------------------------------------------------- +Version: 0.6.1 +Date: 2020-09-26 + Changes: + - Made Titanium a little less common +--------------------------------------------------------------------------------------------------- Version: 0.6.0 Date: 2020-09-26 Changes: diff --git a/info.json b/info.json index 5348ed4..75662a0 100644 --- a/info.json +++ b/info.json @@ -1,6 +1,6 @@ { "name": "bztitanium", - "version": "0.6.0", + "version": "0.6.1", "factorio_version": "1.0", "title": "Titanium", "author": "Brevven", diff --git a/titanium-ore.lua b/titanium-ore.lua index 0ec9584..859a8a3 100644 --- a/titanium-ore.lua +++ b/titanium-ore.lua @@ -8,44 +8,42 @@ end data:extend({ { - type = "autoplace-control", - category = "resource", - name = "titanium-ore", - richness = true, - order = "b-e" + type = "autoplace-control", + category = "resource", + name = "titanium-ore", + richness = true, + order = "b-e" }, { - type = "noise-layer", - name = "titanium-ore" + type = "noise-layer", + name = "titanium-ore" }, { - type = "resource", - icon_size = 32, - name = "titanium-ore", - icon = "__bztitanium__/graphics/icons/titanium-ore.png", - flags = {"placeable-neutral"}, - order="a-b-a", - map_color = {r=0.65, g=0.80, b=0.80}, - minable = - { - hardness = 1, - mining_particle = "titanium-ore-particle", - mining_time = 2, - fluid_amount=3, - required_fluid=(settings.startup["bztitanium-mining-fluid"] and settings.startup["bztitanium-mining-fluid"].value or "lubricant"), - result = "titanium-ore" - }, - collision_box = {{ -0.1, -0.1}, {0.1, 0.1}}, - selection_box = {{ -0.5, -0.5}, {0.5, 0.5}}, + type = "resource", + icon_size = 32, + name = "titanium-ore", + icon = "__bztitanium__/graphics/icons/titanium-ore.png", + flags = {"placeable-neutral"}, + order="a-b-a", + map_color = {r=0.65, g=0.80, b=0.80}, + minable = + { + hardness = 1, + mining_particle = "titanium-ore-particle", + mining_time = 2, + fluid_amount=3, + required_fluid=(settings.startup["bztitanium-mining-fluid"] and settings.startup["bztitanium-mining-fluid"].value or "lubricant"), + result = "titanium-ore" + }, + collision_box = {{ -0.1, -0.1}, {0.1, 0.1}}, + selection_box = {{ -0.5, -0.5}, {0.5, 0.5}}, - autoplace = resource_autoplace.resource_autoplace_settings{ - name = "titanium-ore", - order = "b-z", - base_density = 6, - has_starting_area_placement = false, - random_spot_size_minimum = 1, - random_spot_size_maximum = 3, - regular_rq_factor_multiplier = 1 + autoplace = resource_autoplace.resource_autoplace_settings{ + name = "titanium-ore", + order = "b-z", + base_density = 3, + has_starting_area_placement = false, + regular_rq_factor_multiplier = 0.8 }, stage_counts = {15000, 9500, 5500, 2900, 1300, 400, 150, 80},