--稱號「身無長物」，你可以在摘取藥草與挖礦時有40%機率獲得兩倍的物品，但你獲得的金錢會減少20%
function HerbsGet(e)
	if math.random() <= 1 then
		e.Count = e.Count * 2
	end
end

function StoneGet(e)
	if math.random() <= 1 then
		e.Count = e.Count * 2
	end
end

function MoneyGet(e)
	e.Count = math.floor( e.Count * 0.8)

end
