21 lines
413 B
Lua
21 lines
413 B
Lua
-- Global Types
|
|
|
|
rtu_t = {
|
|
redstone = "redstone",
|
|
boiler = "boiler",
|
|
turbine = "turbine",
|
|
energy_machine = "emachine",
|
|
induction_matrix = "imatrix"
|
|
}
|
|
|
|
iss_status_t = {
|
|
ok = "ok",
|
|
dmg_crit = "dmg_crit",
|
|
ex_hcoolant = "heated_coolant_backup",
|
|
ex_waste = "full_waste",
|
|
high_temp = "high_temp",
|
|
no_fuel = "no_fuel",
|
|
no_coolant = "no_coolant",
|
|
timeout = "timeout"
|
|
}
|