Results 1 to 30 of 269

Thread: The Complete EDB Guide - discussion

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Finder of Little Oddities Senior Member Makanyane's Avatar
    Join Date
    Jan 2006
    Posts
    2,220

    Default Re: The Complete EDB Guide - discussion

    are you actually doing this for RTW? I ask because I'd seen you mainly in M2 forums.....

    if you were doing it in M2 I think you could script the event_counters used for building effect requirements so they switch on or off according to who is local player at the time... or do the effects not calculate until overall (slave) end turn, and not each faction's end turn?
    Not used mods before? Looking for something small and fun?!
    Download the:

  2. #2

    Default Re: The Complete EDB Guide - discussion

    Quote Originally Posted by Makanyane View Post
    are you actually doing this for RTW? I ask because I'd seen you mainly in M2 forums.....

    if you were doing it in M2 I think you could script the event_counters used for building effect requirements so they switch on or off according to who is local player at the time... or do the effects not calculate until overall (slave) end turn, and not each faction's end turn?
    No it's for M2(though the query is for both, since this is a RTW thread) and yeah I'm aware of that, but I'm more talking about the buildings themselves rather than the capabilities, which is why the initial question was for either platform is it possible to destroy an individual building in an individual settlement. The answer right now seems to be no, which is unfortunate but expected. I'll figure something out.

    As for when the effects calculate, I'm not entirely sure but that's something I wish I knew more about. I've noticed odd things when I did tests with recruit pools, but it's harder to observe for some of the other effects so we have to just hope it checks and applies them all at the same time. Whether or not the data is applied at turn end effective for the next turn, or it's just data which is saved, or it's all done at turn start, and whether or not the Kingdoms "PreFactionTurnStart" preempts this or not, are all things I wish I knew for certain.

  3. #3

    Default Re: The Complete EDB Guide - discussion

    I've read up on complex building capabilities before, and I recently downloaded RTR VII Fate of Empires and had a glimpse of this building code:

    Code:
    upgrades
    {
    metal_mine1 requires factions { all, } and hidden_resource not_used
    metal_mine1 requires factions { counter_faction, mini_faction, britons, } and hidden_resource metal and not building_present_min_level hinterland_raw_materials2 metal_mine2 
    metal_mine1 requires factions { counter_faction, mini_faction, britons, } and hidden_resource metal and building_present_min_level hinterland_raw_materials2 precious_metal_mine2
    metal_mine1 requires factions { rome_republic, } and building_present_min_level roman_govt roman_govt_2 and hidden_resource metal and not building_present_min_level hinterland_raw_materials2 metal_mine2 
    metal_mine1 requires factions { rome_republic, } and building_present_min_level roman_govt roman_govt_2 and hidden_resource metal and building_present_min_level hinterland_raw_materials2 precious_metal_mine2
    metal_mine1 requires factions { carthage, } and building_present_min_level carthage_govt_B carthage_govt2 and hidden_resource metal and not building_present_min_level hinterland_raw_materials2 metal_mine2 
    metal_mine1 requires factions { carthage, } and building_present_min_level carthage_govt_B carthage_govt2 and hidden_resource metal and building_present_min_level hinterland_raw_materials2 precious_metal_mine2
    metal_mine1 requires factions { epirus, } and building_present_min_level epirote_govt epirote_govt_2 and hidden_resource metal and not building_present_min_level hinterland_raw_materials2 metal_mine2 
    metal_mine1 requires factions { epirus, } and building_present_min_level epirote_govt epirote_govt_2 and hidden_resource metal and building_present_min_level hinterland_raw_materials2 precious_metal_mine2
    metal_mine1 requires factions { gauls, } and building_present_min_level keltoi_govt kelt_govt_2 and hidden_resource metal and not building_present_min_level hinterland_raw_materials2 metal_mine2 
    metal_mine1 requires factions { gauls, } and building_present_min_level keltoi_govt kelt_govt_2 and hidden_resource metal and building_present_min_level hinterland_raw_materials2 precious_metal_mine2
    metal_mine1 requires factions { spain, } and building_present_min_level iberian_govt iberian_govt_2 and hidden_resource metal and not building_present_min_level hinterland_raw_materials2 metal_mine2 
    metal_mine1 requires factions { spain, } and building_present_min_level iberian_govt iberian_govt_2 and hidden_resource metal and building_present_min_level hinterland_raw_materials2 precious_metal_mine2
    metal_mine1 requires factions { numidia, } and building_present_min_level base_government numidia_govt_2 and hidden_resource metal and not building_present_min_level hinterland_raw_materials2 metal_mine2 
    metal_mine1 requires factions { numidia, } and building_present_min_level base_government numidia_govt_2 and hidden_resource metal and building_present_min_level hinterland_raw_materials2 precious_metal_mine2
    }
    ...
    metal_mine1 requires factions { all, } and hidden_resource metal and not building_present_min_level hinterland_raw_materials3 metal_mine3 or factions { all, } and hidden_resource metal and building_present_min_level hinterland_raw_materials3 precious_metal_mine3
    {
    capability
    {
    }
    ...
    I'm curious as to why the building code had factions { all, } and ... or factions { all,} and ... because I read up a post a few years back that stated it would not work for the second set of building conditions.

  4. #4
    Anything that isn't 'member' Member Squid's Avatar
    Join Date
    Apr 2005
    Location
    Canada
    Posts
    596

    Default Re: The Complete EDB Guide - discussion

    For the life of me I can't find where the discussion occured (old age is rearing its ugly head again) but I was involved in a conversation over which file (descr_regions.txt or descr_strat.txt) took precedence for the ability to use resources in EDB. I can now absolutely confirm that the resource entries in DS matter and must be accurate. In RS 1.6 the Numidia region appears to have an elephant resource in it (located on the shore of a lake) and has elephant listed in the descr_regions.txt entry for the region. There are two elephant units that are recruitable in regions with an elephant resource, but these units are not recruitable in the Numidia region. The reason was that if you did a show_cursorstat on the tile with the elephant on it the elephant was not actually in the Numidia region (it was in the lake/sea region). Making no other change except to move the elephant resource in descr_strat into the Numidia region fixed the missing recruitment bug.

    Here's the link to the thread where the discussion took place: Elephants not recruitable in Numidia
    Last edited by Squid; 12-14-2009 at 19:33.

    -Trait/Ancillary/Building Editor

    "Two things are infinite: the universe and human stupidity;
    and I'm not sure about the universe." -----Albert Einstein

  5. #5
    Finder of Little Oddities Senior Member Makanyane's Avatar
    Join Date
    Jan 2006
    Posts
    2,220

    Default Re: The Complete EDB Guide - discussion

    erm, I think the distinction is that 'hidden_resources' have to be specified in descr_regions to work and normal 'resources' have to be in right location in descr_strat to work...

    so if EDB wants
    'and resource elephants'
    elephants need to be in right region location co-ordinate in descr_strat as you described

    but if it wants
    'and hidden_resource rome'
    then 'rome' just needs to be in descr_regions...

    or if you added "elephants" to top hidden_resources list of EDB you could use
    'and hidden_resource elephants'
    with it in DR only

    CA somewhat confused things by adding things that only really needed to be descr_strat 'resources' to descr_regions too....
    Last edited by Makanyane; 12-15-2009 at 23:35.
    Not used mods before? Looking for something small and fun?!
    Download the:

  6. #6
    Anything that isn't 'member' Member Squid's Avatar
    Join Date
    Apr 2005
    Location
    Canada
    Posts
    596

    Default Re: The Complete EDB Guide - discussion

    Yes that's exactly what I meant I was talking about resources not hidden_resources. I mention it because many mods put resources into descr_regions.txt when it appears to be unnecessary.

    -Trait/Ancillary/Building Editor

    "Two things are infinite: the universe and human stupidity;
    and I'm not sure about the universe." -----Albert Einstein

  7. #7

    Default Re: The Complete EDB Guide - discussion

    Quote Originally Posted by lim_lucky View Post
    I've read up on complex building capabilities before, and I recently downloaded RTR VII Fate of Empires and had a glimpse of this building code:

    Code:
    upgrades
    {
    metal_mine1 requires factions { all, } and hidden_resource not_used
    metal_mine1 requires factions { counter_faction, mini_faction, britons, } and hidden_resource metal and not building_present_min_level hinterland_raw_materials2 metal_mine2 
    metal_mine1 requires factions { counter_faction, mini_faction, britons, } and hidden_resource metal and building_present_min_level hinterland_raw_materials2 precious_metal_mine2
    metal_mine1 requires factions { rome_republic, } and building_present_min_level roman_govt roman_govt_2 and hidden_resource metal and not building_present_min_level hinterland_raw_materials2 metal_mine2 
    metal_mine1 requires factions { rome_republic, } and building_present_min_level roman_govt roman_govt_2 and hidden_resource metal and building_present_min_level hinterland_raw_materials2 precious_metal_mine2
    metal_mine1 requires factions { carthage, } and building_present_min_level carthage_govt_B carthage_govt2 and hidden_resource metal and not building_present_min_level hinterland_raw_materials2 metal_mine2 
    metal_mine1 requires factions { carthage, } and building_present_min_level carthage_govt_B carthage_govt2 and hidden_resource metal and building_present_min_level hinterland_raw_materials2 precious_metal_mine2
    metal_mine1 requires factions { epirus, } and building_present_min_level epirote_govt epirote_govt_2 and hidden_resource metal and not building_present_min_level hinterland_raw_materials2 metal_mine2 
    metal_mine1 requires factions { epirus, } and building_present_min_level epirote_govt epirote_govt_2 and hidden_resource metal and building_present_min_level hinterland_raw_materials2 precious_metal_mine2
    metal_mine1 requires factions { gauls, } and building_present_min_level keltoi_govt kelt_govt_2 and hidden_resource metal and not building_present_min_level hinterland_raw_materials2 metal_mine2 
    metal_mine1 requires factions { gauls, } and building_present_min_level keltoi_govt kelt_govt_2 and hidden_resource metal and building_present_min_level hinterland_raw_materials2 precious_metal_mine2
    metal_mine1 requires factions { spain, } and building_present_min_level iberian_govt iberian_govt_2 and hidden_resource metal and not building_present_min_level hinterland_raw_materials2 metal_mine2 
    metal_mine1 requires factions { spain, } and building_present_min_level iberian_govt iberian_govt_2 and hidden_resource metal and building_present_min_level hinterland_raw_materials2 precious_metal_mine2
    metal_mine1 requires factions { numidia, } and building_present_min_level base_government numidia_govt_2 and hidden_resource metal and not building_present_min_level hinterland_raw_materials2 metal_mine2 
    metal_mine1 requires factions { numidia, } and building_present_min_level base_government numidia_govt_2 and hidden_resource metal and building_present_min_level hinterland_raw_materials2 precious_metal_mine2
    }
    ...
    metal_mine1 requires factions { all, } and hidden_resource metal and not building_present_min_level hinterland_raw_materials3 metal_mine3 or factions { all, } and hidden_resource metal and building_present_min_level hinterland_raw_materials3 precious_metal_mine3
    {
    capability
    {
    }
    ...
    I'm curious as to why the building code had factions { all, } and ... or factions { all,} and ... because I read up a post a few years back that stated it would not work for the second set of building conditions.
    Obviously "requires factions { all, }" isn't needed since the result is always true, it just looks better to have a "requires factions { x, }" I guess :P

    Though since we did add the faction requirement, it seems logic to me that it has been added two times. Because the "or" in that line, splits the requirement in two parts. Meaning that if you would only have one faction requirement, the first part of the requirement does have a faction requirement, while the second part (after the "or") wouldn't have a faction requirement. I didn't get any errors or something with it, so even if it does get ignored, it's always true anyway... So who cares? :)

    RTR VII Developer

  8. #8

    Default Re: The Complete EDB Guide - discussion

    Quote Originally Posted by PatricianS View Post
    Obviously "requires factions { all, }" isn't needed since the result is always true, it just looks better to have a "requires factions { x, }" I guess :P

    I didn't get any errors or something with it, so even if it does get ignored, it's always true anyway... So who cares? :)
    =D ok. Thanks for the reply, I just wanted to know whether there was something 'new' so that it could be of some use for EDB.

  9. #9

    Question Re: The Complete EDB Guide - discussion

    I'm kinda in jam with the game, after I modded the EDB file to allow spain, carthage, numidia, and some of the greeks to have a more fair tech tree (Spain not being forced to recruit only crappy slingers and (expensive upkeep) peltasts, along with other similar changes), RTW CTD's before I even get to the main menu . I tried to fix the EDB file to its original state but the game keeps crashing! Is there anything I did wrong with the file? (The parts shown are the parts that had been modified and then "fixed".)

    Code:
    building barracks
    {
        levels muster_field militia_barracks city_barracks army_barracks royal_barracks 
        {
            muster_field requires factions { barbarian, carthaginian, eastern, parthia, egyptian, greek, roman, } 
            {
                capability
                {
                    recruit "carthaginian city millita"  0  requires factions { spain, } 
                    recruit "barb infantry briton"  0  requires factions { britons, } 
                    recruit "barb infantry dacian"  0  requires factions { dacia, } 
                    recruit "barb infantry gaul"  0  requires factions { gauls, } 
                    recruit "warband spear german"  0  requires factions { germans, } 
                    recruit "barb horse archers scythian"  0  requires factions { scythia, } 
                    recruit "carthaginian city millita"  0  requires factions { carthage, } 
                    recruit "numidian javelinmen"  0  requires factions { numidia, } 
                    recruit "east infantry"  0  requires factions { eastern, } 
                    recruit "egyptian nubian spearmen"  0  requires factions { egyptian, } 
                    recruit "greek hoplite militia"  0  requires factions { greek, } 
                    recruit "roman city militia"  0  requires factions { roman, } 
                }
                construction  2 
                cost  600 
                settlement_min town
                upgrades
                {
                    militia_barracks
                }
            }
            militia_barracks requires factions { barbarian, carthaginian, eastern, parthia, egyptian, greek, roman, } 
            {
                capability
                {
                    recruit "carthaginian city millita"  0  requires factions { spain, }  
    		recruit "carthaginian infantry"  0  requires factions { spain, } 
                    recruit "barb infantry briton"  0  requires factions { britons, } 
                    recruit "barb infantry dacian"  0  requires factions { dacia, } 
                    recruit "barb infantry gaul"  0  requires factions { gauls, } 
                    recruit "warband spear german"  0  requires factions { germans, } 
                    recruit "barb horse archers scythian"  0  requires factions { scythia, } 
                    recruit "warband sword briton"  0  requires factions { britons, } 
                    recruit "warband sword gaul"  0  requires factions { gauls, } 
                    recruit "warband axe german"  0  requires factions { germans, } 
                    recruit "warband axe scythian"  0  requires factions { scythia, } 
                    recruit "warband falx dacian"  0  requires factions { dacia, } 
                    recruit "carthaginian city millita"  0  requires factions { carthage, } 
                    recruit "carthaginian infantry"  0  requires factions { carthage, } 
                    recruit "numidian javelinmen"  0  requires factions { numidia, } 
                    recruit "numidian desert warriors"  0  requires factions { numidia, } 
                    recruit "east hillmen"  0  requires factions { eastern, } 
                    recruit "east infantry"  0  requires factions { eastern, } 
                    recruit "egyptian nubian spearmen"  0  requires factions { egyptian, } 
                    recruit "egyptian nile infantry"  0  requires factions { egyptian, } 
                    recruit "greek hoplite militia"  0  requires factions { greek, } 
                    recruit "greek levy pikemen"  0  requires factions { seleucid, macedon, } 
                    recruit "warband falx thracian"  0  requires factions { thrace, } 
                    recruit "greek hoplite"  0  requires factions { greek_cities, } 
                    recruit "roman city militia"  0  requires factions { roman, } 
                    recruit "roman hastati"  0  requires factions { roman, }  and not marian_reforms 
                    recruit "roman infantry auxillia"  0  requires factions { roman, }  and marian_reforms 
                }
                construction  3 
                cost  1200 
                settlement_min large_town
                upgrades
                {
                    city_barracks
                }
            }
            city_barracks requires factions { barbarian, carthaginian, armenia, pontus,, egyptian, greek, roman, } 
            {
                capability
                {
                    recruit "carthaginian city millita"  0  requires factions { spain, } 
                    recruit "carthaginian infantry"  0  requires factions { spain, } 
                    recruit "spanish scutarii"  0  requires factions { spain, }
                    recruit "barb infantry briton"  0  requires factions { britons, } 
                    recruit "barb infantry dacian"  0  requires factions { dacia, } 
                    recruit "barb infantry gaul"  0  requires factions { gauls, } 
                    recruit "warband spear german"  0  requires factions { germans, } 
                    recruit "barb horse archers scythian"  0  requires factions { scythia, } 
                    recruit "warband sword briton"  0  requires factions { britons, } 
                    recruit "warband sword gaul"  0  requires factions { gauls, } 
                    recruit "warband axe german"  0  requires factions { germans, } 
                    recruit "warband falx dacian"  0  requires factions { dacia, } 
                    recruit "barb warguard gaul"  0  requires factions { gauls, } 
                    recruit "barb warguard briton"  0  requires factions { britons, } 
                    recruit "barb warguard dacian"  0  requires factions { dacia, } 
                    recruit "warband dhaxe german"  0  requires factions { germans, } 
                    recruit "warband axe scythian"  1  requires factions { scythia, } 
                    recruit "carthaginian city millita"  0  requires factions { carthage, } 
                    recruit "carthaginian infantry"  0  requires factions { carthage, } 
                    recruit "numidian javelinmen"  0  requires factions { numidia, } 
                    recruit "carthaginian medium infantry"  0  requires factions { carthage, } 
                    recruit "numidian desert warriors"  1  requires factions { numidia, } 
                    recruit "east hillmen"  0  requires factions { eastern, } 
                    recruit "east infantry"  0  requires factions { eastern, } 
                    recruit "east heavy infantry"  0  requires factions { armenia, } 
                    recruit "east hoplite"  0  requires factions { pontus, } 
                    recruit "egyptian nubian spearmen"  0  requires factions { egyptian, } 
                    recruit "egyptian nile infantry"  0  requires factions { egyptian, } 
                    recruit "egyptian infantry"  0  requires factions { egyptian, } 
                    recruit "greek hoplite militia"  0  requires factions { greek, } 
                    recruit "greek levy pikemen"  0  requires factions { seleucid, macedon, } 
                    recruit "warband falx thracian"  0  requires factions { thrace, } 
                    recruit "greek hoplite"  0  requires factions { greek_cities, } 
                    recruit "greek pikemen"  0  requires factions { thrace, seleucid, macedon, } 
                    recruit "greek hoplite elite"  0  requires factions { greek_cities, } 
                    recruit "roman city militia"  0  requires factions { roman, } 
                    recruit "roman hastati"  0  requires factions { roman, }  and not marian_reforms 
                    recruit "roman infantry auxillia"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman princeps"  0  requires factions { roman, }  and not marian_reforms 
                    recruit "roman legionary cohort i"  0  requires factions { roman, }  and marian_reforms 
                }
                construction  4 
                cost  2400 
                settlement_min city
                upgrades
                {
                    army_barracks
                }
            }
            army_barracks requires factions { carthaginian, armenia, pontus,, egyptian, greek, roman, } 
            {
                capability
                {
                    recruit "carthaginian city millita"  0  requires factions { spain, } 
    		recruit "carthaginian infantry"  0  requires factions { spain, } 
                    recruit "spanish scutarii"  0  requires factions { spain, } 
                    recruit "barb infantry briton"  0  requires factions { britons, } 
                    recruit "barb infantry dacian"  0  requires factions { dacia, } 
                    recruit "barb infantry gaul"  0  requires factions { gauls, } 
                    recruit "warband spear german"  0  requires factions { germans, } 
                    recruit "barb horse archers scythian"  0  requires factions { scythia, } 
                    recruit "warband sword briton"  0  requires factions { britons, } 
                    recruit "warband sword gaul"  0  requires factions { gauls, } 
                    recruit "warband axe german"  0  requires factions { germans, } 
                    recruit "warband falx dacian"  0  requires factions { dacia, } 
                    recruit "barb warguard gaul"  0  requires factions { gauls, } 
                    recruit "barb warguard briton"  0  requires factions { britons, } 
                    recruit "barb warguard dacian"  0  requires factions { dacia, } 
                    recruit "warband dhaxe german"  0  requires factions { germans, } 
                    recruit "warband axe scythian"  1  requires factions { scythia, } 
                    recruit "carthaginian city millita"  0  requires factions { carthage, } 
                    recruit "carthaginian infantry"  0  requires factions { carthage, } 
                    recruit "numidian javelinmen"  0  requires factions { numidia, } 
                    recruit "numidian desert warriors"  1  requires factions { numidia, } 
    		recruit "carthaginian medium infantry"  0  requires factions { carthage, } 
                    recruit "carthaginian heavy infantry"  0  requires factions { carthage, } 
                    recruit "numidian legionaries"  0  requires factions { numidia, } 
                    recruit "east hillmen"  0  requires factions { eastern, } 
                    recruit "east infantry"  0  requires factions { eastern, } 
                    recruit "east heavy infantry"  0  requires factions { armenia, } 
                    recruit "east hoplite"  0  requires factions { pontus, } 
                    recruit "east hoplite brazen shield"  0  requires factions { pontus, } 
                    recruit "east legionary"  0  requires factions { armenia, } 
                    recruit "egyptian nubian spearmen"  0  requires factions { egyptian, } 
                    recruit "egyptian nile infantry"  0  requires factions { egyptian, } 
                    recruit "egyptian infantry"  0  requires factions { egyptian, } 
                    recruit "egyptian elite guards"  0  requires factions { egyptian, } 
                    recruit "greek hoplite militia"  0  requires factions { greek, } 
                    recruit "greek levy pikemen"  0  requires factions { seleucid, macedon, } 
                    recruit "warband falx thracian"  0  requires factions { thrace, } 
                    recruit "greek hoplite"  1  requires factions { greek_cities, } 
                    recruit "greek pikemen"  0  requires factions { thrace, seleucid, macedon, } 
                    recruit "greek hoplite elite"  0  requires factions { greek_cities, } 
                    recruit "greek royal pikemen"  0  requires factions { macedon, } 
                    recruit "greek silver shield pikemen"  0  requires factions { seleucid, } 
                    recruit "greek hoplite spartan"  0  requires factions { greek_cities, }  and hidden_resource sparta
                    recruit "greek bastarnae"  0  requires factions { thrace, } 
                    recruit "roman city militia"  0  requires factions { roman, } 
                    recruit "roman hastati"  0  requires factions { roman, }  and not marian_reforms 
                    recruit "roman infantry auxillia"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman princeps"  0  requires factions { roman, }  and not marian_reforms 
                    recruit "roman legionary cohort i"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman legionary first cohort i"  0  requires factions { roman, }  and hidden_resource rome and marian_reforms 
                    recruit "roman triarii"  0  requires factions { roman, }  and not marian_reforms 
                    recruit "roman legionary cohort ii"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman praetorian cohort i"  0  requires factions { roman, }  and marian_reforms 
                }
                construction  6 
                cost  4800 
                settlement_min large_city
                upgrades
                {
                    royal_barracks
                }
            }
            royal_barracks requires factions { seleucid, roman, } 
            {
                capability
                {
                    recruit "carthaginian city millita"  0  requires factions { carthage, }                 
    		recruit "carthaginian infantry"  0  requires factions { spain, } 
                    recruit "spanish scutarii"  0  requires factions { spain, } 
                    recruit "barb infantry briton"  0  requires factions { britons, } 
                    recruit "barb infantry dacian"  0  requires factions { dacia, } 
                    recruit "barb infantry gaul"  0  requires factions { gauls, } 
                    recruit "warband spear german"  0  requires factions { germans, } 
                    recruit "barb horse archers scythian"  0  requires factions { scythia, } 
                    recruit "warband sword briton"  0  requires factions { britons, } 
                    recruit "warband sword gaul"  0  requires factions { gauls, } 
                    recruit "warband axe german"  0  requires factions { germans, } 
                    recruit "warband falx dacian"  0  requires factions { dacia, } 
                    recruit "barb warguard gaul"  0  requires factions { gauls, } 
                    recruit "barb warguard briton"  0  requires factions { britons, } 
                    recruit "barb warguard dacian"  0  requires factions { dacia, } 
                    recruit "warband dhaxe german"  0  requires factions { germans, } 
                    recruit "warband axe scythian"  1  requires factions { scythia, }
                    recruit "carthaginian city millita"  0  requires factions { carthage, }  
                    recruit "carthaginian infantry"  3  requires factions { carthage, } 
                    recruit "numidian javelinmen"  0  requires factions { numidia, } 
                    recruit "numidian desert warriors"  1  requires factions { numidia, } 
                    recruit "carthaginian medium infantry"  2  requires factions { carthage, } 
                    recruit "carthaginian heavy infantry"  1  requires factions { carthage, } 
                    recruit "numidian legionaries"  0  requires factions { numidia, } 
                    recruit "east hillmen"  0  requires factions { eastern, } 
                    recruit "east infantry"  0  requires factions { eastern, } 
                    recruit "east heavy infantry"  0  requires factions { armenia, } 
                    recruit "east hoplite"  0  requires factions { pontus, } 
                    recruit "east hoplite brazen shield"  0  requires factions { pontus, } 
                    recruit "east legionary"  0  requires factions { armenia, } 
                    recruit "egyptian nubian spearmen"  0  requires factions { egyptian, } 
                    recruit "egyptian nile infantry"  0  requires factions { egyptian, } 
                    recruit "egyptian infantry"  0  requires factions { egyptian, } 
                    recruit "egyptian elite guards"  0  requires factions { egyptian, } 
                    recruit "greek hoplite militia"  0  requires factions { greek, } 
                    recruit "greek levy pikemen"  0  requires factions { seleucid, macedon, } 
                    recruit "warband falx thracian"  0  requires factions { thrace, } 
                    recruit "greek hoplite"  1  requires factions { greek_cities, } 
                    recruit "greek pikemen"  0  requires factions { thrace, seleucid, macedon, } 
                    recruit "greek hoplite elite"  0  requires factions { greek_cities, } 
                    recruit "greek royal pikemen"  0  requires factions { macedon, } 
                    recruit "greek silver shield pikemen"  0  requires factions { seleucid, } 
                    recruit "greek hoplite spartan"  0  requires factions { greek_cities, }  and hidden_resource sparta
                    recruit "greek bastarnae"  0  requires factions { thrace, } 
                    recruit "greek argyraspid"  0  requires factions { seleucid, } 
                    recruit "roman city militia"  0  requires factions { roman, } 
                    recruit "roman hastati"  0  requires factions { roman, }  and not marian_reforms 
                    recruit "roman infantry auxillia"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman princeps"  0  requires factions { roman, }  and not marian_reforms 
                    recruit "roman legionary cohort i"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman legionary first cohort i"  0  requires factions { roman, }  and hidden_resource rome and marian_reforms 
                    recruit "roman triarii"  1  requires factions { roman, }  and not marian_reforms 
                    recruit "roman legionary cohort ii"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman legionary first cohort ii"  0  requires factions { roman, }  and hidden_resource rome and marian_reforms 
                    recruit "roman praetorian cohort urban i"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman praetorian cohort i"  0  requires factions { roman, }  and marian_reforms 
                }
                construction  7 
                cost  9600 
                settlement_min huge_city
                upgrades
                {
                }
            }
        }
        plugins 
        {
        }
    }
    building equestrian
    {
        levels stables cavalry_barracks hippodrome circus_maximus 
        {
            stables requires factions { barbarian, carthaginian, eastern, parthia, egyptian, greek, roman, } 
            {
                capability
                {
                    recruit "carthaginian warhounds"  0  requires factions { spain, } 
                    recruit "carthaginian cavalry"  0  requires factions { spain, } 
                    recruit "barb cavalry gaul"  0  requires factions { gauls, } 
                    recruit "barb cavalry german"  0  requires factions { germans, } 
                    recruit "barb cavalry dacian"  0  requires factions { dacia, } 
                    recruit "barb cavalry scythian"  0  requires factions { scythia, } 
                    recruit "barb wardogs briton"  0  requires factions {  britons, } 
                    recruit "barb wardogs dacian"  0  requires factions { dacia, } 
                    recruit "barb wardogs gaul"  0  requires factions { gauls, } 
                    recruit "barb wardogs german"  0  requires factions { germans, } 
                    recruit "barb wardogs scythian"  0  requires factions { scythia, } 
                    recruit "carthaginian cavalry"  0  requires factions { carthage, } 
                    recruit "numidian cavalry"  0  requires factions { numidia, } 
                    recruit "east cavalry"  0  requires factions { pontus, } 
                    recruit "east horse archer"  0  requires factions { armenia, parthia, } 
                    recruit "egyptian cavalry"  0  requires factions { egyptian, } 
                    recruit "greek light lancer"  0  requires factions { macedon, } 
                    recruit "greek cavalry"  0  requires factions { seleucid, thrace, greek_cities, } 
                    recruit "roman medium cavalry"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman light cavalry"  0  requires factions { roman, }  and not marian_reforms 
                    recruit "roman wardogs"  0  requires factions { roman, } 
                }
                construction  3 
                cost  1200 
                settlement_min large_town
                upgrades
                {
                    cavalry_barracks
                }
            }
            cavalry_barracks requires factions { spain, scythia, germans, gauls, dacia, carthaginian, eastern, parthia, egyptian, greek, roman, } 
            {
                capability
                {
                    recruit "carthaginian warhounds"  0  requires factions { spain, } 
                    recruit "carthaginian cavalry"  0  requires factions { spain, } 
                    recruit "carthaginian medium cavalry"  0  requires factions { spain, } 
                    recruit "barb cavalry gaul"  0  requires factions { gauls, } 
                    recruit "barb cavalry german"  0  requires factions { germans, } 
                    recruit "barb cavalry dacian"  0  requires factions { dacia, } 
                    recruit "barb cavalry scythian"  0  requires factions { scythia, } 
                    recruit "barb wardogs briton"  0  requires factions {  britons, } 
                    recruit "barb wardogs dacian"  0  requires factions { dacia, } 
                    recruit "barb wardogs gaul"  0  requires factions { gauls, } 
                    recruit "barb wardogs german"  0  requires factions { germans, } 
                    recruit "barb wardogs scythian"  0  requires factions { scythia, } 
                    recruit "barb noble cavalry gaul"  0  requires factions { gauls, } 
                    recruit "barb noble cavalry german"  0  requires factions { germans, } 
                    recruit "barb noble cavalry dacian"  0  requires factions { dacia, } 
                    recruit "barb scythian nobles scythian"  0  requires factions { scythia, } 
                    recruit "barb noble horse archers scythian"  0  requires factions { scythia, } 
                    recruit "carthaginian cavalry"  0  requires factions { carthage, } 
                    recruit "numidian cavalry"  0  requires factions { numidia, } 
                    recruit "carthaginian medium cavalry"  0  requires factions { carthaginian, } 
                    recruit "carthaginian elephant forest"  0  requires factions { carthage, }  and resource elephants
                    recruit "numidian camel riders"  0  requires factions { numidia, }  and resource camels
                    recruit "east cavalry"  0  requires factions { pontus, } 
                    recruit "east horse archer"  0  requires factions { armenia, parthia, } 
                    recruit "east heavy cavalry"  0  requires factions { pontus, } 
                    recruit "east persian cavalry"  0  requires factions { parthia, } 
                    recruit "east cataphract archer"  0  requires factions { armenia, } 
                    recruit "egyptian cavalry"  0  requires factions { egyptian, } 
                    recruit "egyptian nubian cavalry"  0  requires factions { egyptian, } 
                    recruit "greek light lancer"  0  requires factions { macedon, } 
                    recruit "greek cavalry"  0  requires factions { seleucid, thrace, greek_cities, } 
                    recruit "greek medium cavalry"  0  requires factions { greek, } 
                    recruit "greek elephant small"  0  requires factions { seleucid, }  and resource elephants
                    recruit "roman cavalry auxillia"  0  requires factions { roman, } 
                    recruit "roman light cavalry"  0  requires factions { roman, }  and not marian_reforms 
                    recruit "roman medium cavalry"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman wardogs"  0  requires factions { roman, } 
                }
                construction  4 
                cost  2400 
                settlement_min city
                upgrades
                {
                    hippodrome
                }
            }
            hippodrome requires factions { carthage, eastern, parthia, egyptian, greek_cities, macedon, seleucid, roman, } 
            {
                capability
                {
                    recruit "carthaginian warhounds"  0  requires factions { spain, } 
                    recruit "carthaginian cavalry"  0  requires factions { spain, } 
                    recruit "carthaginian medium cavalry"  0  requires factions { spain, } 
                    recruit "barb cavalry gaul"  0  requires factions { gauls, } 
                    recruit "barb cavalry german"  0  requires factions { germans, } 
                    recruit "barb cavalry dacian"  0  requires factions { dacia, } 
                    recruit "barb cavalry scythian"  0  requires factions { scythia, } 
                    recruit "barb wardogs briton"  0  requires factions {  britons, } 
                    recruit "barb wardogs dacian"  0  requires factions { dacia, } 
                    recruit "barb wardogs gaul"  0  requires factions { gauls, } 
                    recruit "barb wardogs german"  0  requires factions { germans, } 
                    recruit "barb wardogs scythian"  0  requires factions { scythia, } 
                    recruit "barb noble cavalry gaul"  0  requires factions { gauls, } 
                    recruit "barb noble cavalry german"  0  requires factions { germans, } 
                    recruit "barb noble cavalry dacian"  0  requires factions { dacia, } 
                    recruit "barb scythian nobles scythian"  0  requires factions { scythia, } 
                    recruit "barb noble horse archers scythian"  0  requires factions { scythia, } 
                    recruit "carthaginian cavalry"  0  requires factions { carthage, } 
                    recruit "numidian cavalry"  0  requires factions { numidia, } 
                    recruit "carthaginian medium cavalry"  0  requires factions { carthaginian, } 
                    recruit "carthaginian elephant forest"  0  requires factions { carthage, }  and resource elephants
                    recruit "carthaginian elephant african"  0  requires factions { carthage, }  and resource elephants
                    recruit "numidian camel riders"  0  requires factions { numidia, }  and resource camels
                    recruit "east cavalry"  0  requires factions { pontus, } 
                    recruit "east horse archer"  0  requires factions { armenia, parthia, } 
                    recruit "east heavy cavalry"  0  requires factions { pontus, } 
                    recruit "east persian cavalry"  0  requires factions { parthia, } 
                    recruit "east cataphract archer"  0  requires factions { armenia, } 
                    recruit "east cappodocian cavalry"  0  requires factions { pontus, } 
                    recruit "east heavy cataphract"  0  requires factions { armenia, parthia, } 
                    recruit "east elephant"  0  requires factions { parthia, }  and resource elephants
                    recruit "egyptian cavalry"  0  requires factions { egyptian, } 
                    recruit "egyptian nubian cavalry"  0  requires factions { egyptian, } 
                    recruit "egyptian cleruch"  0  requires factions { egyptian, } 
                    recruit "egyptian bedouin"  0  requires factions { egyptian, }  and resource camels
                    recruit "greek light lancer"  0  requires factions { macedon, } 
                    recruit "greek cavalry"  0  requires factions { seleucid, thrace, } 
                    recruit "greek medium cavalry"  0  requires factions { greek, } 
                    recruit "greek elephant small"  0  requires factions { seleucid, }  and resource elephants
                    recruit "greek heavy cavalry"  0  requires factions { macedon, } 
                    recruit "east heavy cataphract"  0  requires factions { seleucid, } 
                    recruit "greek elephant african"  0  requires factions { seleucid, }  and resource elephants
                    recruit "greek incendiary pigs"  0  requires factions { greek_cities, } 
                    recruit "roman cavalry auxillia"  0  requires factions { roman, } 
                    recruit "roman light cavalry"  1  requires factions { roman, }  and not marian_reforms 
                    recruit "roman medium cavalry"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman heavy cavalry"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman wardogs"  0  requires factions { roman, } 
                    recruit "roman pigs"  0  requires factions { roman, } 
                    stage_races 1 requires factions { roman,}
                }
                construction  6 
                cost  4800 
                settlement_min large_city
                upgrades
                {
                    circus_maximus
                }
            }
            circus_maximus requires factions { carthage, parthia, macedon, seleucid, roman, } 
            {
                capability
                {
                    recruit "carthaginian warhounds"  0  requires factions { spain, } 
                    recruit "carthaginian cavalry"  0  requires factions { spain, } 
                    recruit "carthaginian medium cavalry"  0  requires factions { spain, } 
                    recruit "barb cavalry gaul"  0  requires factions { gauls, } 
                    recruit "barb cavalry german"  0  requires factions { germans, } 
                    recruit "barb cavalry dacian"  0  requires factions { dacia, } 
                    recruit "barb cavalry scythian"  0  requires factions { scythia, } 
                    recruit "barb wardogs briton"  0  requires factions {  britons, } 
                    recruit "barb wardogs dacian"  0  requires factions { dacia, } 
                    recruit "barb wardogs gaul"  0  requires factions { gauls, } 
                    recruit "barb wardogs german"  0  requires factions { germans, } 
                    recruit "barb wardogs scythian"  0  requires factions { scythia, } 
                    recruit "barb noble cavalry gaul"  0  requires factions { gauls, } 
                    recruit "barb noble cavalry german"  0  requires factions { germans, } 
                    recruit "barb noble cavalry dacian"  0  requires factions { dacia, } 
                    recruit "barb scythian nobles scythian"  0  requires factions { scythia, } 
                    recruit "barb noble horse archers scythian"  0  requires factions { scythia, } 
                    recruit "carthaginian cavalry"  0  requires factions { carthage, } 
                    recruit "numidian cavalry"  0  requires factions { numidia, } 
                    recruit "carthaginian medium cavalry"  0  requires factions { carthaginian, } 
                    recruit "carthaginian elephant forest"  0  requires factions { carthage, }  and resource elephants
                    recruit "carthaginian elephant african"  0  requires factions { carthage, }  and resource elephants
                    recruit "carthaginian elephant african cataphract"  0  requires factions { carthage, }  and resource elephants
                    recruit "numidian camel riders"  0  requires factions { numidia, }  and resource camels
                    recruit "carthaginian royal cavalry"  0  requires factions { carthage, } 
                    recruit "east cavalry"  0  requires factions { pontus, } 
                    recruit "east horse archer"  0  requires factions { armenia, parthia, } 
                    recruit "east heavy cavalry"  0  requires factions { pontus, } 
                    recruit "east persian cavalry"  0  requires factions { parthia, } 
                    recruit "east cataphract archer"  0  requires factions { armenia, } 
                    recruit "east cappodocian cavalry"  0  requires factions { pontus, } 
                    recruit "east heavy cataphract"  0  requires factions { armenia, parthia, } 
                    recruit "east elephant"  0  requires factions { parthia, }  and resource elephants
                    recruit "east camel cataphract"  0  requires factions { parthia, }  and resource camels
                    recruit "egyptian cavalry"  0  requires factions { egyptian, } 
                    recruit "egyptian nubian cavalry"  0  requires factions { egyptian, } 
                    recruit "egyptian cleruch"  0  requires factions { egyptian, } 
                    recruit "egyptian bedouin"  0  requires factions { egyptian, }  and resource camels
                    recruit "greek light lancer"  0  requires factions { macedon, } 
                    recruit "greek cavalry"  0  requires factions { seleucid, thrace, greek_cities, } 
                    recruit "greek medium cavalry"  0  requires factions { greek, } 
                    recruit "greek elephant small"  0  requires factions { seleucid, }  and resource elephants
                    recruit "greek heavy cavalry"  0  requires factions { macedon, } 
                    recruit "east heavy cataphract"  0  requires factions { seleucid, } 
                    recruit "greek elephant african"  0  requires factions { seleucid, }  and resource elephants
                    recruit "greek royal cavalry"  0  requires factions { seleucid, macedon, } 
                    recruit "greek elephant cataphract"  0  requires factions { seleucid, }  and resource elephants
                    recruit "greek incendiary pigs"  0  requires factions { greek_cities, } 
                    recruit "roman cavalry auxillia"  0  requires factions { roman, } 
                    recruit "roman light cavalry"  2  requires factions { roman, }  and not marian_reforms 
                    recruit "roman medium cavalry"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman heavy cavalry"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman praetorian cavalry"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman wardogs"  0  requires factions { roman, } 
                    recruit "roman pigs"  0  requires factions { roman, } 
                    stage_races 2 requires factions { roman,}
                }
                construction  7 
                cost  9600 
                settlement_min huge_city
                upgrades
                {
                }
            }
        }
        plugins 
        {
        }
    }
    building missiles
    {
        levels practice_field archery_range catapult_range siege_engineer 
        {
            practice_field requires factions { barbarian, carthaginian, eastern, parthia, egyptian, greek, roman, } 
            {
                capability
                {
    		recruit "carthaginian peltast"  0  requires factions { spain, } 
                    recruit "barb peltast gaul"  0  requires factions { gauls, } 
                    recruit "barb peltast german"  0  requires factions { germans, } 
                    recruit "barb slinger briton"  0  requires factions { britons, } 
                    recruit "barb archer dacian"  0  requires factions { dacia, } 
                    recruit "barb archer scythian"  0  requires factions { scythia, } 
                    recruit "carthaginian peltast"  0  requires factions { carthage, } 
                    recruit "carthaginian archer"  0  requires factions { numidia, } 
                    recruit "east peltast"  0  requires factions { armenia, pontus, } 
                    recruit "east slinger"  0  requires factions { parthia, } 
                    recruit "egyptian peltast"  0  requires factions { egyptian, } 
                    recruit "egyptian slingers"  0  requires factions { egyptian, } 
                    recruit "greek peltast"  0  requires factions { greek, } 
                    recruit "roman velite"  0  requires factions { roman, }  and not marian_reforms 
                    recruit "roman light infantry auxillia"  0  requires factions { roman, }  and marian_reforms 
                }
                construction  3 
                cost  1200 
                settlement_min large_town
                upgrades
                {
                    archery_range
                }
            }
            archery_range requires factions { spain, scythia, germans, gauls, dacia, carthaginian, eastern, parthia, egyptian, greek, roman, } 
            {
                capability
                {
                    recruit "carthaginian slinger"  0  requires factions { spain, } 
                    recruit "carthaginian peltast"  0  requires factions { spain, } 
                    recruit "barb peltast gaul"  0  requires factions { gauls, } 
                    recruit "barb peltast german"  0  requires factions { germans, } 
                    recruit "barb slinger briton"  0  requires factions { britons, } 
                    recruit "barb archer dacian"  0  requires factions { dacia, } 
                    recruit "barb archer scythian"  0  requires factions { scythia, } 
                    recruit "warband archer german"  0  requires factions { germans, } 
                    recruit "warband archer dacian"  0  requires factions { dacia, } 
                    recruit "warband archer scythian"  0  requires factions { scythia, } 
                    recruit "warband huntsman gaul"  0  requires factions { gauls, } 
                    recruit "barb ballista dacian"  0  requires factions { dacia, } 
                    recruit "barb onager dacian"  0  requires factions { dacia, } 
                    recruit "barb onager scythian"  0  requires factions { scythia, } 
                    recruit "carthaginian peltast"  0  requires factions { carthage, } 
                    recruit "carthaginian archer"  0  requires factions { numidia, } 
                    recruit "carthaginian slinger"  0  requires factions { carthaginian, } 
                    recruit "east peltast"  0  requires factions { armenia, pontus, } 
                    recruit "east slinger"  0  requires factions { parthia, } 
                    recruit "east archer"  0  requires factions { eastern, } 
                    recruit "egyptian peltast"  0  requires factions { egyptian, } 
                    recruit "egyptian slingers"  0  requires factions { egyptian, } 
                    recruit "egyptian archer"  0  requires factions { egyptian, } 
                    recruit "greek peltast"  0  requires factions { greek, } 
                    recruit "greek archer"  0  requires factions { greek, } 
                    recruit "greek ballista"  0  requires factions { macedon, greek_cities, } 
                    recruit "roman velite"  0  requires factions { roman, }  and not marian_reforms 
                    recruit "roman light infantry auxillia"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman archer"  0  requires factions { roman, }  and not marian_reforms 
                    recruit "roman archer auxillia"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman ballista"  0  requires factions { roman, } 
                }
                construction  4 
                cost  2400 
                settlement_min city
                upgrades
                {
                    catapult_range
                }
            }
            catapult_range requires factions { carthaginian, eastern, parthia, egyptian, greek, roman, } 
            {
                capability
                {
                    recruit "carthaginian slinger"  0  requires factions { spain, } 
                    recruit "carthaginian peltast"  0  requires factions { spain, }
                    recruit "barb peltast gaul"  0  requires factions { gauls, } 
                    recruit "barb peltast german"  0  requires factions { germans, } 
                    recruit "barb slinger briton"  0  requires factions { britons, } 
                    recruit "barb archer dacian"  0  requires factions { dacia, } 
                    recruit "barb archer scythian"  0  requires factions { scythia, } 
                    recruit "warband archer german"  0  requires factions { germans, } 
                    recruit "warband archer dacian"  0  requires factions { dacia, } 
                    recruit "warband archer scythian"  0  requires factions { scythia, } 
                    recruit "warband huntsman gaul"  0  requires factions { gauls, } 
                    recruit "barb ballista dacian"  0  requires factions { dacia, } 
                    recruit "barb onager dacian"  0  requires factions { dacia, } 
                    recruit "barb onager scythian"  0  requires factions { scythia, } 
                    recruit "carthaginian peltast"  0  requires factions { carthage, } 
                    recruit "carthaginian archer"  0  requires factions { numidia, } 
                    recruit "carthaginian slinger"  0  requires factions { carthaginian, } 
                    recruit "carthaginian onager"  0  requires factions { carthaginian, } 
                    recruit "east peltast"  0  requires factions { armenia, pontus, } 
                    recruit "east slinger"  0  requires factions { parthia, } 
                    recruit "east archer"  0  requires factions { eastern, } 
                    recruit "east onager"  0  requires factions { eastern, } 
                    recruit "egyptian peltast"  0  requires factions { egyptian, } 
                    recruit "egyptian slingers"  0  requires factions { egyptian, } 
                    recruit "egyptian archer"  0  requires factions { egyptian, } 
                    recruit "egyptian archer elite"  0  requires factions { egyptian, } 
                    recruit "egyptian onager"  0  requires factions { egyptian, } 
                    recruit "greek peltast"  0  requires factions { greek, } 
                    recruit "greek archer"  0  requires factions { greek, } 
                    recruit "greek ballista"  0  requires factions { macedon, greek_cities, } 
                    recruit "greek heavy peltast"  0  requires factions { greek_cities, } 
                    recruit "greek onager"  0  requires factions { greek, } 
                    recruit "roman velite"  0  requires factions { roman, }  and not marian_reforms 
                    recruit "roman light infantry auxillia"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman archer"  0  requires factions { roman, }  and not marian_reforms 
                    recruit "roman archer auxillia"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman ballista"  0  requires factions { roman, } 
                    recruit "roman scorpion"  0  requires factions { roman, } 
                    recruit "roman onager"  0  requires factions { roman, } 
                }
                construction  6 
                cost  4800 
                settlement_min large_city
                upgrades
                {
                    siege_engineer
                }
            }
            siege_engineer requires factions { carthage, egyptian, macedon, greek_cities, roman, } 
            {
                capability
                {
                    recruit "carthaginian slinger"  0  requires factions { spain, } 
                    recruit "carthaginian peltast"  0  requires factions { spain, }
                    recruit "barb peltast gaul"  0  requires factions { gauls, } 
                    recruit "barb peltast german"  0  requires factions { germans, } 
                    recruit "barb slinger briton"  0  requires factions { britons, } 
                    recruit "barb archer dacian"  0  requires factions { dacia, } 
                    recruit "barb archer scythian"  0  requires factions { scythia, } 
                    recruit "warband archer german"  0  requires factions { germans, } 
                    recruit "warband archer dacian"  0  requires factions { dacia, } 
                    recruit "warband archer scythian"  0  requires factions { scythia, } 
                    recruit "warband huntsman gaul"  0  requires factions { gauls, } 
                    recruit "barb ballista dacian"  0  requires factions { dacia, } 
                    recruit "barb onager dacian"  0  requires factions { dacia, } 
                    recruit "barb onager scythian"  0  requires factions { scythia, } 
                    recruit "carthaginian peltast"  0  requires factions { carthage, } 
                    recruit "carthaginian archer"  0  requires factions { numidia, } 
                    recruit "carthaginian slinger"  0  requires factions { carthaginian, } 
                    recruit "carthaginian onager"  0  requires factions { carthaginian, } 
                    recruit "carthaginian heavy onager"  0  requires factions { carthage, } 
                    recruit "east peltast"  0  requires factions { armenia, pontus, } 
                    recruit "east slinger"  0  requires factions { parthia, } 
                    recruit "east archer"  0  requires factions { eastern, } 
                    recruit "east onager"  0  requires factions { eastern, } 
                    recruit "egyptian peltast"  0  requires factions { egyptian, } 
                    recruit "egyptian slingers"  0  requires factions { egyptian, } 
                    recruit "egyptian archer"  0  requires factions { egyptian, } 
                    recruit "egyptian archer elite"  0  requires factions { egyptian, } 
                    recruit "egyptian onager"  0  requires factions { egyptian, } 
                    recruit "egyptian heavy onager"  0  requires factions { egyptian, } 
                    recruit "greek peltast"  0  requires factions { greek, } 
                    recruit "greek archer"  0  requires factions { greek, } 
                    recruit "greek ballista"  0  requires factions { macedon, greek_cities, } 
                    recruit "greek heavy peltast"  0  requires factions { greek_cities, } 
                    recruit "greek onager"  0  requires factions { greek, } 
                    recruit "greek heavy onager"  0  requires factions { macedon, greek_cities, } 
                    recruit "roman velite"  0  requires factions { roman, }  and not marian_reforms 
                    recruit "roman light infantry auxillia"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman archer"  0  requires factions { roman, }  and not marian_reforms 
                    recruit "roman archer auxillia"  0  requires factions { roman, }  and marian_reforms 
                    recruit "roman ballista"  0  requires factions { roman, } 
                    recruit "roman scorpion"  0  requires factions { roman, } 
                    recruit "roman onager"  0  requires factions { roman, } 
                    recruit "roman heavy onager"  0  requires factions { roman, } 
                    recruit "roman repeating ballista"  0  requires factions { roman, } 
                }
                construction  7 
                cost  9600 
                settlement_min huge_city
                upgrades
                {
                }
            }
        }
        plugins 
        {
        }
    }

  10. #10
    Anything that isn't 'member' Member Squid's Avatar
    Join Date
    Apr 2005
    Location
    Canada
    Posts
    596

    Default Re: The Complete EDB Guide - discussion

    What does -show_err say is the error on exiting?

    -Trait/Ancillary/Building Editor

    "Two things are infinite: the universe and human stupidity;
    and I'm not sure about the universe." -----Albert Einstein

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Single Sign On provided by vBSSO