-- Idol FES Support --

-- NOTE: SRB2 is whiny about this one (in fact, it's the first thing that it's whiny about), but I can confirm that this works with Idol FES.

local idols = {}

local function createIdol(args)
	local idol = {}
	idol.name = args.name or ("Student" + tostring(#idols))
	idol.fullname = args.fullname or idol.name
	idol.attribute = args.attribute or "Smile"
	idol.image = args.image or "RICE"

	idols[idol.name] = idol
	table.insert(SIF_Menus.list["idols"].selections, idol)
	return idol
end

createIdol({
	name = "flchan1",
	fullname = "FL Studio Chan - Normal",
	attribute = "Pure",
	image = "FLCHAN"
})