summaryrefslogtreecommitdiff
path: root/lib/mods/theme/core/monsters.lua
blob: ca2851a051a6082010f19a6571c9022370de6a3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- SYSTEM FILE
--
-- Monster stuff, do not touch
--

function summon_monster(y, x, lev, friend, typ)
	if type(typ) == "number" then
		if friend == TRUE then
			return summon_specific_friendly(y, x, lev, typ, FALSE)
		else
			return summon_specific(y, x, lev, typ)
		end
	else
		return summon_monster_aux(y, x, lev, friend, typ)
	end
end