Skip to content

Commit

Permalink
Robot factoriopedia simulations #302
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiHawk committed Jan 19, 2025
1 parent 06a4ea3 commit 59a50a0
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions boblogistics/prototypes/entity/robots.lua
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,13 @@ data:extend({
shadow_in_motion = bobmods.logistics.logistic_robot_shadow,
shadow_idle_with_cargo = bobmods.logistics.logistic_robot_shadow_with_cargo,
shadow_in_motion_with_cargo = bobmods.logistics.logistic_robot_shadow_with_cargo,
factoriopedia_simulation = {
init =
[[
game.simulation.camera_position = {0, -1}
game.surfaces[1].create_entity{name = "bob-logistic-robot-2", position = {0, 0}}
]]
},
},

{
Expand Down Expand Up @@ -156,6 +163,13 @@ data:extend({
shadow_in_motion = bobmods.logistics.logistic_robot_shadow,
shadow_idle_with_cargo = bobmods.logistics.logistic_robot_shadow_with_cargo,
shadow_in_motion_with_cargo = bobmods.logistics.logistic_robot_shadow_with_cargo,
factoriopedia_simulation = {
init =
[[
game.simulation.camera_position = {0, -1}
game.surfaces[1].create_entity{name = "bob-logistic-robot-3", position = {0, 0}}
]]
},
},

{
Expand Down Expand Up @@ -186,6 +200,13 @@ data:extend({
shadow_in_motion = bobmods.logistics.logistic_robot_shadow,
shadow_idle_with_cargo = bobmods.logistics.logistic_robot_shadow_with_cargo,
shadow_in_motion_with_cargo = bobmods.logistics.logistic_robot_shadow_with_cargo,
factoriopedia_simulation = {
init =
[[
game.simulation.camera_position = {0, -1}
game.surfaces[1].create_entity{name = "bob-logistic-robot-4", position = {0, 0}}
]]
},
},

{
Expand Down Expand Up @@ -216,6 +237,13 @@ data:extend({
shadow_in_motion = bobmods.logistics.logistic_robot_shadow,
shadow_idle_with_cargo = bobmods.logistics.logistic_robot_shadow_with_cargo,
shadow_in_motion_with_cargo = bobmods.logistics.logistic_robot_shadow_with_cargo,
factoriopedia_simulation = {
init =
[[
game.simulation.camera_position = {0, -1}
game.surfaces[1].create_entity{name = "bob-logistic-robot-5", position = {0, 0}}
]]
},
},
})

Expand Down Expand Up @@ -408,6 +436,13 @@ data:extend({
shadow_working = bobmods.logistics.construction_robot_shadow_working,
smoke = bobmods.logistics.robot_smoke,
sparks = bobmods.logistics.robot_sparks,
factoriopedia_simulation = {
init =
[[
game.simulation.camera_position = {0, -1}
game.surfaces[1].create_entity{name = "bob-construction-robot-2", position = {0, 0}}
]]
},
},

{
Expand Down Expand Up @@ -440,6 +475,13 @@ data:extend({
shadow_working = bobmods.logistics.construction_robot_shadow_working,
smoke = bobmods.logistics.robot_smoke,
sparks = bobmods.logistics.robot_sparks,
factoriopedia_simulation = {
init =
[[
game.simulation.camera_position = {0, -1}
game.surfaces[1].create_entity{name = "bob-construction-robot-3", position = {0, 0}}
]]
},
},

{
Expand Down Expand Up @@ -472,6 +514,13 @@ data:extend({
shadow_working = bobmods.logistics.construction_robot_shadow_working,
smoke = bobmods.logistics.robot_smoke,
sparks = bobmods.logistics.robot_sparks,
factoriopedia_simulation = {
init =
[[
game.simulation.camera_position = {0, -1}
game.surfaces[1].create_entity{name = "bob-construction-robot-4", position = {0, 0}}
]]
},
},

{
Expand Down Expand Up @@ -504,5 +553,12 @@ data:extend({
shadow_working = bobmods.logistics.construction_robot_shadow_working,
smoke = bobmods.logistics.robot_smoke,
sparks = bobmods.logistics.robot_sparks,
factoriopedia_simulation = {
init =
[[
game.simulation.camera_position = {0, -1}
game.surfaces[1].create_entity{name = "bob-construction-robot-5", position = {0, 0}}
]]
},
},
})

0 comments on commit 59a50a0

Please sign in to comment.