def custom_mhp(ori_param)
if $game_actors[actor.id].xstat.con > 10
20 + (8 * ($game_actor[actor.id].xstat.con - 10))
else
20
end
end
def custom_mhp(ori_param)
if $game_actors.xstat.con > 10
20 + (8 * ($game_actors.xstat.con - 10))
else
20
end
end