源战役
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
531 B

  1. %% ---------------------------------------------------------------------------
  2. %% @doc fake_role.hrl
  3. %% @author yanwf
  4. %% @since 2018-11-20
  5. %% @deprecated 假人属性头文件
  6. %% ---------------------------------------------------------------------------
  7. %% 假人配置
  8. -record(fake_role_cfg, {
  9. lv = 0 %% 假人等级
  10. , attr_list = []%% 属性列表
  11. , combat = 0 %% 战力
  12. }).
  13. %% 副本假人配置
  14. -record(dungeon_fake_role_cfg, {
  15. lv = 0 %% 假人等级
  16. , attr_list = []%% 属性列表
  17. , combat = 0 %% 战力
  18. }).