[Change] Increased merchant and pirate credits.

This commit is contained in:
Allanis 2013-08-14 10:53:20 +01:00
parent d4fe47f184
commit 76d7e811b5
2 changed files with 3 additions and 2 deletions

View File

@ -55,8 +55,9 @@ function attacked(attacker)
end
function create()
ai.setcredits(rnd.int(200, ai.shipprice()/100))
ai.setcredits(rnd.int(100, ai.shipprice()/50))
-- Some stuff has more chance than other.
num = rnd.int(12)
if num < 5 then
cargo = "Food"

View File

@ -69,7 +69,7 @@ end
function create()
if rnd.int(0,5) ~= 0 then
ai.setcredits(0, ai.shipprice()/300)
ai.setcredits(0, ai.shipprice()/100)
end
end