Examples
Item: playerItem
Player: player {
// Before the game starts, the playerItem object is renamed "Sword" and given to the player object
Event: Game_Start {
this.name = "Sword"
// Dot used to write a new value to an object property.
playerItem.moveTo(this)
// Dot used to access an object method.
}
}