Polish world, shop, and artwork presentation

This commit is contained in:
Alexander Sellite 2026-08-13 14:53:39 -04:00
parent 7d38bc962b
commit 117fdbfdaa
94 changed files with 1771 additions and 579 deletions

View file

@ -9,4 +9,4 @@ display_name = "pelicans"
animal_name_singular = "pelican"
animal_name_plural = "pelicans"
payout_multiplier = 0.25
sale_message_template = "You sold your {fish} to the pelicans for ${payout}."
sale_message_template = "You sold your {fish} to the pelicans."

View file

@ -53,8 +53,7 @@ func get_sale_message(
var buyer_name: String = animal_name_plural
if buyer_name.is_empty():
buyer_name = display_name
return "you sold your %s to the %s for $%d." % [
return "you sold your %s to the %s." % [
fish_name,
buyer_name,
payout,
]

View file

@ -165,9 +165,10 @@ func _validate_batch(
result.payout
)
else:
result.sale_message = "you sold %d fish to the %s for $%d." % [
result.sale_message = (
"you sold %d fish to the %s." % [
result.fish_count,
result.buyer_animal_name,
result.payout,
]
]
)
return result