123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- namespace loyalsoft;
- /**
- * Description of Ins_YanLin
- *
- * @author cyzhao
- */
- class Ins_YanLin extends Object_ext {
- /**
- * 言灵id
- * @var type
- */
- public $typeId = 0;
- /**
- * 挂在的英雄的uid
- * @var type
- */
- public $herouid = 0;
- /**
- * 当前的经验
- * @var type
- */
- public $curStarExp = 0;
- /**
- * 当前的星级
- * @var type
- */
- public $starLv = 0;
- /**
- * 言灵的等级
- * @var type
- */
- public $level = 1;
-
- /**
- * 镶嵌宝石id
- * @var type
- */
- public $gemId = 0;
- public function __construct($args = null) {
- parent::__construct($args);
- }
- public function initialize($missId) {
-
- }
- /**
- * @return \sm_item_yanling mo
- */
- public function mo() {
- return GameConfig::item_yanling_getItem($this->typeId);
- }
- }
|