Slay the Spire mod based on Jorbs' Mod Character Package spreadsheet. Not official.
Based on StS-DefaultModBase.
Discussion in the #jorbs-spire-mod-char channel in the Jorbs Discord.
- Through Steam, install Slay the Spire (stable branch)
- From the Steam Workshop, install "Mod the Spire", "BaseMod", and "StSLib"
- Download
JorbsMod.jarfrom the latest release (https://github.com/dbjorge/sts-jorbs-mod/releases) - Launch Mod the Spire by right clicking on Slay the Spire in your Steam Library "Play with Mods"
- In the Mod the Spire launcher, select the "open mods folder" button
- Copy
JorbsMod.jarinto this mods folder - Close and relaunch Mod the Spire
- Make sure "BaseMod", "StSLib", and "JorbsMod" are all checked
- Play!
- Install the Oracle Java 8 JDK (not Java 9+)
- Install IntelliJ IDEA (the free Community edition is fine)
- Through Steam, install Slay the Spire (stable branch)
- From the Steam Workshop, install "Mod the Spire", "BaseMod", and "StSLib"
- Clone the repository
- Open the project in IntelliJ IDEA:
- Choose "Import Project"
- Choose the repository folder
- Select "Maven"
- Press next a few times, all other settings can be left at defaults
- Create a file named
settings.xmlin a folder named.m2in your home directory. On Windows, you can open your home directory by typing%USERPROFILE%in File Explorer. Paste the following content (or, ifsettings.xmlalready exists, extend it). Replace the Steam installation path if you've installed Steam somewhere else!:<settings> <profiles> <profile> <id>inject-local-paths</id> <properties> <Steam.path>C:/Program Files/Steam/steamapps</Steam.path> <STS.jar.path>${Steam.path}/common/SlayTheSpire/desktop-1.0.jar</STS.jar.path> </properties> </profile> </profiles> <activeProfiles> <activeProfile>inject-local-paths</activeProfile> </activeProfiles> </settings>
- Follow the these instructions from the StS-DefaultModBase wiki to build the mod package and debug it
This project uses GitHub Pull Requests to handle merging contributed changes. If you're new to using GitHub or Pull Requests, here's the TL;DR for the workflow I like to use:
- Create your own fork of this repository by clicking the "Fork" button at the top right of this page (you'll need a GitHub account)
- Install Git
- From a command prompt, run the following (replace
your_usernamewith your GitHub username):cd C:/path/to/code git clone --origin upstream https://github.com/dbjorge/jorbs-spire-mod.git cd jorbs-spire-mod git remote add my_fork https://github/your_username/jorbs-spire-mod.git git config --global alias.newfeature "!git checkout master && git pull && git checkout -b" git config --global alias.pushtofork "!git push --set-upstream my_fork HEAD"
- (recommended) Discuss your idea on the Discord #jorbs-spire-mod-char channel first, to make sure noone else is already working on the same thing
- Run
git newfeature my-cool-feature-name - Make your code changes, build and test locally
- Use
git add *andgit commit -m 'description of changes'to make local commits
- Run
git pushtoforkfrom your feature branch - Create a Pull Request on GitHub