Repair the lack of token-bio in angels-exploration-lab-2

Infinite Ores, Refining, Ore Processing ...

Moderator: Arch666Angel

Post Reply
zq56095708
Manual Inserter
Manual Inserter
Posts: 2
Joined: Mon Feb 07, 2022 8:22 am
Contact:

Repair the lack of token-bio in angels-exploration-lab-2

Post by zq56095708 »

Find those code in angelsindustries_0.4.15\prototypes\buildings\angels-labs-exploration

Code: Select all

          2, angelsmods.industries.number_tint),
        subgroup = "angels-labs-2",
        order = "a[angels-exploration-lab-2]",
        place_result = "angels-exploration-lab-2",
        stack_size = 10
      },
      {
        type = "lab",
        name = "angels-exploration-lab-2",
        localised_description = {
          "",
          {"entity-description.angels-exploration-lab"},
          "\n",
          {
            "entity-description.angels-lab-inputs",
            create_rich_text_icons {
              "angels-science-pack-blue",
              "angels-science-pack-yellow",
              "datacore-exploration-2",
            }
          }
        },
        icons = angelsmods.functions.add_number_icon_layer(
          {
            {
              icon = "__angelsindustries__/graphics/icons/exploration-lab-ico.png",
              icon_size = 32, icon_mipmaps = 1
            }
          },
          2, angelsmods.industries.number_tint),
        flags = {"placeable-player", "player-creation"},
        minable = {mining_time = 1, result = "angels-exploration-lab-2"},
        max_health = 150,
        corpse = "big-remnants",
        dying_explosion = "medium-explosion",
        collision_box = {{-1.2, -1.2}, {1.2, 1.2}},
        selection_box = {{-1.5, -1.5}, {1.5, 1.5}},
        light = {intensity = 0.75, size = 8},
        on_animation = {
          filename = "__angelsindustries__/graphics/entity/exploration-lab/exploration-lab.png",
          width = 160,
          height = 160,
          frame_count = 36,
          line_length = 6,
          animation_speed = 0.5,
          shift = {0, 0}
        },
        off_animation = {
          filename = "__angelsindustries__/graphics/entity/exploration-lab/exploration-lab-off.png",
          width = 160,
          height = 160,
          frame_count = 1,
          shift = {0, 0}
        },
        energy_source = {
          type = "electric",
          usage_priority = "secondary-input"
        },
        energy_usage = "250kW",
        researching_speed = 2,
        inputs = {
          "angels-science-pack-blue",
          "angels-science-pack-yellow",
          "datacore-exploration-2",
        },
It is missing two lines of code about token-bio,and here is the right code

Code: Select all

          2, angelsmods.industries.number_tint),
        subgroup = "angels-labs-2",
        order = "a[angels-exploration-lab-2]",
        place_result = "angels-exploration-lab-2",
        stack_size = 10
      },
      {
        type = "lab",
        name = "angels-exploration-lab-2",
        localised_description = {
          "",
          {"entity-description.angels-exploration-lab"},
          "\n",
          {
            "entity-description.angels-lab-inputs",
            create_rich_text_icons {
              "angels-science-pack-blue",
              "angels-science-pack-yellow",
              "datacore-exploration-2",
              "token-bio"
            }
          }
        },
        icons = angelsmods.functions.add_number_icon_layer(
          {
            {
              icon = "__angelsindustries__/graphics/icons/exploration-lab-ico.png",
              icon_size = 32, icon_mipmaps = 1
            }
          },
          2, angelsmods.industries.number_tint),
        flags = {"placeable-player", "player-creation"},
        minable = {mining_time = 1, result = "angels-exploration-lab-2"},
        max_health = 150,
        corpse = "big-remnants",
        dying_explosion = "medium-explosion",
        collision_box = {{-1.2, -1.2}, {1.2, 1.2}},
        selection_box = {{-1.5, -1.5}, {1.5, 1.5}},
        light = {intensity = 0.75, size = 8},
        on_animation = {
          filename = "__angelsindustries__/graphics/entity/exploration-lab/exploration-lab.png",
          width = 160,
          height = 160,
          frame_count = 36,
          line_length = 6,
          animation_speed = 0.5,
          shift = {0, 0}
        },
        off_animation = {
          filename = "__angelsindustries__/graphics/entity/exploration-lab/exploration-lab-off.png",
          width = 160,
          height = 160,
          frame_count = 1,
          shift = {0, 0}
        },
        energy_source = {
          type = "electric",
          usage_priority = "secondary-input"
        },
        energy_usage = "250kW",
        researching_speed = 2,
        inputs = {
          "angels-science-pack-blue",
          "angels-science-pack-yellow",
          "datacore-exploration-2",
          "token-bio"
        },

Post Reply

Return to “Angels Mods”