module
ai
var/tmp/mob/ai/master
human
var/tmp/override/mob/ai/human/master
animal
var/tmp/override/mob/ai/animal/master
The idea is the override keyword would allow one to redefine a previously defined variable.
In my example, the base module type has a master variable using a base ai type. Getting into more unique systems, such as the animal module, the master variable is redefined to properly represent the type it'll be using.
The main benefit of this feature would be avoiding code duplication of all forms.