Initial commit

This commit is contained in:
2026-02-28 14:00:45 -06:00
commit 16d3170787
1134 changed files with 589134 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
require("PGStateMachine")
function Definitions()
ServiceRate = 1
Define_State("State_Spawned_In_Nebula", State_Spawned_In_Nebula);
end
function State_Spawned_In_Nebula(message)
if message == OnEnter then
if Object.Is_In_Nebula() or Object.Is_In_Ion_Storm() then
Object.Take_Damage(20) --Tune to reduce object lifetime
end
end
end