|
@@ -3,7 +3,7 @@
|
|
|
// 由CodeGenerator创建。
|
|
|
// Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
|
|
|
// author: gwang
|
|
|
- // 日期: 2021-05-24 17:26:13
|
|
|
+ // 日期: 2021-05-26 15:00:33
|
|
|
////////////////////
|
|
|
namespace loyalsoft;
|
|
|
/**
|
|
@@ -278,20 +278,36 @@ class GameConfig {
|
|
|
return self::get_hash_item('item_yanling', $itemid);
|
|
|
}
|
|
|
/**
|
|
|
+ * 无尽塔关卡数据
|
|
|
+ * @return \endless_tower
|
|
|
+ */
|
|
|
+ public static function endless_tower()
|
|
|
+ {
|
|
|
+ static $a = null;
|
|
|
+ return self::initValue($a, 'endless_tower');
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return \sm_endless_tower endless_tower item数据
|
|
|
+ */
|
|
|
+ public static function endless_tower_getItem($itemid)
|
|
|
+ {
|
|
|
+ return self::get_hash_item('endless_tower', $itemid);
|
|
|
+ }
|
|
|
+ /**
|
|
|
*
|
|
|
- * @return \tupo_huanlingshi
|
|
|
+ * @return \heroextra_level_tupo
|
|
|
*/
|
|
|
- public static function tupo_huanlingshi()
|
|
|
+ public static function heroextra_level_tupo()
|
|
|
{
|
|
|
static $a = null;
|
|
|
- return self::initValue($a, 'tupo_huanlingshi');
|
|
|
+ return self::initValue($a, 'heroextra_level_tupo');
|
|
|
}
|
|
|
/**
|
|
|
- * @return \sm_tupo_huanlingshi tupo_huanlingshi item数据
|
|
|
+ * @return \sm_heroextra_level_tupo heroextra_level_tupo item数据
|
|
|
*/
|
|
|
- public static function tupo_huanlingshi_getItem($itemid)
|
|
|
+ public static function heroextra_level_tupo_getItem($heroId, $starLv)
|
|
|
{
|
|
|
- return self::get_hash_item('tupo_huanlingshi', $itemid);
|
|
|
+ return self::get_hash_item('heroextra_level_tupo', $heroId)->$starLv;
|
|
|
}
|
|
|
/**
|
|
|
* 商城
|