feat: expand seasonal creature collection

This commit is contained in:
Alexander Sellite 2026-08-18 21:20:02 -04:00
parent 925bbb79e5
commit 95c6b8b053
415 changed files with 1688 additions and 389 deletions

View file

@ -48,6 +48,8 @@ func select_fish(
for fish: FishDataType in pool.candidates:
if fish == null or not fish.is_fishable():
continue
if not fish.is_available_in_season(context.season):
continue
if not fish.is_allowed_in_water(context.water_type):
continue
if fish.availability != null and not fish.availability.is_available(context):