Advertisement
shadowkat1010

crazy

Apr 22nd, 2014
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.80 KB | None | 0 0
  1. local component = require "component"
  2. local event = require "event"
  3.  
  4. --76.4
  5.  
  6. local game = {}
  7. game.inventory = {{"Derpy sword","Weapon",1,10}}
  8. game.loot = {{"Bow","Weapon",10,20},{"Rusty Sword","Weapon",20,30},{"Red Potion","Potion",math.random(-10,0),math.random(1,10)},{"Blue Potion","Potion",math.random(1,5),math.random(6,15)},{"Green Potion","Potion",math.random(1,15),math.random(16,25)},{"White Potion","Potion",math.random(1,20),math.random(20,40)}}
  9. game.pointer = 1
  10. game.hp = 100
  11. game.combat = false
  12. game.enemy={}
  13. game.enemy.name="derp"
  14. game.enemy.hp=255
  15. game.enemynames={"Space cat","derp","nortkrob","Tac ecaps"}
  16.  
  17. function game.output(text)
  18.  print(text)
  19. end
  20.  
  21. function game.input()
  22.  return(io.read())
  23. end
  24.  
  25. function game.loop()
  26.  while true do
  27.   coroutine.yield()
  28.   game.output("Current room: "..game.pointer)
  29.   game.output("Current HP: "..game.hp)
  30.   if game.combat ~= true then
  31.    local input = game.input()
  32.    if input == "go" then
  33.     game.pointer = game.pointer + 1
  34.     if math.random(0,1) == 1 then
  35.      game.combat = true
  36.      game.enemy.name=game.enemynames[math.random(1,#game.enemynames)]
  37.      game.enemy.hp=math.random(1,game.pointer+10)
  38.     end
  39.    elseif input == "use" then
  40.     game.output("Inventory slot")
  41.     local selection = game.input()
  42.     if game.inventory[tonumber(selection)][1]~= nil and tonumber(selection) ~= nil then
  43.      if game.inventory[tonumber(selection)][2] == "Weapon" then
  44.       game.output("There's nothing to fight here!")
  45.      elseif game.inventory[tonumber(selection)][2] == "Potion" then
  46.       local plusHP = math.random(game.inventory[tonumber(selection)][3],game.inventory[tonumber(selection)][4])
  47.       game.hp = game.hp+plusHP
  48.       game.inventory[tonumber(selection)]=nil
  49.      end
  50.     else
  51.      game.output("There's nothing in that slot!")
  52.     end
  53.    elseif input == "inventory" then
  54.     if game.inventory[1] ~= nil then
  55.      game.output("Inventory contents")
  56.      for k,v in pairs(game.inventory) do
  57.       game.output(k..": "..v[1].." : "..v[2])
  58.      end
  59.     else
  60.      game.output("Your inventory is empty!")
  61.     end
  62.    elseif input == "exit" then
  63.     break
  64.    end
  65.   else
  66.    game.output("Combat: "..game.enemy.name)
  67.    local input = game.input()
  68.    
  69.    if input == "exit" then
  70.     break
  71.    elseif input == "use" then
  72.     game.output("Inventory slot")
  73.     local selection = game.input()
  74.     if game.inventory[tonumber(selection)][1]~= nil and tonumber(selection) ~= nil then
  75.      if game.inventory[tonumber(selection)][2] == "Weapon" then
  76.       local remHP = math.random(game.inventory[tonumber(selection)][3],game.inventory[tonumber(selection)][4])
  77.       game.output("|<--- "..game.inventory[tonumber(selection)][1].." does ".. remHP .. " damage")
  78.       game.enemy.hp=game.enemy.hp-remHP
  79.      elseif game.inventory[tonumber(selection)][2] == "Potion" then
  80.       local plusHP = math.random(game.inventory[tonumber(selection)][3],game.inventory[tonumber(selection)][4])
  81.       game.hp = game.hp+plusHP
  82.       game.inventory[tonumber(selection)]=nil
  83.      end
  84.     else
  85.      game.output("There's nothing in that slot!")
  86.     end
  87.    elseif input == "inventory" then
  88.     if game.inventory[1] ~= nil then
  89.      game.output("Inventory contents")
  90.      for k,v in pairs(game.inventory) do
  91.       game.output(k..": "..v[1].." : "..v[2])
  92.      end
  93.     else
  94.      game.output("Your inventoy is empty!")
  95.     end
  96.    end
  97.   if game.enemy.hp < 1 then
  98.    game.output("You have won!")
  99.    game.combat=false
  100.    if math.random(0,1) == 1 then
  101.     table.insert(game.inventory,game.loot[math.random(1,#game.loot)])
  102.     game.output("Got loot!")
  103.    end
  104.   else
  105.    local rDamage = math.random(game.pointer,game.pointer+10)
  106.    game.output("--->| "..game.enemy.name.. " does " .. rDamage .. " damage")
  107.    game.hp = game.hp-rDamage
  108.   end
  109.   if game.hp < 1 then
  110.    game.output("You died, how tragic.")
  111.    break
  112.   end
  113.   end
  114.  end
  115.  game=nil
  116. end
  117.  
  118. game.loop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement