noita_entangled_worlds/quant.ew/files/resource/cbs/immortal.lua

7 lines
229 B
Lua
Raw Normal View History

2024-05-10 22:17:45 +03:00
function damage_about_to_be_received( damage, x, y, entity_thats_responsible, critical_hit_chance )
if(entity_thats_responsible ~= GameGetWorldStateEntity())then
2024-09-16 17:18:58 -04:00
return 2^-128, 0
2024-05-10 22:17:45 +03:00
end
return damage, 0
end