aboutsummaryrefslogtreecommitdiff
path: root/internal/game/messages.go
blob: 1c9e85a9cbadd9c28c5a670362a8b5892b4adc97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package game

const (
	MsgErrLoadRecipes       = "Error loading recipes."
	MsgNoCombat             = "You can't do that during combat!"
	MsgNoDontHave           = "You don't have any '%s'."
	MsgNeverMind            = "Never mind."
	MsgSomethingWrongObject = "Something is wrong with this object."
	MsgSomethingWrongThat   = "Something is wrong with that."
	MsgInventoryFull        = "Your inventory is too full!"
	MsgAmbiguous            = "That's ambiguous, which one?"
	MsgWhichOne             = "Which one?"
)