Guest User

ayuda

a guest
Feb 7th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.17 KB | None | 0 0
  1. music = "bitch-lasagna"
  2. encountertext = "sientes que si no te suscribes\rvas a pasar un mal rato"
  3. wavetimer = 10.0
  4. arenazise = {150,130}
  5. ataque = 0
  6.  
  7. enemies = {"teseries"}
  8.  
  9. enemypositions = {{o,o}}
  10.  
  11. function Update()
  12.      
  13. end
  14.  
  15. function EncounterStarting()
  16.         Inventory.AddCustomItems({"galleta.subs", "pan.visitas"}, {0, 0})
  17.         Inventory.SetInventory({"galleta.subs", "pan.visitas"})
  18. end
  19.  
  20. function EnemyDialogueStarting()
  21.  
  22. end
  23.  
  24. function EnemyDialogueEnding()
  25.       if ataque == 1 then
  26.          nextwaves = {"ataque azul, naranja, verde"}
  27.       elseif ataque == 2 then
  28.       nextwaves = {"Ataque"}
  29.       elseif ataque == 3 then
  30.       nextwaves = {"Ataque", "ataque azul, naranja, verde"}
  31.       end
  32.      ataque = math.random(3)     
  33. end
  34.  
  35. function DefenseEnding()
  36.  
  37. end
  38.  
  39. function HandleSpare()
  40.      State("ENEMYDIALOGUE")
  41.      
  42. end
  43.  
  44. function HandleItem(ItemID)
  45. if ItemID == "galleta.subs" then
  46.          Player.Heal(10)
  47.          BattleDialog({"subes los suscriptores de pewds\nte sientes tan bien que te curas"})
  48. elseif ItemID == "pan.visitas" then
  49.             Player.Heal(5)
  50.             BattleDialog({"subes las visistas de pewds\nte encatnta tanto que te curas"})  
  51.  end
  52. end
Advertisement
Add Comment
Please, Sign In to add comment