noita_entangled_worlds/quant.ew/data/scripts/magic/eradicate.lua

15 lines
438 B
Lua
Raw Normal View History

2024-11-02 20:51:30 -04:00
dofile_once("data/scripts/lib/utilities.lua")
local entity_id = GetUpdatedEntityID()
local x, y = EntityGetTransform( entity_id )
local targets = EntityGetWithTag( "mortal" )
for i,v in ipairs( targets ) do
if ( EntityHasTag( v, "ew_peer" ) == false ) then
local test = EntityGetFirstComponent( v, "DamageModelComponent" )
if ( test ~= nil ) then
EntityKill( v )
end
end
end