Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Hello out there! Happy Valintine's! Everyone! Chris, I was wonding if you could show me how to add more monsters to my roguelike? I read the .pdf and it says you'll need to add an array list and categorize monsters and pick from there.  Is there a way you could show me how to do that I am not really great at coding in JavaScript I use mostly other languages but I am willing to learn.  

I was going to write my own rogue but I thought it would be nice to learn how to operate this one and utilize it more.

Hello Scott_Bro_1, and sorry for the slow reply. There is some example code in the other questions on this board that you can follow. Basically you have to change Game.monster to be Game.monsters which should be a JavaScript array like []. Then add new monsters to that array like in this example:

https://itch.io/post/4901482

Good luck.