Add fish selling, buyer profiles, and player wallet

This commit is contained in:
Alexander Sellite 2026-07-25 16:27:07 -04:00
parent fb04615600
commit d2fe367891
25 changed files with 738 additions and 5 deletions

View file

@ -76,4 +76,7 @@ func create_catch(fish: FishDataType) -> FishCatchType:
caught_fish.display_scale = fish.get_display_scale_for_weight(
caught_fish.weight_lb
)
caught_fish.sale_value = fish.get_sale_value_for_weight(
caught_fish.weight_lb
)
return caught_fish