|
@@ -3,7 +3,11 @@
|
|
|
// 由CodeGenerator创建。
|
|
|
// Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
|
|
|
// author: gwang
|
|
|
+<<<<<<< HEAD
|
|
|
// 日期: 2023-09-14 10:40:02
|
|
|
+=======
|
|
|
+ // 日期: 2023-09-18 18:43:33
|
|
|
+>>>>>>> 1cb5067 (更新刷表工具)
|
|
|
////////////////////
|
|
|
|
|
|
/**
|
|
@@ -493,7 +497,7 @@ class GameConfig {
|
|
|
return self::get_hash_item('active_day7_accumulate', $itemid);
|
|
|
}
|
|
|
/**
|
|
|
- * 装备: 品阶表
|
|
|
+ * 装备合成(进化)品阶表
|
|
|
* @return \equip_evolve
|
|
|
*/
|
|
|
public static function equip_evolve()
|
|
@@ -504,9 +508,9 @@ class GameConfig {
|
|
|
/**
|
|
|
* @return \sm_equip_evolve equip_evolve item数据
|
|
|
*/
|
|
|
- public static function equip_evolve_getItem($qual, $posId)
|
|
|
+ public static function equip_evolve_getItem($rarity, $qual, $posId)
|
|
|
{
|
|
|
- return self::get_hash_item('equip_evolve', $qual)->$posId;
|
|
|
+ return self::get_hash_item('equip_evolve', "$rarity-$qual-$posId");
|
|
|
}
|
|
|
/**
|
|
|
* 装备合成表
|
|
@@ -538,7 +542,7 @@ class GameConfig {
|
|
|
*/
|
|
|
public static function plot_getItem($gateId, $stage)
|
|
|
{
|
|
|
- return self::get_hash_item('plot', $gateId)->$stage;
|
|
|
+ return self::get_hash_item('plot', "$gateId-$stage");
|
|
|
}
|
|
|
/**
|
|
|
* buff配置表
|
|
@@ -557,6 +561,38 @@ class GameConfig {
|
|
|
return self::get_hash_item('buff', $itemid);
|
|
|
}
|
|
|
/**
|
|
|
+ * 每日任务累计表
|
|
|
+ * @return \task_accumulate
|
|
|
+ */
|
|
|
+ public static function task_accumulate()
|
|
|
+ {
|
|
|
+ static $a = null;
|
|
|
+ return self::initValue($a, 'task_accumulate');
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return \sm_task_accumulate task_accumulate item数据
|
|
|
+ */
|
|
|
+ public static function task_accumulate_getItem($itemid)
|
|
|
+ {
|
|
|
+ return self::get_hash_item('task_accumulate', $itemid);
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * 任务表
|
|
|
+ * @return \task_step
|
|
|
+ */
|
|
|
+ public static function task_step()
|
|
|
+ {
|
|
|
+ static $a = null;
|
|
|
+ return self::initValue($a, 'task_step');
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @return \sm_task_step task_step item数据
|
|
|
+ */
|
|
|
+ public static function task_step_getItem($itemid)
|
|
|
+ {
|
|
|
+ return self::get_hash_item('task_step', $itemid);
|
|
|
+ }
|
|
|
+ /**
|
|
|
* 当前版本(时间戳)
|
|
|
* @return \ver
|
|
|
*/
|