|
@@ -3,9 +3,10 @@
|
|
|
// 由CodeGenerator创建。
|
|
|
// Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
|
|
|
// author: gwang
|
|
|
- // 日期: 2021-05-26 15:00:33
|
|
|
+ // 日期: 2021-06-01 17:38:58
|
|
|
////////////////////
|
|
|
namespace loyalsoft;
|
|
|
+
|
|
|
/**
|
|
|
* 常量配置数据
|
|
|
*/
|
|
@@ -118,6 +119,22 @@ class GameConfig {
|
|
|
return self::get_hash_item('heroextra_level', $heroId)->$quality;
|
|
|
}
|
|
|
/**
|
|
|
+ * 武器等级
|
|
|
+ * @return \weapon_levelexp
|
|
|
+ */
|
|
|
+ public static function weapon_levelexp()
|
|
|
+ {
|
|
|
+ static $a = null;
|
|
|
+ return self::initValue($a, 'weapon_levelexp');
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return \sm_weapon_levelexp weapon_levelexp item数据
|
|
|
+ */
|
|
|
+ public static function weapon_levelexp_getItem($itemid)
|
|
|
+ {
|
|
|
+ return self::get_hash_item('weapon_levelexp', $itemid);
|
|
|
+ }
|
|
|
+ /**
|
|
|
* [废弃]
|
|
|
* @return \item
|
|
|
*/
|
|
@@ -150,6 +167,22 @@ class GameConfig {
|
|
|
return self::get_hash_item('itemlevel', $itemid);
|
|
|
}
|
|
|
/**
|
|
|
+ * 武器突破
|
|
|
+ * @return \weaponextra_level
|
|
|
+ */
|
|
|
+ public static function weaponextra_level()
|
|
|
+ {
|
|
|
+ static $a = null;
|
|
|
+ return self::initValue($a, 'weaponextra_level');
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return \sm_weaponextra_level weaponextra_level item数据
|
|
|
+ */
|
|
|
+ public static function weaponextra_level_getItem($itemid)
|
|
|
+ {
|
|
|
+ return self::get_hash_item('weaponextra_level', $itemid);
|
|
|
+ }
|
|
|
+ /**
|
|
|
* 英雄的升级——每级成长消耗经验需求表
|
|
|
* @return \hero_levelexp
|
|
|
*/
|
|
@@ -1368,6 +1401,22 @@ class GameConfig {
|
|
|
return self::get_hash_item('drop', $itemid);
|
|
|
}
|
|
|
/**
|
|
|
+ *
|
|
|
+ * @return \item_stones_type
|
|
|
+ */
|
|
|
+ public static function item_stones_type()
|
|
|
+ {
|
|
|
+ static $a = null;
|
|
|
+ return self::initValue($a, 'item_stones_type');
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return \sm_item_stones_type item_stones_type itemArray
|
|
|
+ */
|
|
|
+ public static function item_stones_type_getItemArray($key)
|
|
|
+ {
|
|
|
+ return self::get_hash_item('item_stones_type', $key);
|
|
|
+ }
|
|
|
+ /**
|
|
|
* 当前版本(时间戳)
|
|
|
* @return \ver
|
|
|
*/
|