Add starter RV progression and fishing feedback

This commit is contained in:
Alexander Sellite 2026-08-31 16:03:55 -04:00
parent eed361681a
commit d8bf59bca0
47 changed files with 2268 additions and 467 deletions

View file

@ -0,0 +1,15 @@
class_name RVUpgradeInteraction
extends FishingShopInteraction
const TENT_DIALOGUE_TEXT: String = (
"That tent is looking awful cramped. Can I talk you into an upgrade?"
)
const RV_DIALOGUE_TEXT: String = "How's the new RV treating you?"
func get_dialogue_text(home_tier: int = -1) -> String:
return (
RV_DIALOGUE_TEXT
if home_tier >= PlayerHomeState.STARTER_RV_TIER
else TENT_DIALOGUE_TEXT
)