This commit is contained in:
2026-03-19 19:30:58 +09:00
parent b0fda01ec9
commit 8bb5bf99c4
12 changed files with 463 additions and 432 deletions

22
PHI-CL/data/u/mbe.lua Normal file
View File

@@ -0,0 +1,22 @@
local main = require 'main'
local items = require 'mbe-c'
-- MBE A 5 SPACE_EXPLORATION ENTITY,RECIPE,RESEARCH_EFFECT
for _, v in pairs(items) do
if v.enabled and (v.max >= v.min) then
v.mod = v.mod or 'base'
v.category = v.category or 'item'
v.ref_name = v.ref_name or v.name
v.tech = v.tech or 'compound-energy'
v.min = v.min or 2
for j=v.min, v.max, 1 do
main.EEE(v, j)
main.EI(v, j)
main.ER(v, j)
main.ET(v, j)
end
main.EL(v)
end
end