Added more wood to archipelago, islands and migration so that players can reach phase 2 to build a dock. Updated oasis to the current standard including ally placement and iberian wall. Replaced the polar cliff texture in random biome system.

This was SVN commit r12022.
This commit is contained in:
O.Davoodi 2012-06-26 08:54:00 +00:00
parent ad3f543d2c
commit 2cd95cfe1b
5 changed files with 6 additions and 9 deletions

View File

@ -166,7 +166,7 @@ for (var i = 0; i < numPlayers; i++)
var bbX = round(fx + bbDist * cos(bbAngle));
var bbZ = round(fz + bbDist * sin(bbAngle));
group = new SimpleGroup(
[new SimpleObject(oWood, 7,7, 0,3)],
[new SimpleObject(oWood, 14,14, 0,3)],
true, clBaseResource, bbX, bbZ
);
createObjectGroup(group, 0);

View File

@ -166,7 +166,7 @@ for (var i = 0; i < numPlayers; i++)
var bbX = round(fx + bbDist * cos(bbAngle));
var bbZ = round(fz + bbDist * sin(bbAngle));
group = new SimpleGroup(
[new SimpleObject(oWood, 7,7, 0,3)],
[new SimpleObject(oWood, 14,14, 0,3)],
true, clBaseResource, bbX, bbZ
);
createObjectGroup(group, 0);

View File

@ -186,7 +186,7 @@ for (var i = 0; i < numPlayers; i++)
var bbX = round(fx + bbDist * cos(bbAngle));
var bbZ = round(fz + bbDist * sin(bbAngle));
group = new SimpleGroup(
[new SimpleObject(oWood, 7,7, 0,3)],
[new SimpleObject(oWood, 14,14, 0,3)],
true, clBaseResource, bbX, bbZ
);
createObjectGroup(group, 0);

View File

@ -87,7 +87,7 @@ for (var i = 0; i < numPlayers; i++)
{
playerIDs.push(i+1);
}
playerIDs = shuffleArray(playerIDs);
playerIDs = sortPlayers(playerIDs);
// place players
@ -131,11 +131,8 @@ for (var i = 0; i < numPlayers; i++)
var painter = new LayeredPainter([tRoadWild, tRoad], [1]);
createArea(placer, painter, null);
// get civ specific starting entities
var civEntities = getStartingEntities(id-1);
// create starting units
createStartingPlayerEntities(fx, fz, id, civEntities, BUILDING_ANGlE)
placeCivDefaultEntities(fx, fz, id, BUILDING_ANGlE);
// create animals
for (var j = 0; j < 2; ++j)

File diff suppressed because one or more lines are too long