<?php /* * Alliances Manager (Gestionador de Alianzas) - Travian * Copyright (C) 2008-12 Viva Mayer, Francisco MesÃas <hide@address.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ // Costos de las tropas Romanas // madera | barro | hierro | cereal | cargamento $UnitCost = array (); // Romanos $UnitCost[10] = array (120,100,180,40,40); // Legionario $UnitCost[11] = array (100,130,160,70,20); // Pretoriano $UnitCost[12] = array (150,160,210,80,50); // Imperano $UnitCost[13] = array (140,160,20,40,0); // Legati $UnitCost[14] = array (550,440,320,100,100); // Imperatoris $UnitCost[15] = array (550,640,800,180,70); // Caesaris $UnitCost[16] = array (900,360,500,70,0); // Carnero $UnitCost[17] = array (950,1350,600,90,0); // Catapulta $UnitCost[18] = array (30750,27200,4500,37500,0); // Senador $UnitCost[19] = array (5800,5300,7200,5500,3000); // Descubridor // Germanos $UnitCost[20] = array (95,75,40,40,60); // Lanzador porras $UnitCost[21] = array (145,70,85,40,40); // Luchador lanza $UnitCost[22] = array (130,120,170,70,50); // Luchador hacha $UnitCost[23] = array (160,100,50,50,0); // Emisario $UnitCost[24] = array (370,270,290,75,110); // Paladin $UnitCost[25] = array (450,515,480,80,80); // Caballista teutona $UnitCost[26] = array (1000,300,350,70,0); // Ariete $UnitCost[27] = array (900,1200,600,60,0); // Catapulta $UnitCost[28] = array (35500,26600,25000,27200,0); // Cabecilla $UnitCost[29] = array (7200,5500,5800,6500,3000); // Descubridor // Galos $UnitCost[30] = array (100,130,55,30,30); // Falange $UnitCost[31] = array (140,150,185,60,45); // Luchador espada $UnitCost[32] = array (170,150,20,40,0); // Batidor $UnitCost[33] = array (350,450,230,60,75); // Rayo $UnitCost[34] = array (360,330,280,120,35); // Druida $UnitCost[35] = array (500,620,675,170,65); // Haeduanos $UnitCost[36] = array (950,555,330,75,0); // Carnero $UnitCost[37] = array (960,1450,630,90,0); // Catapulta $UnitCost[38] = array (30750,45400,31000,37500,0); // Cacique $UnitCost[39] = array (5500,7000,5300,4900,3000); // Descubridor ?>