Creando Tu Torre
Una torre de WarriorJS es un módulo de JavaScript que exporta un único objeto:
module.exports = {
// Tower definition.
};
Definamos el nombre de nuestra torre y escribamos una breve descripción:
module.exports = {
name: 'Game of Thrones',
description:
'There is only one war that matters: the Great War. And it is here.',
};
¡Genial! Pero aún no hay nada que trepar. ¡Agreguemos algunos niveles a esta torre!