Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions boblogistics/prototypes/entity/robots.lua
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,7 @@ bot.shadow_in_motion = bobmods.logistics.construction_robot_shadow_in_motion()
bot.shadow_working = bobmods.logistics.construction_robot_shadow_working()
bot.fast_replaceable_group = "construction-robot"
table.insert(bot.resistances, { type = "poison", decrease = 0, percent = 60 })
table.insert(bot.resistances, { type = "explosion", decrease = 0, percent = 40 })

data:extend({
util.merge({
Expand All @@ -367,8 +368,9 @@ data:extend({
{ type = "electric", decrease = 6, percent = 80 },
{ type = "acid", decrease = 4, percent = 60 },
{ type = "poison", decrease = 0, percent = 80 },
{ type = "explosion", decrease = 0, percent = 60 },
},
max_health = 225,
max_health = 300,
max_payload_size = 2,
speed = 0.09,
max_energy = "3250kJ",
Expand Down Expand Up @@ -396,8 +398,9 @@ data:extend({
{ type = "electric", decrease = 12, percent = 90 },
{ type = "acid", decrease = 8, percent = 65 },
{ type = "poison", decrease = 0, percent = 90 },
{ type = "explosion", decrease = 0, percent = 70 },
},
max_health = 350,
max_health = 600,
max_payload_size = 4,
speed = 0.12,
max_energy = "3500kJ",
Expand All @@ -423,10 +426,11 @@ data:extend({
resistances = {
{ type = "fire", decrease = 0, percent = 100 },
{ type = "electric", decrease = 25, percent = 95 },
{ type = "acid", decrease = 12, percent = 70 },
{ type = "acid", decrease = 12, percent = 85 },
{ type = "poison", decrease = 0, percent = 95 },
{ type = "explosion", decrease = 0, percent = 80 },
},
max_health = 500,
max_health = 1000,
max_payload_size = 6,
speed = 0.15,
max_energy = "3750kJ",
Expand All @@ -452,10 +456,11 @@ data:extend({
resistances = {
{ type = "fire", decrease = 0, percent = 100 },
{ type = "electric", decrease = 25, percent = 95 },
{ type = "acid", decrease = 12, percent = 70 },
{ type = "acid", decrease = 12, percent = 85 },
{ type = "poison", decrease = 0, percent = 95 },
{ type = "explosion", decrease = 0, percent = 80 },
},
max_health = 500,
max_health = 1000,
max_payload_size = 6,
speed = 0.15,
max_energy = "1500kJ",
Expand Down
3 changes: 0 additions & 3 deletions bobwarfare/prototypes/entity/wall.lua
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ local wall_resistances = {
data.raw.wall["stone-wall"].max_health = 450
data.raw.wall["stone-wall"].resistances = wall_resistances
data.raw.gate.gate.resistances = wall_resistances
data.raw.wall["stone-wall"].is_military_target = true
data.raw.gate.gate.is_military_target = true

local reinforced_wall_resistances = {
{
Expand Down Expand Up @@ -104,7 +102,6 @@ data:extend({
fast_replaceable_group = "wall",
max_health = 1250,
repair_speed_modifier = 2,
is_military_target = true,
corpse = "wall-remnants",
dying_explosion = "wall-explosion",
repair_sound = { filename = "__base__/sound/manual-repair-simple.ogg" },
Expand Down