mirror of
https://github.com/PHIDIAS0303/factorio-mod-PHI.git
synced 2026-03-28 12:24:39 +09:00
14 lines
634 B
Lua
14 lines
634 B
Lua
-- local main = require 'main'
|
|
-- local items = require 'mbq-c'
|
|
|
|
-- MBQ C 11 BASE ARMOR_EQUIPMENT
|
|
if settings.startup['PHI-MB-EQUIPMENT-SIZE'].value then
|
|
for _, e in pairs({'night-vision-equipment', 'energy-shield-equipment', 'battery-equipment', 'solar-panel-equipment', 'generator-equipment','active-defense-equipment', 'movement-bonus-equipment', 'roboport-equipment', 'belt-immunity-equipment', 'inventory-bonus-equipment'}) do
|
|
if data.raw[e] then
|
|
for _, v in pairs(data.raw[e]) do
|
|
v.shape = {width = 1, height = 1, type = 'full', points = {{0, 0}}}
|
|
end
|
|
end
|
|
end
|
|
end
|