Add starter RV progression and fishing feedback
This commit is contained in:
parent
eed361681a
commit
d8bf59bca0
47 changed files with 2268 additions and 467 deletions
15
world/rv_upgrade_interaction.gd
Normal file
15
world/rv_upgrade_interaction.gd
Normal 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
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue