源战役
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.

24 lines
617 B

  1. %%-----------------------------------------------------------------------------
  2. %% @Module : evil_smashing.hrl
  3. %% @Author : J
  4. %% @Email : j-som@foxmail.com
  5. %% @Created : 2018-01-09
  6. %% @Description: 诛邪战场
  7. %%-----------------------------------------------------------------------------
  8. -record (smashing_state, {
  9. team_list = [],
  10. role_list = [],
  11. match_ref = undefined
  12. }).
  13. -record (smashing_match, {
  14. key = 0,
  15. type = 0,
  16. role_list = [],
  17. value = 0,
  18. step = 0,
  19. args = undefined
  20. }).
  21. -define (MATCH_TYPE_ROLE, 1).
  22. -define (MATCH_TYPE_TEAM, 2).