home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 56 / CDPowerplay56Disc2.iso / demos / blade / data1.cab / Program_Executable_Files / Scripts / Combos / SlmCombos.py < prev    next >
Encoding:
Text File  |  2000-10-27  |  818 b   |  43 lines

  1.  
  2. ######################################################
  3. #
  4. # Create sets of attacks
  5. #
  6. #        - SLM -
  7. #
  8. ######################################################
  9.  
  10.  
  11. import Bladex
  12.  
  13. ATK_UNIQUE=0
  14. ATK_RANDOM=1
  15. ATK_SEQUENTIAL=2
  16.  
  17.  
  18.  
  19. ##############
  20. # Salamander #
  21. ##############
  22.  
  23. # Link my combos into Attacking Action Tables
  24. Bladex.SetActionEventTable("Slm","g_bite","ATTACKING")
  25. Bladex.SetActionEventTable("Slm","g_r","ATTACKING")
  26. Bladex.SetActionEventTable("Slm","spit","ATTACKING")
  27.  
  28. Slm=Bladex.GetCharType("Salamander","Slm")
  29.  
  30. #g_bite group
  31. Slm.AddAttack("g_bite","Slm_g_bite")
  32. Slm.AttackTypeFlag("g_bite",ATK_UNIQUE)
  33.  
  34. #g_r group
  35. Slm.AddAttack("g_r","Slm_g_r")
  36. Slm.AttackTypeFlag("g_r",ATK_UNIQUE)
  37.  
  38. #spit group
  39. Slm.AddAttack("spit","Slm_spit")
  40. Slm.AttackTypeFlag("spit",ATK_UNIQUE)
  41.  
  42.  
  43.