Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local component = require "component"
- local event = require "event"
- --76.4
- local game = {}
- game.inventory = {{"Derpy sword","Weapon",1,10}}
- 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)}}
- game.pointer = 1
- game.hp = 100
- game.combat = false
- game.enemy={}
- game.enemy.name="derp"
- game.enemy.hp=255
- game.enemynames={"Space cat","derp","nortkrob","Tac ecaps"}
- function game.output(text)
- print(text)
- end
- function game.input()
- return(io.read())
- end
- function game.loop()
- while true do
- coroutine.yield()
- game.output("Current room: "..game.pointer)
- game.output("Current HP: "..game.hp)
- if game.combat ~= true then
- local input = game.input()
- if input == "go" then
- game.pointer = game.pointer + 1
- if math.random(0,1) == 1 then
- game.combat = true
- game.enemy.name=game.enemynames[math.random(1,#game.enemynames)]
- game.enemy.hp=math.random(1,game.pointer+10)
- end
- elseif input == "use" then
- game.output("Inventory slot")
- local selection = game.input()
- if game.inventory[tonumber(selection)][1]~= nil and tonumber(selection) ~= nil then
- if game.inventory[tonumber(selection)][2] == "Weapon" then
- game.output("There's nothing to fight here!")
- elseif game.inventory[tonumber(selection)][2] == "Potion" then
- local plusHP = math.random(game.inventory[tonumber(selection)][3],game.inventory[tonumber(selection)][4])
- game.hp = game.hp+plusHP
- game.inventory[tonumber(selection)]=nil
- end
- else
- game.output("There's nothing in that slot!")
- end
- elseif input == "inventory" then
- if game.inventory[1] ~= nil then
- game.output("Inventory contents")
- for k,v in pairs(game.inventory) do
- game.output(k..": "..v[1].." : "..v[2])
- end
- else
- game.output("Your inventory is empty!")
- end
- elseif input == "exit" then
- break
- end
- else
- game.output("Combat: "..game.enemy.name)
- local input = game.input()
- if input == "exit" then
- break
- elseif input == "use" then
- game.output("Inventory slot")
- local selection = game.input()
- if game.inventory[tonumber(selection)][1]~= nil and tonumber(selection) ~= nil then
- if game.inventory[tonumber(selection)][2] == "Weapon" then
- local remHP = math.random(game.inventory[tonumber(selection)][3],game.inventory[tonumber(selection)][4])
- game.output("|<--- "..game.inventory[tonumber(selection)][1].." does ".. remHP .. " damage")
- game.enemy.hp=game.enemy.hp-remHP
- elseif game.inventory[tonumber(selection)][2] == "Potion" then
- local plusHP = math.random(game.inventory[tonumber(selection)][3],game.inventory[tonumber(selection)][4])
- game.hp = game.hp+plusHP
- game.inventory[tonumber(selection)]=nil
- end
- else
- game.output("There's nothing in that slot!")
- end
- elseif input == "inventory" then
- if game.inventory[1] ~= nil then
- game.output("Inventory contents")
- for k,v in pairs(game.inventory) do
- game.output(k..": "..v[1].." : "..v[2])
- end
- else
- game.output("Your inventoy is empty!")
- end
- end
- if game.enemy.hp < 1 then
- game.output("You have won!")
- game.combat=false
- if math.random(0,1) == 1 then
- table.insert(game.inventory,game.loot[math.random(1,#game.loot)])
- game.output("Got loot!")
- end
- else
- local rDamage = math.random(game.pointer,game.pointer+10)
- game.output("--->| "..game.enemy.name.. " does " .. rDamage .. " damage")
- game.hp = game.hp-rDamage
- end
- if game.hp < 1 then
- game.output("You died, how tragic.")
- break
- end
- end
- end
- game=nil
- end
- game.loop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement