Add hot stone bricks and hot concrete; Biochambers don't generate hot plastic
https://mods.factorio.com/mod/hot-metals/discussion/677fdef8d37eef8332fa6c2f https://mods.factorio.com/mod/hot-metals/discussion/675af47f1fba71716b2b7f7f
This commit is contained in:
parent
59bcccac74
commit
485fc97d74
9 changed files with 26 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
|||
---------------------------------------------------------------------------------------------------
|
||||
Version: 1.2.1
|
||||
Date: 09.01.2025
|
||||
Changes:
|
||||
- Add hot stone bricks and hot concrete (https://mods.factorio.com/mod/hot-metals/discussion/677fdef8d37eef8332fa6c2f)
|
||||
- Biochambers don't generate hot plastic (https://mods.factorio.com/mod/hot-metals/discussion/675af47f1fba71716b2b7f7f)
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 1.2.0
|
||||
Date: 01.01.2025
|
||||
Changes:
|
||||
|
|
|
@ -20,5 +20,8 @@ table.insert(HotMetals.skipTechUnlocksFor, "pipe-to-ground")
|
|||
|
||||
if settings.startup["hot-metals-plastic"].value then
|
||||
table.insert(HotMetals.craftingCategories, "chemistry-or-cryogenics")
|
||||
table.insert(HotMetals.craftingCategories, "organic")
|
||||
end
|
||||
|
||||
if settings.startup["hot-metals-bricks"].value then
|
||||
table.insert(HotMetals.items, "concrete")
|
||||
end
|
|
@ -17,4 +17,8 @@ if settings.startup["hot-metals-plastic"].value then
|
|||
end
|
||||
end
|
||||
|
||||
if settings.startup["hot-metals-bricks"].value then
|
||||
table.insert(HotMetals.items, "stone-brick")
|
||||
end
|
||||
|
||||
require("compatibility.data")
|
BIN
hot-metals/graphics/icons/hot-concrete.png
Normal file
BIN
hot-metals/graphics/icons/hot-concrete.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
BIN
hot-metals/graphics/icons/hot-stone-brick.png
Normal file
BIN
hot-metals/graphics/icons/hot-stone-brick.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
|
@ -4,7 +4,9 @@ hot=Hot
|
|||
[mod-setting-name]
|
||||
hot-metals-time=Cooldown time
|
||||
hot-metals-plastic=Add hot plastic
|
||||
hot-metals-bricks=Add hot stone bricks and concrete
|
||||
|
||||
[mod-setting-description]
|
||||
hot-metals-time=The time in seconds for a hot item to cool down.
|
||||
hot-metals-plastic=Although the temperature of hot plastic is way lower compared to metals, you might want to have a hot variant anyway.
|
||||
hot-metals-bricks=Stone bricks and concrete are not included by default. If you like to play with hot variants, you can enable this option.
|
|
@ -12,5 +12,12 @@ data:extend({
|
|||
setting_type = "startup",
|
||||
default_value = false,
|
||||
order = "b"
|
||||
},
|
||||
{
|
||||
type = "bool-setting",
|
||||
name = "hot-metals-bricks",
|
||||
setting_type = "startup",
|
||||
default_value = false,
|
||||
order = "c"
|
||||
}
|
||||
})
|
||||
|
|
BIN
sources/hot-concrete.afphoto
Normal file
BIN
sources/hot-concrete.afphoto
Normal file
Binary file not shown.
BIN
sources/hot-stone-brick.afphoto
Normal file
BIN
sources/hot-stone-brick.afphoto
Normal file
Binary file not shown.
Loading…
Add table
Reference in a new issue