|
@@ -3,7 +3,7 @@
|
|
|
// 由CodeGenerator创建。
|
|
|
// Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
|
|
|
// author: gwang
|
|
|
- // 日期: 2023-09-01 10:01:44
|
|
|
+ // 日期: 2023-09-01 15:47:11
|
|
|
////////////////////
|
|
|
|
|
|
namespace loyalsoft;
|
|
@@ -527,6 +527,22 @@ class GameConfig {
|
|
|
return self::get_hash_item('equip_compose', $itemid);
|
|
|
}
|
|
|
/**
|
|
|
+ * 剧情表
|
|
|
+ * @return \plot
|
|
|
+ */
|
|
|
+ public static function plot()
|
|
|
+ {
|
|
|
+ static $a = null;
|
|
|
+ return self::initValue($a, 'plot');
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return \sm_plot plot item数据
|
|
|
+ */
|
|
|
+ public static function plot_getItem($gateId, $stage)
|
|
|
+ {
|
|
|
+ return self::get_hash_item('plot', $gateId)->$stage;
|
|
|
+ }
|
|
|
+ /**
|
|
|
* 当前版本(时间戳)
|
|
|
* @return \ver
|
|
|
*/
|