|
@@ -6,7 +6,7 @@ namespace loyalsoft;
|
|
|
// 由CodeGenerator创建。
|
|
|
// Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
|
|
|
// author: gwang
|
|
|
-// 日期: 2020-12-14 09:58:03
|
|
|
+// 日期: 2021-02-20 11:02:03
|
|
|
////////////////////
|
|
|
|
|
|
/**
|
|
@@ -508,6 +508,22 @@ class GameConfig {
|
|
|
return self::get_hash_item('task_node', $itemid);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 动作事件表
|
|
|
+ * @return \eventAction
|
|
|
+ */
|
|
|
+ public static function eventAction() {
|
|
|
+ static $a = null;
|
|
|
+ return self::initValue($a, 'eventAction');
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @return \sm_eventAction eventAction item数据
|
|
|
+ */
|
|
|
+ public static function eventAction_getItem($itemid) {
|
|
|
+ return self::get_hash_item('eventAction', $itemid);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 碎片
|
|
|
* @return \segment
|
|
@@ -525,19 +541,19 @@ class GameConfig {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- *
|
|
|
- * @return \gate_world
|
|
|
+ * 关卡-区域表
|
|
|
+ * @return \gate_zone
|
|
|
*/
|
|
|
- public static function gate_world() {
|
|
|
+ public static function gate_zone() {
|
|
|
static $a = null;
|
|
|
- return self::initValue($a, 'gate_world');
|
|
|
+ return self::initValue($a, 'gate_zone');
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * @return \sm_gate_world gate_world item数据
|
|
|
+ * @return \sm_gate_zone gate_zone item数据
|
|
|
*/
|
|
|
- public static function gate_world_getItem($itemid) {
|
|
|
- return self::get_hash_item('gate_world', $itemid);
|
|
|
+ public static function gate_zone_getItem($itemid) {
|
|
|
+ return self::get_hash_item('gate_zone', $itemid);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -684,6 +700,22 @@ class GameConfig {
|
|
|
return self::get_hash_item('segment_byPinzhi', $quailty)->$itemType;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ * @return \npc
|
|
|
+ */
|
|
|
+ public static function npc() {
|
|
|
+ static $a = null;
|
|
|
+ return self::initValue($a, 'npc');
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @return \sm_npc npc item数据
|
|
|
+ */
|
|
|
+ public static function npc_getItem($itemid) {
|
|
|
+ return self::get_hash_item('npc', $itemid);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 活动: 在线礼包
|
|
|
* @return \activity_onlinegift
|