Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 10 additions & 15 deletions js/techtree.js
Original file line number Diff line number Diff line change
Expand Up @@ -1090,34 +1090,30 @@ function getDefaultTree() {


let marketlane = new Lane();
marketlane.rows.dark_1.push(building(FOLWARK));
marketlane.rows.feudal_1.push(building(MARKET));
marketlane.rows.feudal_2.push(unit(TRADE_CART));
marketlane.rows.castle_1.push(tech(COINAGE));
marketlane.rows.castle_2.push(tech(COINAGE));
marketlane.rows.castle_1.push(tech(CARAVAN));
marketlane.rows.imperial_1.push(tech(BANKING));
marketlane.rows.imperial_1.push(tech(GUILDS));
marketlane.rows.imperial_2.push(tech(GUILDS));
tree.lanes.push(marketlane);


let farmlane = new Lane();
farmlane.rows.dark_1.push(building(FOLWARK));
farmlane.rows.dark_1.push(building(MILL));
farmlane.rows.dark_2.push(building(FARM));
farmlane.rows.feudal_1.push(tech(HORSE_COLLAR));
farmlane.rows.castle_1.push(tech(HEAVY_PLOW));
farmlane.rows.imperial_1.push(tech(CROP_ROTATION));
tree.lanes.push(farmlane);


let milllane = new Lane();
milllane.rows.dark_1.push(building(MILL));
milllane.rows.feudal_1.push(tech(HORSE_COLLAR));
milllane.rows.feudal_1.push(tech(DOMESTICATION));
milllane.rows.castle_1.push(tech(HEAVY_PLOW));
milllane.rows.castle_1.push(tech(PASTORALISM));
milllane.rows.imperial_1.push(tech(CROP_ROTATION));
milllane.rows.imperial_1.push(tech(TRANSHUMANCE));
tree.lanes.push(milllane);


let pasturelane = new Lane();
pasturelane.rows.dark_1.push(building(PASTURE));
pasturelane.rows.feudal_1.push(tech(DOMESTICATION));
pasturelane.rows.castle_1.push(tech(PASTORALISM));
pasturelane.rows.imperial_1.push(tech(TRANSHUMANCE));
tree.lanes.push(pasturelane);


Expand Down Expand Up @@ -1304,7 +1300,6 @@ function getConnections() {
[b(LUMBER_CAMP), t(DOUBLE_BIT_AXE)],
[t(DOUBLE_BIT_AXE), t(BOW_SAW)],
[t(BOW_SAW), t(TWO_MAN_SAW)],
[b(MARKET), t(CARAVAN)],
[t(COINAGE), t(BANKING)],
[b(MARKET), u(TRADE_CART)],
[b(MILL), b(MARKET)],
Expand Down