# 磁带妖怪存档修改器 **Repository Path**: ltctm/cassette_beasts_save_editor ## Basic Information - **Project Name**: 磁带妖怪存档修改器 - **Description**: No description available - **Primary Language**: Python - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-07-02 - **Last Updated**: 2025-07-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 贴纸 贴纸可以改在`inventory.items`位置,但是`inventory.items`里面包括所有物品,不限于贴纸,修改的时候可以不考虑顺序。 `rarity`为0(普通)、1(罕见,绿)、2(稀有,蓝)。在可以融合贴纸的情况下,绿贴纸最多有3个绿词条和0个蓝词条,蓝贴纸最多有3个词条,颜色不限。 有些词条有`stat_value`或者`chance`属性,buff和debuff词条多了`buff`或者`debuff`,以及`amount`属性 ```json { "amount": 1, "attributes": [ { "stat_value": 24, "template_path": "res://data/sticker_attributes/stat_move_effect_chance.tres" }, { "template_path": "res://data/sticker_attributes/extra_slot.tres" }, { "amount": 3, "buff": "res://data/status_effects/ap_boost.tres", "chance": 50, "template_path": "res://data/sticker_attributes/buff_user.tres" } ], "rarity": 2, "sticker": "res://data/battle_moves/ricochet.tres" } ``` ## 妖怪 妖怪可以改在`tape_collection.tapes`位置,有顺序,尽量把改出来的妖怪放在最前面。 可以默认闪光本系,魔术蟹也是可以闪的 ```json { "exp_points": 0, "favorite": true, #收藏 "form": "res://data/monster_forms/allseer.tres", "grade": 5, #星级 "hp": [1,1], "name": "", #自定义名称 "seed_value": 0, "stat_increments": {}, "stickers": [ # 这里是妖怪的贴纸,比起上面的贴纸只少一个amount属性,其他都一样 ], "type_native": [ "res://data/elemental_types/metal.tres" ], "type_override": [ "res://data/elemental_types/glitter.tres" ] } ```