titanium on vulcanus
This commit is contained in:
parent
dfbf03ca7b
commit
371104baee
4 changed files with 96 additions and 1 deletions
|
|
@ -23,6 +23,10 @@ else
|
|||
util.titanium_processing = "titanium-processing"
|
||||
end
|
||||
|
||||
util.vacuum_icon = { icon="__base__/graphics/icons/fluid/steam.png", tint={r=.1, g=.1, b=.5, a=.5} }
|
||||
util.vacuum_icon_small = { icon="__base__/graphics/icons/fluid/steam.png", tint={r=.1, g=.1, b=.5, a=.5}, scale=0.25, shift={-8,-8}, }
|
||||
util.vacuum_vis = {r=.1, g=.1, b=.5}
|
||||
|
||||
function util.item(item, quantity)
|
||||
if not quantity then
|
||||
quantity = 1
|
||||
|
|
@ -30,6 +34,13 @@ function util.item(item, quantity)
|
|||
return {type="item", name=item, amount=quantity}
|
||||
end
|
||||
|
||||
function util.fluid(fluid, quantity)
|
||||
if not quantity then
|
||||
quantity = 10
|
||||
end
|
||||
return {type="fluid", name=fluid, amount=quantity}
|
||||
end
|
||||
|
||||
function util.se6()
|
||||
return mods["space-exploration"] and mods["space-exploration"] >= "0.6"
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue