The Wiki for Tale 5 is in read-only mode and is available for archival and reference purposes only. Please visit the current Tale 11 Wiki in the meantime.

If you have any issues with this Wiki, please post in #wiki-editing on Discord or contact Brad in-game.

Aqueduct Tower (First)/Amunet

From ATITD5
Jump to navigationJump to search

Building Requirements

To build a tower requires the materials for an Aqueduct Construction Site (1 canvas, 4 rope, 50 straw) plus:

Raising the tower

we need lot of Bricks, Cut stone and Clay pipe

A newly built tower has a height of 0 feet, i.e. the top of the tower is the same height as the ground. To support additional towers, the top of the tower must be raised. This requires variable amounts of:

To raise a tower, select "Raise the Aqueduct" and select how many feet to raise the tower by. You cannot raise the top of the tower to higher than 5 feet below the top of the next tower upstream. You must have all materials for the upgrade carried - the upgrade does not behave like a construction site. If you have sufficient materials, the tower is immediately raised to the new height. If you have insufficient materials, you'll get a popup telling you exactly what you need.

To raise a tower by a large amount, you will need carry food, or baskets onsite, or a helper to bring you materials, or do the raise in several steps.

Raising a tower from height h1 to height h2 requires f(h2) - f(h1) materials, where:

  • fbricks(x) =
    • 0 (if x=0); or
    • 2000+50*x (otherwise)
  • fconcrete(x) = 2*x
  • fcut stone(x) = int(1.5*x)
  • fpipe segments(x) =
    • 0 (if x=0); or
    • int(5 + x/50) (otherwise)

For example, raising a tower from height 0 to height 155 requries:

  • 2000+50*155 - 0 = 9,750 bricks
  • 2*155 - 2*0 = 310 concrete
  • int(1.5*155) - int(1.5*0) = 232 cut stone
  • int(5+155/50) - 0 = 8 pipe segments