Creare la tua torre
Una torre WarriorJS è un normale modulo JavaScript con un solo export:
module.exports = {
// Tower definition.
};
Andiamo a definire il nome della torre e a scrivere una breve descrizione:
module.exports = {
name: 'Game of Thrones',
description:
'There is only one war that matters: the Great War. And it is here.',
};
Bello! Ma ancora non c'è niente da scalare. Andiamo ad aggiungere qualche livello a questa torre!