-- BattleMod Support --

local ScriptLoaded = false

addHook("ThinkFrame", function()
	if not (ScriptLoaded)
		and CBW_Battle
		then
		ScriptLoaded = true
		local B = CBW_Battle
		
		CBW_Battle.SkinVars["flchan"] = {
			weight = 50,
			shields = 0
		}
	end
end)