Browse Source

宝石配置

cyzhao 3 years ago
parent
commit
1920105e5c

+ 17 - 1
Gameserver/Amfphp/configs/GameConfig.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2021-11-09 10:50:24
+ // 日期: 2021-11-11 11:11:07
 ////////////////////
 namespace loyalsoft;
 /**
@@ -1560,6 +1560,22 @@ class GameConfig {
         return self::get_hash_item('expandStoreNum', $itemid);
     }
     /**
+    * 宝石属性
+    * @return \gemProperty
+    */
+    public static function gemProperty()
+    { 
+        static $a = null; 
+        return self::initValue($a, 'gemProperty');
+    }
+    /**
+    * @return \sm_gemProperty gemProperty item数据 
+    */
+    public static function gemProperty_getItem($itemid)
+    { 
+        return self::get_hash_item('gemProperty', $itemid);
+    }
+    /**
     * 当前版本(时间戳)
     * @return \ver
     */

+ 17 - 1
Gameserver/Amfphp/model/Const/GameConfig.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2021-11-10 10:01:06
+ // 日期: 2021-11-11 15:21:29
 ////////////////////
 
 /**
@@ -1560,6 +1560,22 @@ class GameConfig {
         return self::get_hash_item('expandStoreNum', $itemid);
     }
     /**
+    * 宝石属性
+    * @return \gemProperty
+    */
+    public static function gemProperty()
+    { 
+        static $a = null; 
+        return self::initValue($a, 'gemProperty');
+    }
+    /**
+    * @return \sm_gemProperty gemProperty item数据 
+    */
+    public static function gemProperty_getItem($itemid)
+    { 
+        return self::get_hash_item('gemProperty', $itemid);
+    }
+    /**
     * 当前版本(时间戳)
     * @return \ver
     */

+ 57 - 0
Gameserver/Amfphp/model/Const/sm_gemProperty.php

@@ -0,0 +1,57 @@
+<?php
+////////////////////
+ // 由CodeGenerator创建。
+ // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
+ // author: gwang 
+ // 日期: 2021-11-11 15:11:37
+////////////////////
+
+
+/**
+ * Static Model gemProperty 宝石属性
+ */
+class sm_gemProperty
+{
+
+    /**
+    * @var Int32 用途未知!!请到数据库中添加字段注释。  
+    */
+    public $tid;
+
+    /**
+    * @var Int32 用途未知!!请到数据库中添加字段注释。 default(0) 
+    */
+    public $id;
+
+    /**
+    * @var Int32 生命上限 default(0) 
+    */
+    public $additional_hpUpperlimit;
+
+    /**
+    * @var Int32 用途未知!!请到数据库中添加字段注释。 default(0) 
+    */
+    public $additional_phyDamage;
+
+    /**
+    * @var Int32 用途未知!!请到数据库中添加字段注释。 default(0) 
+    */
+    public $additional_magDamage;
+
+    /**
+    * @var Int32 用途未知!!请到数据库中添加字段注释。 default(0) 
+    */
+    public $additional_critDamage;
+
+    /**
+    * @var Int32 技能冷却时间 default(0) 
+    */
+    public $skillCoolTs;
+
+    /**
+    * @var String 用途未知!!请到数据库中添加字段注释。  
+    */
+    public $etc;
+
+}
+