🌐Planetaris: Tellus

by Syen_ce

Tellus, a planet full of life, mycelia and chlorophyll, infected by dangerous parasites and clouds of pollen corrode materials. Create and plant living machinery and try to keep it alive

Content
a month ago
2.0
14.3K
Factorio: Space Age Icon Space Age Mod
Planets Logistics Combat Enemies Environment Mining Fluids Logistic network Manufacturing Power

b Crash on startup

3 months ago

Error while loading item prototype "volatile-spoilage-preserved" (item): Must have a fuel_value when fuel_acceleration_multiplier, fuel_top_speed_multiplier, fuel_emissions_multiplier, or fuel_glow_color are used.
Modifications: ā—‹šŸŒPlanetaris: Tellus

3 months ago

Same error here.

3 months ago

Same here

3 months ago

same here

3 months ago

Same-Same, But Different

Failed to load mods: Error while loading item prototype "yeet-ghetto-biorecycling-science-pack-preserved" (item): Value must be a string in property tree at ROOT.item.yeet-ghetto-biorecycling-science-pack-preserved.icons[1].icon
Modifications: ā—‹šŸŒPlanetaris: Tellus

3 months ago

I can confirm the "yeet-ghetto-biorecycling-science-pack-preserved" error, looks like it's related with Rubia mod but the problem appears that Tellus is doing something nasty there

3 months ago

when i added fuel_value to volatile-spoilage-preserved

meet
Error while loading item prototype "yeet-ghetto-biorecycling-science-pack-preserved" (item): Value must be a string in property tree at ROOT.item.yeet-ghetto-biorecycling-science-pack-preserved.icons[1].icon

3 months ago

Working on it

3 months ago

Error while loading item prototype "yeet-ghetto-biorecycling-science-pack-preserved" (item): Value must be a string in property tree at ROOT.item.yeet-ghetto-biorecycling-science-pack-preserved.icons[1].icon
Modifications: ā—‹šŸŒPlanetaris: Tellus

the same

3 months ago
(updated 3 months ago)

ive just added such lines into preservaction recipe and its worked (assuming preserved items are not intended to be usable before depreservation):

preserved_item.fuel_acceleration_multiplier = nil
preserved_item.fuel_top_speed_multiplier = nil
preserved_item.fuel_emissions_multiplier = nil
preserved_item.fuel_glow_color = nil

3 months ago

ahh and also replace this:

  preserved_item.icons = {
    {icon="__planetaris-tellus__/graphics/icons/preservation-item.png", draw_background=false, scale=0.5},
    {icon=spoilable_item.icon or spoilable_item.icons, scale=0.3},
    {icon="__planetaris-tellus__/graphics/icons/preservation-item-top.png", scale=0.5}
  }

with this:

local base_icon_path = spoilable_item.icon
if not base_icon_path and spoilable_item.icons and spoilable_item.icons[1] then
base_icon_path = spoilable_item.icons[1].icon
end
preserved_item.icons = {
{icon="planetaris-tellus/graphics/icons/preservation-item.png", draw_background=false, scale=0.5},
{icon=spoilable_item.base_icon_path or spoilable_item.icons, scale=0.3},
{icon="planetaris-tellus/graphics/icons/preservation-item-top.png", scale=0.5}
}

3 months ago
(updated 3 months ago)

also it requires specific compat with mod rusty iron (tellus tries to add preservation recipes for iron and rusty itonand all their intermediates).
add this after blacklist decalaration:

for name, item in pairs(data.raw.item) do
local s_result = item.spoil_result
if name:find("%-rusty$") or (s_result and type(s_result) == "string" and s_result:find("%-rusty$")) then
p_blacklist[name] = true
end
end

3 months ago

Fixed! Ill check the rusty iron integration thanks

3 months ago

: Error while loading item prototype "promethium-science-pack-preserved" (tool): Value (6442450942) outside of range. The data type allows values from 0 to 4294967295 in property tree at ROOT.tool.promethium-science-pack-preserved.spoil_ticks
Modifications: ā—‹šŸŒPlanetaris: Tellus
again, on startup, lmao

New response