Advertisement
19891919

My encounter.lua file

Jul 30th, 2020
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.06 KB | None | 0 0
  1. -- A basic encounter script skeleton you can copy and modify for your own creations.
  2.  
  3. -- music = "shine_on_you_crazy_diamond" --Always OGG. Extension is added automatically. Remove the first two lines for custom music.
  4. encountertext = "Toriel is here to stop you!" --Modify as necessary. It will only be read out in the action select screen.
  5. nextwaves = {"bullettest_touhou"}
  6. wavetimer = 4.0
  7. arenasize = {155, 130}
  8.  
  9. enemies = {
  10. "Toriel"
  11. }
  12.  
  13. enemypositions = {
  14. {0, 0}
  15. }
  16.  
  17. SetGlobal("intro", true)
  18.  
  19. -- A custom list with attacks to choose from. Actual selection happens in EnemyDialogueEnding(). Put here in case you want to use it.
  20. possible_attacks = {"bullettest_bouncy", "bullettest_chaserorb", "bullettest_touhou"}
  21.  
  22. function EncounterStarting()
  23.     -- If you want to change the game state immediately, this is the place.
  24.     enemies[1].setVar("currentdialogue", {"After all you've \ndone, you want me to\n stand aside? \nAll I've got to say is \n[effect:shake][color:fca600]HECK NO!"})
  25.     State("ENEMYDIALOGUE")
  26.     Player.lv = 10
  27.     Player.hp = 56
  28.     Audio.LoadFile("toriel_theme") 
  29. end
  30.  
  31.     -- Good location for setting monster dialogue depending on how the battle is going.
  32.     enemies[1].SetVar("currentdialogue" {"[color:fca600][effect:shake]For the sake of a\n better ending\n I must\n\n\nDEFEAT YOU"})
  33.    
  34.  
  35. function EnemyDialogueEnding()
  36.     -- Good location to fill the 'nextwaves' table with the attacks you want to have simultaneously.
  37.     -- This example line below takes a random attack from 'possible_attacks'.
  38.     nextwaves = { possible_attacks[math.random(#possible_attacks)] }
  39. end
  40.  
  41. function DefenseEnding() --This built-in function fires after the defense round ends.
  42.     encountertext = RandomEncounterText() --This built-in function gets a random encounter text from a random enemy.
  43. end
  44.  
  45. function HandleSpare()
  46.      currentdialogue =  {"After all you've done, \nyou wantme to give up? \nAll I've got to say is \n[effect:shake][color:fca600]HECK NO!"}
  47. end
  48.  
  49. function HandleItem(ItemID)
  50.     BattleDialog({"You ate the " .. ItemID .. "."})
  51.     Player.heal(15)
  52. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement