noita_entangled_worlds/quant.ew/data/scripts/essences/water.lua

19 lines
No EOL
610 B
Lua

dofile_once("data/scripts/lib/utilities.lua")
dofile_once("mods/quant.ew/files/resource/shoot_projectile_fix.lua")
local entity_id = GetUpdatedEntityID()
local pos_x, pos_y = EntityGetTransform( entity_id )
SetRandomSeed( pos_x, pos_y )
local theta = math.rad( Random( 1,360 ) )
local length = 300
local parent_id = EntityGetParent( entity_id )
if (parent_id ~= NULL_ENTITY) then
local vel_x = math.cos( theta ) * length
local vel_y = math.sin( theta ) * length
shoot_projectile( parent_id, "data/entities/misc/essences/water_bullet.xml", pos_x, pos_y, vel_x, vel_y )
end