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

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 中检测到游戏存档,请确认游戏是否已在本机运行过。")
相关推荐
小田学Python14 小时前
100行Python代码,搭一个能干活的AI Agent
python·langchain·大模型·ai agent
Csvn14 小时前
🐍 Day3 : Python 容器精讲 — list、dict、set、tuple 底层实现与高级操作
后端·python
weixin-a1530030831615 小时前
python-装饰器
开发语言·python
我的xiaodoujiao15 小时前
快速学习Python基础知识详细图文教程17--类型注解和断点调试
开发语言·python·学习·测试工具
每天吃饭的羊16 小时前
Chrome DevTools MCP
python
水獭比特18 小时前
localhost 不是安全边界:给 Agent Web 入口补上四层门禁
人工智能·python
Generalzy18 小时前
Whisper + VAD + TTS:一套完整的 Python 本地语音处理流水线
python·whisper·语音识别
qpsj18 小时前
让 LLM 控制 AutoCAD/ZWCAD:COM 自动化 + MCP 封装
python·llm
赟爸18 小时前
直播切片素材杂乱不好复用,易元AI要怎么处理
大数据·人工智能·python
怪奇云呼军19 小时前
从声音特征到 CRM 回流:闪电智能 Voice Agent 沟通策略自适应系统 v1 实战
android·人工智能·python·音视频·语音识别