hch
2025-11-21 c51d492dbca8f2f6af40364ca4ab86fcc02c5f9a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System.Collections.Generic;
 
public interface IPhantasmPavilionHandler
{
    bool HasTableKey(int id);
    List<int> GetKeyList();
    int GetResourceType(int id);
    string GetResourceValue(int id);
    string GetName(int id);
    int GetExpireMinutes(int id);
    int GetUnlockWay(int id);
    int GetUnlockValue(int id);
    int GetUnlockNeedCnt(int id);
    int GetUpNeedCnt(int id);
    int GetStarMax(int id);
    int[] GetAttrIDList(int id);
    int[] GetInitAttrValueList(int id);
    int[] GetAttrPerStarAddList(int id);
    string GetGetWayString(int id);
}