I have one simpel question. Do I name my object ICE BOX or ICEBOX or ICE-BOX?
The first one is probably correct but the middle one makes for simple input?
I'd go with single word ICEBOX.
You could create an alias in the vocabulary section BOX too. Then if the player types BOX, then Adventuron handles it as ICEBOX so you don't have to duplicate your command handlers.
######################################
# Vocabulary #
###################################### vocabulary {
: noun {
aliases = [icebox, box ]
}
}
There are two different formats you can use. Using a verb as an example:
vocabulary { : verb { aliases = [talk, speak] } : verb { aliases = [lie, crouch] } }
OR
vocabulary { : verb / aliases = [talk, speak] : verb / aliases = [lie, crouch] }
The second format is more concise. For nouns, just replace "verb" with "noun".