summaryrefslogtreecommitdiff
path: root/lib/core/player.lua
blob: deec2e21d054276411a43d18073d8578b04050d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- SYSTEM FILE
--
-- Lua player funtions
--

-------- skill stuff ---------

-- Easy skill access
function skill(i)
	return s_info[i + 1]
end

-- easier inventory access
function player.inventory(i)
	return player.inventory_real[i + 1]
end