Crates.io | libsts |
lib.rs | libsts |
version | 0.3.1 |
source | src |
created_at | 2019-07-25 05:50:59.799823 |
updated_at | 2019-11-02 09:17:53.408014 |
description | A library for working with Slay the Spire save and run files |
homepage | |
repository | https://github.com/dcchut/libsts |
max_upload_size | |
id | 151503 |
size | 25,359 |
libsts is a Rust library for working with Slay the Spire save and run files.
Add this to your Cargo.toml
:
[dependencies]
libsts = "0.3"
use libsts::{Save, SaveError};
use std::fs;
fn main() {
// Load the Ironclad save file
let contents = fs::read_to_string("IRONCLAD.autosave").unwrap();
// Attempt to parse the save file
if let Ok(mut save) = Save::new(&contents) {
// Increase the player's hand size and gold
save.hand_size += 2;
save.gold += 999;
// Get the base64 string representation of our modified savefile
if let Ok(modified_save) = save.to_b64_string() {
// Attempt to overwrite the current save file
// with our modified cheaty save file
fs::write("IRONCLAD.autosave", modified_save);
}
// Or if you're using the BETA branch of STS:
if let Ok(modified_save) = save.to_string() {
// ...
fs::write("IRONCLAD.autosaveBETA", modified_save);
}
}
}
Licensed under either of