杀戮尖塔通过修改记录文件和备份文件进行修改血量和金币

python 复制代码
import json
import os
import shutil
from pathlib import Path

# ================= 配置区 =================
# 在这里设定你期望的数值
NEW_CURRENT_HP = 120    # 当前生命值
NEW_MAX_HP = 130        # 最大生命值
NEW_GOLD = 2000         # 金币
# ==========================================

def find_sts2_save_dir() -> Path | None:
    """
    自动定位《杀戮尖塔2》的最新存档目录
    """
    appdata = os.getenv('APPDATA')
    if not appdata:
        return None
    
    base_path = Path(appdata) / "SlayTheSpire2" / "steam"
    if not base_path.exists():
        return None
        
    # 遍历寻找 steam ID 和 profile 文件夹
    for steam_id_dir in base_path.iterdir():
        if steam_id_dir.is_dir():
            for profile_dir in steam_id_dir.glob("profile*"):
                save_dir = profile_dir / "saves"
                if save_dir.exists():
                    return save_dir
    return None

def inject_save_data(save_dir: Path):
    """
    解析 JSON 并注入修改数据
    """
    target_files = ["current_run.save", "current_run.save.backup"]
    
    for filename in target_files:
        file_path = save_dir / filename
        if not file_path.exists():
            print(f"[-] 忽略缺失文件: {file_path.name}")
            continue
            
        try:
            # [安全机制] 操作前创建强制备份
            backup_path = file_path.with_suffix(".save.bak_script")
            if not backup_path.exists():
                shutil.copy2(file_path, backup_path)
                print(f"[*] 已生成防呆备份: {backup_path.name}")

            # 读取存档
            with open(file_path, 'r', encoding='utf-8') as f:
                data = json.load(f)

            # 遍历并修改 players 数据流
            is_modified = False
            if "players" in data:
                for player in data["players"]:
                    player["current_hp"] = NEW_CURRENT_HP
                    player["max_hp"] = NEW_MAX_HP
                    player["gold"] = NEW_GOLD
                    is_modified = True

            # 回写存档
            if is_modified:
                with open(file_path, 'w', encoding='utf-8') as f:
                    json.dump(data, f, indent=2, ensure_ascii=False)
                print(f"[+] 成功覆盖数值: {file_path.name}")
            else:
                print(f"[!] {file_path.name} 结构异常: 缺失 'players' 节点")

        except json.JSONDecodeError:
            print(f"[x] JSON 解析失败,文件可能已损坏: {file_path.name}")
        except Exception as e:
            print(f"[x] 处理 {file_path.name} 时发生未知异常: {str(e)}")

if __name__ == "__main__":
    print("=== STS2 存档自动化注入工具 ===")
    target_dir = find_sts2_save_dir()
    
    if target_dir:
        print(f"[*] 成功解析存档路径: {target_dir}")
        inject_save_data(target_dir)
        print("=== 注入完成 ===")
    else:
        print("[x] 寻址失败: 未在系统 APPDATA 中检测到游戏存档,请确认游戏是否已在本机运行过。")
相关推荐
钝挫力PROGRAMER1 小时前
复杂PDF转Markdown实战:从Marker到多模态的处理全记录
python·pdf
TechWayfarer1 小时前
账号安全实战:基于IP归属地基线的三原则异地登录风控模型
服务器·网络·python·安全·网络安全
dhashdoia2 小时前
2026年GPT-5.5与GPT-Image-2深度解析:国内部署指南
人工智能·python·gpt·ai作画·gpt国内部署
jayson.h2 小时前
正则表达式:从文件名提取器件编号
开发语言·python·正则表达式
2601_953660372 小时前
Java Map集合详解与实战
java·开发语言·python
一起逃去看海吧2 小时前
DIFY-02-ollama安装与接入大模型
python
YuanDaima20482 小时前
云计算基础与容器技术演进
java·服务器·人工智能·python·深度学习·云计算·个人开发
小小秃头怪2 小时前
径向网格构建
python
爱跑步的程序员~2 小时前
RAG 技术全面解析:从原理到实践
python·ai·langchain·rag