Adds raptor growth progress bar to RaptorDex (#94659)

## About The Pull Request
Players can now check their chick's/youngling's growth progress via the
RaptorDex item or app

## Why It's Good For The Game

Currently there's no way to know how much food you need to feed to your
raptor to advance their growth, which can cause confusion among newer
players.

## Changelog
🆑
qol: Added raptor growth progress bar to RaptorDex
/🆑
This commit is contained in:
SmArtKar
2026-01-04 19:44:51 +01:00
committed by GitHub
parent 02bbf845ea
commit 0f2a1dd6a3
3 changed files with 13 additions and 0 deletions
@@ -27,6 +27,8 @@
scan_data["raptor_speed"] = my_raptor.speed + intent_mod?.multiplicative_slowdown
scan_data["raptor_color"] = my_raptor.name
scan_data["raptor_gender"] = my_raptor.gender
scan_data["raptor_growth"] = my_raptor.growth_progress
scan_data["can_grow"] = my_raptor.growth_stage != RAPTOR_ADULT
scan_data["raptor_description"] = my_raptor.raptor_color.description
var/happiness_percentage = my_raptor.ai_controller?.blackboard[BB_BASIC_HAPPINESS]