In this chapter, we will explain how to create a mod jar by yourself using a sample created in advance.
The mod jar should contain the following files
Specifically, it has the following configuration.
ModTheSpire.json
com/qiita/ykojim/Main.class
com/qiita/ykojim/MyCard1.class
com/qiita/ykojim/MyCard2.class
assets/img/card1.png
assets/img/card2.png
assets/loc/CardStrings.json
It doesn't matter how you create the jar as long as it meets the above requirements, but here we will use the JDK and mvnw.
desktop-1.0.jar
from the Steam Slay the Spire directory (default is
C: \ Program Files (x86) \ Steam \ steamapps \ common \ SlayTheSpire```) to lib Copy to directory`mvnw.cmd package``` in the`
mod001``` directoryThis will create a `` `StsModStudy.jar``` in the target subdirectory of the clone destination directory.
Recommended Posts