July 2018
Intermediate to advanced
400 pages
12h 14m
English
Let’s get started. Open IntelliJ and create a new project. (If you already have IntelliJ open, you can select File → New → Project...) Select the Kotlin/JVM target and name your project NyetHack.
Click on the NyetHack disclosure arrow in the project tool window and right-click the src directory to create a new Kotlin File/Class. Name your file Game. Add a main entry point function to Game.kt by typing “main” and pressing the Tab key. Your function should look like this:
fun main(args: Array<String>) {
}
In NyetHack, a player’s condition is based on remaining health points, ranging from 0 to 100. On their quest, they may sustain injuries during combat. On the other hand, they may be in excellent condition. You ...