NICKNAME 檔裡
--發現機率減少
function Stealing (e)
e.Count = 100
end
--100%機率掘出2礦石
function StoneGet(e)
if math.random() <= 1.0 then
e.Count = e.Count * 2
end
end
--100%機率掘出2藥草
function HerbsGet(e)
if math.random() <= 1.0 then
e.Count = e.Count * 2
end
end
--金錢+500%
function MoneyGet(e)
e.Count = math.floor( e.Count * 5.0)