Upload files to ''
This commit is contained in:
parent
871d129587
commit
ac5c670757
163
rocket.lua
163
rocket.lua
|
@ -56,6 +56,7 @@ function rocket.on_punch(self, puncher)
|
||||||
-- Detach
|
-- Detach
|
||||||
self.driver = nil
|
self.driver = nil
|
||||||
puncher:set_detach()
|
puncher:set_detach()
|
||||||
|
puncher:set_eye_offset({x=0,y=0,z=0},{x=0,y=0,z=0})
|
||||||
default.player_attached[name] = false
|
default.player_attached[name] = false
|
||||||
minetest.sound_stop(self.soundThrust)
|
minetest.sound_stop(self.soundThrust)
|
||||||
end
|
end
|
||||||
|
@ -87,6 +88,7 @@ function rocket.on_rightclick(self, clicker)
|
||||||
self.driver = nil
|
self.driver = nil
|
||||||
self.auto = false
|
self.auto = false
|
||||||
clicker:set_detach()
|
clicker:set_detach()
|
||||||
|
clicker:set_eye_offset({x=0,y=0,z=0},{x=0,y=0,z=0})
|
||||||
default.player_attached[name] = false
|
default.player_attached[name] = false
|
||||||
default.player_set_animation(clicker, "stand" , 30)
|
default.player_set_animation(clicker, "stand" , 30)
|
||||||
local pos = clicker:getpos()
|
local pos = clicker:getpos()
|
||||||
|
@ -106,7 +108,8 @@ function rocket.on_rightclick(self, clicker)
|
||||||
end
|
end
|
||||||
self.driver = name
|
self.driver = name
|
||||||
clicker:set_attach(self.object, "",
|
clicker:set_attach(self.object, "",
|
||||||
{x = 0, y = 2, z = 0}, {x = 0, y = 4, z = 0})
|
{x = 0, y = 20, z = 0}, {x = 0, y = 0, z = 0})
|
||||||
|
clicker:set_eye_offset({x=0,y=20,z=0},{x=0,y=0,z=0})
|
||||||
default.player_attached[name] = true
|
default.player_attached[name] = true
|
||||||
minetest.after(0.2, function()
|
minetest.after(0.2, function()
|
||||||
-- default.player_set_animation(clicker, "sit" , 30)
|
-- default.player_set_animation(clicker, "sit" , 30)
|
||||||
|
@ -171,12 +174,13 @@ function rocket.on_step(self, dtime)
|
||||||
elseif ctrl.down then
|
elseif ctrl.down then
|
||||||
self.v = self.v - 0.1
|
self.v = self.v - 0.1
|
||||||
end
|
end
|
||||||
if ctrl.left and ctrl.right and self.vy < 10 then
|
if ctrl.left and ctrl.right and self.vy < 10 then --go into sideways rocket
|
||||||
local sideways_rocket = minetest.add_entity(self.object:getpos(), "rocket:sideways_rocket")
|
local sideways_rocket = minetest.add_entity(self.object:getpos(), "rocket:sideways_rocket")
|
||||||
sideways_rocket:setyaw(self.object:getyaw())
|
sideways_rocket:setyaw(self.object:getyaw())
|
||||||
default.player_set_animation(driver_objref, "sit" , 30)
|
default.player_set_animation(driver_objref, "sit" , 30)
|
||||||
driver_objref:set_detach()
|
driver_objref:set_detach()
|
||||||
driver_objref:set_attach(sideways_rocket, "", {x = 0, y = 1, z = 0}, {x = 0, y = 2, z = 0})
|
driver_objref:set_eye_offset({x=0,y=0,z=0},{x=0,y=0,z=0})
|
||||||
|
driver_objref:set_attach(sideways_rocket, "", {x = 0, y = 1, z = 0}, {x = 0, y = 0, z = 0})
|
||||||
minetest.sound_stop(self.soundThrust)
|
minetest.sound_stop(self.soundThrust)
|
||||||
self.object:remove()
|
self.object:remove()
|
||||||
--right click after pressing A+D to go into the sideways rocket
|
--right click after pressing A+D to go into the sideways rocket
|
||||||
|
@ -264,6 +268,45 @@ function rocket.on_step(self, dtime)
|
||||||
texture = "rocket_boom.png",
|
texture = "rocket_boom.png",
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
--Crash landing with a pilot
|
||||||
|
local p = self.object:getpos()
|
||||||
|
local vacuum = "air"
|
||||||
|
if(minetest.get_modpath("vacuum")) ~= nil then
|
||||||
|
vacuum = "vacuum:vacuum"
|
||||||
|
end
|
||||||
|
local atmos = "air"
|
||||||
|
if(minetest.get_modpath("other_worlds")) ~= nil then
|
||||||
|
atmos = ":asteriod:atmos"
|
||||||
|
end
|
||||||
|
local p1 = self.object:getpos()
|
||||||
|
p1.y = p1.y - 1
|
||||||
|
if minetest.get_node(p1).name ~= "air" and minetest.get_node(p1).name ~= vacuum and minetest.get_node(p1).name ~= atmos and self.vy < -10 then
|
||||||
|
tnt.boom(p, {
|
||||||
|
radius = 3,
|
||||||
|
damage_radius = 6,
|
||||||
|
sound = "tnt_explode",
|
||||||
|
explode_center = false,
|
||||||
|
})
|
||||||
|
minetest.sound_stop(self.soundThrust)
|
||||||
|
self.object:remove()
|
||||||
|
driver_objref:set_eye_offset({x=0,y=0,z=0},{x=0,y=0,z=0})
|
||||||
|
end
|
||||||
|
|
||||||
|
local p2 = self.object:getpos()
|
||||||
|
p2.y = p2.y + 6
|
||||||
|
local p3 = self.object:getpos()
|
||||||
|
p3.y = p3.y + 4
|
||||||
|
if minetest.get_node(p2).name ~= "air" and minetest.get_node(p2).name ~= vacuum and minetest.get_node(p1).name ~= atmos and self.vy > 10 then
|
||||||
|
tnt.boom(p3, {
|
||||||
|
radius = 3,
|
||||||
|
damage_radius = 6,
|
||||||
|
sound = "tnt_explode",
|
||||||
|
explode_center = false,
|
||||||
|
})
|
||||||
|
minetest.sound_stop(self.soundThrust)
|
||||||
|
self.object:remove()
|
||||||
|
driver_objref:set_eye_offset({x=0,y=0,z=0},{x=0,y=0,z=0})
|
||||||
|
end
|
||||||
else
|
else
|
||||||
-- Player left server while driving
|
-- Player left server while driving
|
||||||
-- In MT 5.0.0 use 'rocket:on_detach_child()' to do this
|
-- In MT 5.0.0 use 'rocket:on_detach_child()' to do this
|
||||||
|
@ -360,16 +403,19 @@ function rocket.on_step(self, dtime)
|
||||||
end
|
end
|
||||||
]]
|
]]
|
||||||
|
|
||||||
--Crash landing
|
--Crash landing without a pilot
|
||||||
local p = self.object:getpos()
|
local p = self.object:getpos()
|
||||||
local vacuum = "air"
|
local vacuum = "air"
|
||||||
if(minetest.get_modpath("vacuum")) ~= nil then
|
if(minetest.get_modpath("vacuum")) ~= nil then
|
||||||
vacuum = "vacuum:vacuum"
|
vacuum = "vacuum:vacuum"
|
||||||
end
|
end
|
||||||
|
local atmos = "air"
|
||||||
|
if(minetest.get_modpath("other_worlds")) ~= nil then
|
||||||
|
atmos = ":asteriod:atmos"
|
||||||
|
end
|
||||||
local p1 = self.object:getpos()
|
local p1 = self.object:getpos()
|
||||||
p1.y = p1.y - 1
|
p1.y = p1.y - 1
|
||||||
if minetest.get_node(p1).name ~= "air" and minetest.get_node(p1).name ~= vacuum and self.vy < -10 then
|
if minetest.get_node(p1).name ~= "air" and minetest.get_node(p1).name ~= vacuum and minetest.get_node(p1).name ~= atmos and self.vy < -10 then
|
||||||
tnt.boom(p, {
|
tnt.boom(p, {
|
||||||
radius = 3,
|
radius = 3,
|
||||||
damage_radius = 6,
|
damage_radius = 6,
|
||||||
|
@ -384,7 +430,7 @@ function rocket.on_step(self, dtime)
|
||||||
p2.y = p2.y + 6
|
p2.y = p2.y + 6
|
||||||
local p3 = self.object:getpos()
|
local p3 = self.object:getpos()
|
||||||
p3.y = p3.y + 4
|
p3.y = p3.y + 4
|
||||||
if minetest.get_node(p2).name ~= "air" and minetest.get_node(p2).name ~= vacuum and self.vy > 10 then
|
if minetest.get_node(p2).name ~= "air" and minetest.get_node(p2).name ~= vacuum and minetest.get_node(p1).name ~= atmos and self.vy > 10 then
|
||||||
tnt.boom(p3, {
|
tnt.boom(p3, {
|
||||||
radius = 3,
|
radius = 3,
|
||||||
damage_radius = 6,
|
damage_radius = 6,
|
||||||
|
@ -395,6 +441,7 @@ function rocket.on_step(self, dtime)
|
||||||
self.object:remove()
|
self.object:remove()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
self.object:setpos(self.object:getpos())
|
self.object:setpos(self.object:getpos())
|
||||||
self.object:setvelocity(get_velocity(self.v, self.object:getyaw(), self.vy))
|
self.object:setvelocity(get_velocity(self.v, self.object:getyaw(), self.vy))
|
||||||
self.object:setacceleration(new_acce)
|
self.object:setacceleration(new_acce)
|
||||||
|
@ -487,7 +534,7 @@ function sideways_rocket.on_rightclick(self, clicker)
|
||||||
end
|
end
|
||||||
self.driver = name
|
self.driver = name
|
||||||
clicker:set_attach(self.object, "",
|
clicker:set_attach(self.object, "",
|
||||||
{x = 0, y = 1, z = 0}, {x = 0, y = 2, z = 0})
|
{x = 0, y = 1, z = 0}, {x = 0, y = 0, z = 0})
|
||||||
default.player_attached[name] = true
|
default.player_attached[name] = true
|
||||||
minetest.after(0.2, function()
|
minetest.after(0.2, function()
|
||||||
default.player_set_animation(clicker, "sit" , 30)
|
default.player_set_animation(clicker, "sit" , 30)
|
||||||
|
@ -554,12 +601,13 @@ function sideways_rocket.on_step(self, dtime)
|
||||||
texture = "rocket_boom.png",
|
texture = "rocket_boom.png",
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
if ctrl.left and ctrl.right and self.v < 10 then
|
if ctrl.left and ctrl.right and self.v < 10 then --go into vertical rocket
|
||||||
local rocket = minetest.add_entity(self.object:getpos(), "rocket:rocket")
|
local rocket = minetest.add_entity(self.object:getpos(), "rocket:rocket")
|
||||||
rocket:setyaw(self.object:getyaw())
|
rocket:setyaw(self.object:getyaw())
|
||||||
default.player_set_animation(driver_objref, "stand" , 30)
|
default.player_set_animation(driver_objref, "stand" , 30)
|
||||||
driver_objref:set_detach()
|
driver_objref:set_detach()
|
||||||
driver_objref:set_attach(rocket, "", {x = 0, y = 1, z = 0}, {x = 0, y = 2, z = 0})
|
driver_objref:set_eye_offset({x=0,y=20,z=0},{x=0,y=0,z=0})
|
||||||
|
driver_objref:set_attach(rocket, "", {x = 0, y = 20, z = 0}, {x = 0, y = 0, z = 0})
|
||||||
minetest.sound_stop(self.soundThrust)
|
minetest.sound_stop(self.soundThrust)
|
||||||
self.object:remove()
|
self.object:remove()
|
||||||
--right click after pressing A+D to go into the rocket
|
--right click after pressing A+D to go into the rocket
|
||||||
|
@ -573,6 +621,78 @@ function sideways_rocket.on_step(self, dtime)
|
||||||
elseif ctrl.sneak then
|
elseif ctrl.sneak then
|
||||||
self.vy = self.vy - 0.075
|
self.vy = self.vy - 0.075
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--Crashing with a pilot
|
||||||
|
local p = self.object:getpos()
|
||||||
|
local vacuum = "air"
|
||||||
|
if(minetest.get_modpath("vacuum")) ~= nil then
|
||||||
|
vacuum = "vacuum:vacuum"
|
||||||
|
end
|
||||||
|
local atmos = "air"
|
||||||
|
if(minetest.get_modpath("other_worlds")) ~= nil then
|
||||||
|
atmos = ":asteriod:atmos"
|
||||||
|
end
|
||||||
|
local p1 = self.object:getpos()
|
||||||
|
p1.x = p1.x + 2
|
||||||
|
local p2 = self.object:getpos()
|
||||||
|
p2.x = p2.x - 2
|
||||||
|
local p3 = self.object:getpos()
|
||||||
|
p3.z = p3.z + 2
|
||||||
|
local p4 = self.object:getpos()
|
||||||
|
p4.x = p4.x - 2
|
||||||
|
if minetest.get_node(p1).name ~= "air" and minetest.get_node(p1).name ~= vacuum and minetest.get_node(p1).name ~= atmos and self.v > 10 then
|
||||||
|
minetest.sound_stop(self.soundThrust)
|
||||||
|
self.object:remove()
|
||||||
|
if driver_objref then
|
||||||
|
default.player_set_animation(driver_objref, "stand" , 30)
|
||||||
|
driver_objref:set_detach()
|
||||||
|
end
|
||||||
|
tnt.boom(p, {
|
||||||
|
radius = 3,
|
||||||
|
damage_radius = 6,
|
||||||
|
sound = "tnt_explode",
|
||||||
|
explode_center = false,
|
||||||
|
})
|
||||||
|
elseif minetest.get_node(p2).name ~= "air" and minetest.get_node(p2).name ~= vacuum and minetest.get_node(p1).name ~= atmos and self.v > 10 then
|
||||||
|
minetest.sound_stop(self.soundThrust)
|
||||||
|
self.object:remove()
|
||||||
|
if driver_objref then
|
||||||
|
default.player_set_animation(driver_objref, "stand" , 30)
|
||||||
|
driver_objref:set_detach()
|
||||||
|
end
|
||||||
|
tnt.boom(p, {
|
||||||
|
radius = 3,
|
||||||
|
damage_radius = 6,
|
||||||
|
sound = "tnt_explode",
|
||||||
|
explode_center = false,
|
||||||
|
})
|
||||||
|
elseif minetest.get_node(p3).name ~= "air" and minetest.get_node(p3).name ~= vacuum and minetest.get_node(p1).name ~= atmos and self.v > 10 then
|
||||||
|
minetest.sound_stop(self.soundThrust)
|
||||||
|
self.object:remove()
|
||||||
|
if driver_objref then
|
||||||
|
default.player_set_animation(driver_objref, "stand" , 30)
|
||||||
|
driver_objref:set_detach()
|
||||||
|
end
|
||||||
|
tnt.boom(p, {
|
||||||
|
radius = 3,
|
||||||
|
damage_radius = 6,
|
||||||
|
sound = "tnt_explode",
|
||||||
|
explode_center = false,
|
||||||
|
})
|
||||||
|
elseif minetest.get_node(p4).name ~= "air" and minetest.get_node(p4).name ~= vacuum and minetest.get_node(p1).name ~= atmos and self.v > 10 then
|
||||||
|
minetest.sound_stop(self.soundThrust)
|
||||||
|
self.object:remove()
|
||||||
|
if driver_objref then
|
||||||
|
default.player_set_animation(driver_objref, "stand" , 30)
|
||||||
|
driver_objref:set_detach()
|
||||||
|
end
|
||||||
|
tnt.boom(p, {
|
||||||
|
radius = 3,
|
||||||
|
damage_radius = 6,
|
||||||
|
sound = "tnt_explode",
|
||||||
|
explode_center = false,
|
||||||
|
})
|
||||||
|
end
|
||||||
else
|
else
|
||||||
-- Player left server while driving
|
-- Player left server while driving
|
||||||
-- In MT 5.0.0 use 'sideways_rocket:on_detach_child()' to do this
|
-- In MT 5.0.0 use 'sideways_rocket:on_detach_child()' to do this
|
||||||
|
@ -652,12 +772,16 @@ function sideways_rocket.on_step(self, dtime)
|
||||||
end
|
end
|
||||||
]]
|
]]
|
||||||
|
|
||||||
--Crashing
|
--Crashing without a pilot
|
||||||
local p = self.object:getpos()
|
local p = self.object:getpos()
|
||||||
local vacuum = "air"
|
local vacuum = "air"
|
||||||
if(minetest.get_modpath("vacuum")) ~= nil then
|
if(minetest.get_modpath("vacuum")) ~= nil then
|
||||||
vacuum = "vacuum:vacuum"
|
vacuum = "vacuum:vacuum"
|
||||||
end
|
end
|
||||||
|
local atmos = "air"
|
||||||
|
if(minetest.get_modpath("other_worlds")) ~= nil then
|
||||||
|
atmos = ":asteriod:atmos"
|
||||||
|
end
|
||||||
local p1 = self.object:getpos()
|
local p1 = self.object:getpos()
|
||||||
p1.x = p1.x + 2
|
p1.x = p1.x + 2
|
||||||
local p2 = self.object:getpos()
|
local p2 = self.object:getpos()
|
||||||
|
@ -666,7 +790,7 @@ function sideways_rocket.on_step(self, dtime)
|
||||||
p3.z = p3.z + 2
|
p3.z = p3.z + 2
|
||||||
local p4 = self.object:getpos()
|
local p4 = self.object:getpos()
|
||||||
p4.x = p4.x - 2
|
p4.x = p4.x - 2
|
||||||
if minetest.get_node(p1).name ~= "air" and minetest.get_node(p1).name ~= vacuum and self.v > 10 then
|
if minetest.get_node(p1).name ~= "air" and minetest.get_node(p1).name ~= vacuum and minetest.get_node(p1).name ~= atmos and self.v > 10 then
|
||||||
minetest.sound_stop(self.soundThrust)
|
minetest.sound_stop(self.soundThrust)
|
||||||
self.object:remove()
|
self.object:remove()
|
||||||
if driver_objref then
|
if driver_objref then
|
||||||
|
@ -679,7 +803,7 @@ function sideways_rocket.on_step(self, dtime)
|
||||||
sound = "tnt_explode",
|
sound = "tnt_explode",
|
||||||
explode_center = false,
|
explode_center = false,
|
||||||
})
|
})
|
||||||
elseif minetest.get_node(p2).name ~= "air" and minetest.get_node(p2).name ~= vacuum and self.v > 10 then
|
elseif minetest.get_node(p2).name ~= "air" and minetest.get_node(p2).name ~= vacuum and minetest.get_node(p1).name ~= atmos and self.v > 10 then
|
||||||
minetest.sound_stop(self.soundThrust)
|
minetest.sound_stop(self.soundThrust)
|
||||||
self.object:remove()
|
self.object:remove()
|
||||||
if driver_objref then
|
if driver_objref then
|
||||||
|
@ -692,7 +816,7 @@ function sideways_rocket.on_step(self, dtime)
|
||||||
sound = "tnt_explode",
|
sound = "tnt_explode",
|
||||||
explode_center = false,
|
explode_center = false,
|
||||||
})
|
})
|
||||||
elseif minetest.get_node(p3).name ~= "air" and minetest.get_node(p3).name ~= vacuum and self.v > 10 then
|
elseif minetest.get_node(p3).name ~= "air" and minetest.get_node(p3).name ~= vacuum and minetest.get_node(p1).name ~= atmos and self.v > 10 then
|
||||||
minetest.sound_stop(self.soundThrust)
|
minetest.sound_stop(self.soundThrust)
|
||||||
self.object:remove()
|
self.object:remove()
|
||||||
if driver_objref then
|
if driver_objref then
|
||||||
|
@ -705,7 +829,7 @@ function sideways_rocket.on_step(self, dtime)
|
||||||
sound = "tnt_explode",
|
sound = "tnt_explode",
|
||||||
explode_center = false,
|
explode_center = false,
|
||||||
})
|
})
|
||||||
elseif minetest.get_node(p4).name ~= "air" and minetest.get_node(p4).name ~= vacuum and self.v > 10 then
|
elseif minetest.get_node(p4).name ~= "air" and minetest.get_node(p4).name ~= vacuum and minetest.get_node(p1).name ~= atmos and self.v > 10 then
|
||||||
minetest.sound_stop(self.soundThrust)
|
minetest.sound_stop(self.soundThrust)
|
||||||
self.object:remove()
|
self.object:remove()
|
||||||
if driver_objref then
|
if driver_objref then
|
||||||
|
@ -720,6 +844,7 @@ function sideways_rocket.on_step(self, dtime)
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
self.object:setpos(self.object:getpos())
|
self.object:setpos(self.object:getpos())
|
||||||
self.object:setvelocity(get_velocity(self.v, self.object:getyaw(), self.vy))
|
self.object:setvelocity(get_velocity(self.v, self.object:getyaw(), self.vy))
|
||||||
self.object:setacceleration(new_acce)
|
self.object:setacceleration(new_acce)
|
||||||
|
@ -902,7 +1027,7 @@ minetest.register_node("rocket:oil_source", {
|
||||||
liquid_alternative_flowing = "rocket:oil_flowing",
|
liquid_alternative_flowing = "rocket:oil_flowing",
|
||||||
liquid_alternative_source = "rocket:oil_source",
|
liquid_alternative_source = "rocket:oil_source",
|
||||||
liquid_viscosity = 1,
|
liquid_viscosity = 1,
|
||||||
liquid_renewable = false,
|
liquid_renewable = false,
|
||||||
post_effect_color = {a = 103, r = 45, g = 23, b = 7},
|
post_effect_color = {a = 103, r = 45, g = 23, b = 7},
|
||||||
groups = {oil = 3, liquid = 1, flammable = 1},
|
groups = {oil = 3, liquid = 1, flammable = 1},
|
||||||
sounds = default.node_sound_water_defaults(),
|
sounds = default.node_sound_water_defaults(),
|
||||||
|
@ -947,7 +1072,7 @@ minetest.register_node("rocket:oil_flowing", {
|
||||||
liquid_alternative_flowing = "rocket:oil_flowing",
|
liquid_alternative_flowing = "rocket:oil_flowing",
|
||||||
liquid_alternative_source = "rocket:oil_source",
|
liquid_alternative_source = "rocket:oil_source",
|
||||||
liquid_viscosity = 1,
|
liquid_viscosity = 1,
|
||||||
liquid_renewable = false,
|
liquid_renewable = false,
|
||||||
post_effect_color = {a = 150, r = 45, g = 23, b = 7},
|
post_effect_color = {a = 150, r = 45, g = 23, b = 7},
|
||||||
groups = {oil = 3, liquid = 1, flammable = 1, not_in_creative_inventory = 1},
|
groups = {oil = 3, liquid = 1, flammable = 1, not_in_creative_inventory = 1},
|
||||||
sounds = default.node_sound_water_defaults(),
|
sounds = default.node_sound_water_defaults(),
|
||||||
|
@ -1025,7 +1150,7 @@ minetest.register_node("rocket:rocket_fuel_source", {
|
||||||
liquid_alternative_flowing = "rocket:rocket_fuel_flowing",
|
liquid_alternative_flowing = "rocket:rocket_fuel_flowing",
|
||||||
liquid_alternative_source = "rocket:rocket_fuel_source",
|
liquid_alternative_source = "rocket:rocket_fuel_source",
|
||||||
liquid_viscosity = 1,
|
liquid_viscosity = 1,
|
||||||
liquid_renewable = false,
|
liquid_renewable = false,
|
||||||
post_effect_color = {a = 103, r = 254, g = 0, b = 30},
|
post_effect_color = {a = 103, r = 254, g = 0, b = 30},
|
||||||
groups = {oil = 3, liquid = 1, flammable = 1},
|
groups = {oil = 3, liquid = 1, flammable = 1},
|
||||||
sounds = default.node_sound_water_defaults(),
|
sounds = default.node_sound_water_defaults(),
|
||||||
|
@ -1070,7 +1195,7 @@ minetest.register_node("rocket:rocket_fuel_flowing", {
|
||||||
liquid_alternative_flowing = "rocket:rocket_fuel_flowing",
|
liquid_alternative_flowing = "rocket:rocket_fuel_flowing",
|
||||||
liquid_alternative_source = "rocket:rocket_fuel_source",
|
liquid_alternative_source = "rocket:rocket_fuel_source",
|
||||||
liquid_viscosity = 1,
|
liquid_viscosity = 1,
|
||||||
liquid_renewable = false,
|
liquid_renewable = false,
|
||||||
post_effect_color = {a = 103, r = 254, g = 0, b = 30},
|
post_effect_color = {a = 103, r = 254, g = 0, b = 30},
|
||||||
groups = {oil = 3, liquid = 1, flammable = 1, not_in_creative_inventory = 1},
|
groups = {oil = 3, liquid = 1, flammable = 1, not_in_creative_inventory = 1},
|
||||||
sounds = default.node_sound_water_defaults(),
|
sounds = default.node_sound_water_defaults(),
|
||||||
|
|
Loading…
Reference in New Issue