initial commit

This commit is contained in:
bryanthaboi
2026-07-17 20:30:02 -04:00
commit a5d2e77e7d
298 changed files with 100561 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
-- Event flags stored in the save table, keyed by pokered event constant
-- names (e.g. "EVENT_FOLLOWED_OAK_INTO_LAB").
local Flags = {}
function Flags.set(save, name)
save.flags[name] = true
end
function Flags.clear(save, name)
save.flags[name] = nil
end
function Flags.get(save, name)
return save.flags[name] == true
end
return Flags