参考材料WIKI完善背包物品处理

This commit is contained in:
BTMuli
2025-12-09 14:32:35 +08:00
parent eafd2fdff8
commit 17690bb024
8 changed files with 684 additions and 32 deletions

View File

@@ -21,13 +21,19 @@ declare namespace TGApp.Plugins.Yae {
* @since Beta v0.9.0
*/
type BagItemUnion =
| BagItem<"material">
| BagItemMaterial
| BagItem<"weapon">
| BagItem<"reliquary">
| BagItem<"furniture">
| BagItem<"virtual">
| BagItem<"unknown">;
/**
* 背包物品-材料
* @since Beta v0.9.0
*/
type BagItemMaterial = BagItem<"material">;
/**
* 背包物品信息
* @since Beta v0.9.0