Examples
Player: {
// Curly braces used to declare a player object
image: "img_player"
desc: "SomeText"
isTrue: true
Event: "Examine" {
// Displays the player description and image if the property isTrue returns true
// Else only the player image is displayed
if (isTrue)
display(this)
else{
// Curly braces used to declare multiply statements to be read if the if statement is false
displayImage(this)
print(getImage())
}
}
}