Page 1 of 2 12 LastLast
Results 1 to 20 of 40

Thread: KH being able to build military colonies and Hellenistic poleis

  1. #1
    Roma_Victrix's Avatar Call me Ishmael
    Join Date
    Sep 2010
    Location
    Virginia, USA
    Posts
    15,242

    Default KH being able to build military colonies and Hellenistic poleis

    ANNOUNCEMENT, 12 May 2017: these instructions below are outdated for the current campaign script, according to Melvidh, who has provided new and much more simplified copy-and-paste instructions in his post here.

    Before the TWC forums got rolled back to 25 Dec 2015, I started a thread on this very topic, which QuintusSertorius was kind enough to answer in full. Unfortunately his posts as well as all of mine are now lost, but I can gladly fill in the blanks. If anyone else is interested in allowing Koinon Hellenon the ability to create military settler colonies ("colony_hellenistic", "levels helcol_one helcol_two helcol_three helcol_ref") and at least the first level of the Hellenistic polis ("hinterland_hellenistic_polis", "levels polis_one polis_two polis_three"), then you've come to the right place for instructions on how to do exactly that. You'll need to edit two particular files: "export_descr_buildings" found in EB II's main "data" folder, and the "campaign_script" file found in the following folder pathway: "EBII/data/world/maps/campaign/imperial_campaign".

    Just remember that this is not save-game compatible, but if you start a new Koinon Hellenon campaign, or any other campaign for that matter, it will work like a charm. Just remember to copy and back up both of the text files that will be edited, just in case you make a silly clerical mistake that causes your game to crash and no longer work. Such mistakes are easily undone if you have a backup handy. These files should also be edited with the software program Notepad++. If you don't already have Notepad++, then download it right now, because it will be useful to you with other projects later on, no doubt.

    In the "campaign_script" folder, simply copy and paste this wall of text right between the end of section 11 called "Colony Management" and just above the beginning of section 12 labelled as "Faction Missions". It's okay to leave a blank line or two between this text and the beginning of section 12.

    Spoiler Alert, click show to read: 

    Code:
    	;;; Special KH polis-building script ;;;			
    	set_event_counter ecKoinonColonistsOn 0
    	declare_counter KoinonColonyPoints
    	
    	monitor_event PreFactionTurnStart
    		if I_CompareCounter FactionTurnInProgress = 5			;;; it is the KH turn
                and I_IsFactionAIControlled f_kh
                set_event_counter ecKoinonColonistsOn 1
           end_if
    	end_monitor
    	
    	;; Test how many Metropoleis Koinon Hellenon controls:
        monitor_event SettlementTurnStart FactionType f_kh
            and I_EventCounter ecOlympicYear = 1
            and I_EventCounter ecSpring = 1
            and SettlementBuildingExists = polis_three
            inc_counter KoinonColonyPoints 1
            if I_IsFactionAIControlled f_kh					;;; for the AI it is not needed
                terminate_monitor
            end_if
        end_monitor
    	
    	 monitor_event FactionTurnStart FactionType f_kh
            if I_IsFactionAIControlled f_kh					;;; for the AI it is not needed
                terminate_monitor
            end_if
            ;
            if I_CompareCounter KoinonColonyPoints > 0
                set_event_counter ecKoinonColonistsOn 1
            end_if
        end_monitor
    	
    	monitor_event AddedToBuildingQueue FactionType f_kh
            and BuildingName = polis_one
            inc_counter KoinonColonyPoints -1
            if I_IsFactionAIControlled f_kh					;;; for the AI it is not needed
                terminate_monitor
            end_if
            ;
            if I_CompareCounter KoinonColonyPoints = 0
                set_event_counter ecKoinonColonistsOn 0
            end_if
        end_monitor
    	
    	monitor_event AddedToBuildingQueue FactionType f_kh
            and BuildingName = helcol_one
            inc_counter KoinonColonyPoints -1
            if I_IsFactionAIControlled f_kh					;;; for the AI it is not needed
                terminate_monitor
            end_if
            ;
            if I_CompareCounter KoinonColonyPoints = 0
                set_event_counter ecKoinonColonistsOn 0
            end_if
        end_monitor
        ;
        monitor_event AddedToBuildingQueue FactionType f_kh
            and BuildingName = helcol_two
            inc_counter KoinonColonyPoints -1
            if I_IsFactionAIControlled f_kh					;;; for the AI it is not needed
                terminate_monitor
            end_if
            ;
            if I_CompareCounter KoinonColonyPoints = 0
                set_event_counter ecKoinonColonistsOn 0
            end_if
        end_monitor
        ;
        monitor_event AddedToBuildingQueue FactionType f_kh
            and BuildingName = helcol_three
            inc_counter KoinonColonyPoints -1
            if I_IsFactionAIControlled f_kh					;;; for the AI it is not needed
                terminate_monitor
            end_if
            ;
            if I_CompareCounter KoinonColonyPoints = 0
                set_event_counter ecKoinonColonistsOn 0
            end_if
        end_monitor
        ;
        ;   Re-enable the event counter after the player has clicked the end turn button. If this isn't done, the colony building will never complete.
        ;
        monitor_event ButtonPressed ButtonPressed end_turn
            if I_IsFactionAIControlled f_kh					;;; for the AI it is not needed
                terminate_monitor
            end_if
            ;
            if not I_IsFactionAIControlled f_kh
                set_event_counter ecKoinonColonistsOn 1
            end_if
        end_monitor
        ;
        ;   Disable the event counter at the end of faction turn - applies for both the player as well as the AI.
        ;
        monitor_event FactionTurnEnd FactionType f_kh
            set_event_counter ecKoinonColonistsOn 0
        end_monitor


    Now comes the part that for you would have been a lot of work (it was for me), but if you'd like, instead of entering the following information manually, you can simply copy the following text and paste over nearly the entire section in the "export_descr_buildings" file labelled as "EBII POLEIS / COLONIES". Notice how I stopped short of including all the text below "building colony_eastern" if you open the file and have a look at where this all exists. Therefore, don't copy over the entire section; only copy and paste over the lines of text that are displayed in the spoiler window in the post below.

    EDIT: Unfortunately, the amount of text is so massive, I'm going to have to split it into four parts, but don't worry, just copy and paste the first part from the first spoiler window below, then, once you're done with that, copy and paste the second part from the second spoiler window below that, and then do the same with the third and fourth parts. Mind you, these are consecutive, so line them up exactly and leave no spaces between them.

    ==INSTRUCTIONS FOR MANUAL EDITING OF THE EXPORT_DESCR_BUILDINGS FILE==

    If you're a crazy person and you'd rather enter the text manually (instead of copying and pasting each consecutive part in the spoiler windows below), you can probably see what's been added by comparing this text above to what already exists in your unmodded, untouched, unmolested virgin "export_descr_buildings" file. Firstly, in each line at the beginning of each sub-section where it says "helcol...requires", followed by brackets listing various factions, you need to add "f_kh," at the end of the list, making sure in each case to leave a blank space between the comma in "f_kh," and the closing bracket ("}"). Then, at the end of each of these lines, along with the "polis_one requires" line, you need to add the following text: "or event_counter ecKoinonColonistsOn 1". Make sure to leave a space between the word "or" and the previous text (e.g. "...or event_counter ecBosporanColonistsOn 1 or event_counter ecKoinonColonistsOn 1").

    Make sure not to do this with every line that says "helcol_one" or "helcol_two" or "helcol_three requires", because at the end of each sub-section is a field called "upgrades" with a similar line called "helcol_one" or "helcol_two" or "helcol_three requires". Just like before, you'll need to add the "f_kh," text in the brackets ("{ }"), yet after that you'll notice the text differs from the other "requires" lines. At the end of these, the following text must be pasted: "or building_present_min_level govkh kh3". Make sure to leave a space between this text and the previous last word of each line. For instance, it should look something like this: "...or building_present_min_level govbospor bosptyra or building_present_min_level govkh kh3".

    Hold on to your horses, because you're not done yet! You still need to make sure all the units can now be recruited from these new buildings that KH can now build. In each sub-section, in each line where it says "recruit_pool", you're going to need to add "f_kh," manually to the end of each list. You can do that the old fashioned way. Alternatively, if you want to go easy on yourself, then do the following:

    1) Open up a new tab in Notepad++ or, if you must, a separate Word document
    2) Copy and paste one "recruit_pool" subsection at a time from the "EBII POLEIS / COLONIES " section into this new tab or document, for temporary use.
    3) Open the "finder" (usually just hitting "ctrl" + "F" on your keyboard will open it up for you)
    4) Go to the "replace all" tab
    5) Replace every instance where it says "f_baktria," with "f_baktria, f_kh, " instead. Make sure to have a comma at the end of "f_kh" and to leave a small blank space at the end of "f_kh," as well, since there needs to be a space between it and the closing bracket ("}") in each line. Each line should look something like this: "recruit_pool "hellenistic cavalry hippeis" 1 0.04 1 0 requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1"
    6) Copy and paste each sub-section you've edited in your temporary tab or Word document back into the original "export_descr_unit" file.

    Once you're done doing that to every line where it says "recruit_pool", then pat yourself on the back, because voila! You're finished!

    Now you can just enjoy the fruits of thine labor, and build Hellenistic poleis and colonies as Koinon Hellenon! Do your thing, kick back, relax, have a party, whatever floats your boat, pal. I won't judge you.


  2. #2
    Roma_Victrix's Avatar Call me Ishmael
    Join Date
    Sep 2010
    Location
    Virginia, USA
    Posts
    15,242

    Default Re: KH being able to build military colonies and Hellenistic poleis

    Spoiler Alert, click show to read: 

    Code:
    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    ;;;;;;;;; EBII POLEIS / COLONIES  ;;;;;;;;;
    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    building hinterland_hellenistic_polis
    {
    	levels polis_one polis_two polis_three
        {
    		polis_one requires factions { cul_1, cul_3, } and building_present_min_level market market_one and not building_present_min_level colony_eastern eastcol_two and region_religion rel_h 29 and event_counter ecMakedoniaColonistsOn 1 or event_counter ecEpeirosColonistsOn 1 or event_counter ecSeleukidColonistsOn 1 or event_counter ecPtolemaioiColonistsOn 1 or event_counter ecBaktriaColonistsOn 1 or event_counter ecPergamonColonistsOn 1 or event_counter ecBosporanColonistsOn 1 or event_counter ecKoinonColonistsOn 1
            {
                capability	;;; Recruitment pool - 8 * 0.03
                {
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and not hidden_resource baktria and not event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.045  2  0  requires factions { f_kh, } and not hidden_resource baktria and not event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and not hidden_resource baktria and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.045  2  0  requires factions { f_kh, } and not hidden_resource baktria and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry baktrioi hippotoxotai"  1  0.06  2  0  requires factions { f_kh, f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and hidden_resource baktria
    				recruit_pool "hellenistic infantry Deuteroi phalangitai"  0  0.06  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and hidden_resource deuteroi
    				recruit_pool "hellenistic infantry Deuteroi phalangitai"  0  0.06  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and hidden_resource achaenleague and not hidden_resource deuteroi and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic infantry Deuteroi phalangitai"  0  0.06  2  0  requires factions { f_kh, } and hidden_resource achaenleague and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic infantry hoplitai haploi"  1  0.06  2  0  requires factions { f_kh, }
                    recruit_pool "hellenistic infantry hoplitai haploi"  0  0.03  1  0  requires factions { f_kh, } and not event_counter ecThureosReform 1
    				recruit_pool "hellenistic infantry hoplitai haploi"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_pontos, f_pergamon, f_bosporan, }
    				recruit_pool "hellenistic infantry hoplitai haploi"  0  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_pontos, f_pergamon, f_bosporan, } and not event_counter ecThureosReform 1
    				recruit_pool "hellenistic infantry hoplitai haploi"  1  0.03  1  0  requires factions { f_seleukid, f_ptolemaioi, f_baktria, }
    				recruit_pool "hellenistic infantry akontistai"  1  0.06  2  0  requires factions { f_kh, }
    				recruit_pool "hellenistic infantry akontistai"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, }
                    recruit_pool "hellenistic infantry akontistai"  0  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and not event_counter ecThureosReform 1
    				recruit_pool "hellenistic infantry toxotai"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and not hidden_resource krete
    				recruit_pool "hellenistic infantry toxotai"  1  0.045  2  0  requires factions { f_kh, } and not hidden_resource krete
    				recruit_pool "hellenistic infantry cretan"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and hidden_resource krete
    				recruit_pool "hellenistic infantry cretan"  1  0.045  2  0  requires factions { f_kh, } and hidden_resource krete
    				recruit_pool "hellenistic missile cretan archers"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and hidden_resource krete
    				recruit_pool "hellenistic missile cretan archers"  1  0.045  2  0  requires factions { f_kh, } and hidden_resource krete
    				recruit_pool "hellenistic infantry sphendonitai"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, }
    				recruit_pool "hellenistic infantry sphendonitai"  1  0.045  2  0  requires factions { f_kh, }
    				recruit_pool "eastern infantry uazali"  1  0.03  1  0  requires factions { f_kh, f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and hidden_resource anatolian and hidden_resource hellen2
    				happiness_bonus bonus 1 requires factions { cul_1, cul_3, }
    				trade_base_income_bonus bonus 1 requires factions { f_kh, }
                }
                material stone
                construction  4
                cost  6000
                settlement_min town
                upgrades
                {
                    polis_two
                }
            }
            polis_two requires factions { cul_1, cul_3, } and building_present_min_level market market_two and not building_present_min_level colony_eastern eastcol_two and region_religion rel_h 49 and building_present_min_level govmakedonia makedonia5 or building_present_min_level govepeiros epeiros5 or building_present_min_level govseleukid seleukid3 or building_present_min_level govptolemaioi ptolemaioi5 or building_present_min_level govbaktria baktria3 or building_present_min_level govpergamon pergamon5 or building_present_min_level govbospor bospolig or building_present_min_level govkh kh2
            {
                capability	;;; Recruitment pool - 8 * 0.04
                {
    				recruit_pool "hellenistic cavalry thessalikoi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and hidden_resource greek1 and hidden_resource deuteroi
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and not hidden_resource baktria and not event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.12  3  0  requires factions { f_kh, } and not hidden_resource baktria and not event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and not hidden_resource baktria and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.12  3  0  requires factions { f_kh, } and not hidden_resource baktria and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and not hidden_resource baktria and not event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry hippeis"  1  0.12  3  0  requires factions { f_kh, } and not hidden_resource baktria and not event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and not hidden_resource baktria and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.12  3  0  requires factions { f_kh, } and not hidden_resource baktria and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry lydian lancers"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, } and hidden_resource lydian
    				recruit_pool "hellenistic cavalry baktrioi hippotoxotai"  1  0.08  2  0  requires factions { f_kh, f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and hidden_resource baktria
    				recruit_pool "hellenistic cavalry baktrioi hippeis"  1  0.04  1  0  requires factions { f_kh, f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and hidden_resource baktria
    				recruit_pool "hellenistic infantry Deuteroi phalangitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and hidden_resource deuteroi
    				recruit_pool "hellenistic infantry Deuteroi phalangitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and hidden_resource achaenleague and not hidden_resource deuteroi and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic infantry Deuteroi phalangitai"  1  0.08  2  0  requires factions { f_kh, } and hidden_resource achaenleague and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic infantry hoplitai haploi"  1  0.08  2  0  requires factions { f_kh, }
                    recruit_pool "hellenistic infantry hoplitai haploi"  0  0.04  1  0  requires factions { f_kh, } and not event_counter ecThureosReform 1
    				recruit_pool "hellenistic infantry hoplitai haploi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_pontos, f_pergamon, f_bosporan, }
    				recruit_pool "hellenistic infantry hoplitai haploi"  0  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_pontos, f_pergamon, f_bosporan, } and not event_counter ecThureosReform 1
    				recruit_pool "hellenistic infantry hoplitai haploi"  1  0.04  1  0  requires factions { f_seleukid, f_ptolemaioi, f_baktria, }
    				recruit_pool "hellenistic infantry hoplitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, }
    				recruit_pool "hellenistic infantry hoplitai"  0  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and not event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic infantry hoplitai"  1  0.08  2  0  requires factions { f_kh, }
    				recruit_pool "hellenistic infantry hoplitai"  0  0.04  1  0  requires factions { f_kh, } and not event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and event_counter ecThureosReform 1
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.06  2  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and event_counter ecThureosReform 1
                    recruit_pool "hellenistic infantry thureophoroi"  0  0.02  0  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic infantry euzonoi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and not hidden_resource logades and not hidden_resource krete and event_counter ecThureosReform 1
                    recruit_pool "hellenistic infantry euzonoi"  0  0.04  0  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and not hidden_resource logades and not hidden_resource krete and event_counter ecThorakitaiReform 1
                    recruit_pool "hellenistic infantry hemithorakitai"  0  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_kh, f_pergamon, } and not hidden_resource logades and not hidden_resource krete and not event_counter ecThureosReform 1
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_pergamon, } and not hidden_resource logades and not hidden_resource krete and not event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.06  2  0  requires factions { f_kh, } and not hidden_resource logades and not hidden_resource krete and not event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic infantry peltastai logades"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, } and hidden_resource logades
                    recruit_pool "hellenistic infantry cretan"  1  0.06  2  0  requires factions { f_kh, } and hidden_resource krete	
    				recruit_pool "hellenistic infantry cretan"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and hidden_resource krete
                    recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_kh, }
    				recruit_pool "hellenistic infantry akontistai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, }
    				recruit_pool "hellenistic infantry akontistai"  0  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and not event_counter ecThureosReform 1
    				recruit_pool "hellenistic infantry toxotai"  1  0.06  2  0  requires factions { f_kh, } and not hidden_resource krete
    				recruit_pool "hellenistic infantry toxotai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and not hidden_resource krete
    				recruit_pool "hellenistic infantry sphendonitai"  1  0.06  2  0  requires factions { f_kh, }
    				recruit_pool "hellenistic infantry sphendonitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, }
    				recruit_pool "hellenistic missile cretan archers"  1  0.06  2  0  requires factions { f_kh, } and hidden_resource krete
    				recruit_pool "hellenistic missile cretan archers"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and hidden_resource krete
                    recruit_pool "eastern infantry uazali"  1  0.04  1  0  requires factions { f_kh, f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and hidden_resource anatolian and hidden_resource hellen2
    				happiness_bonus bonus 2 requires factions { cul_1, cul_3, }
    				trade_base_income_bonus bonus 2 requires factions { f_kh, }
    				happiness_bonus bonus -1 requires factions { cul_2, cul_4, cul_5, cul_6, cul_7, }
    				free_upkeep bonus 1 requires factions { cul_1, cul_3, }
                }
                material stone
                construction  8
                cost  10000
                settlement_min large_town
                upgrades
                {
                    polis_three
                }
            }
            polis_three requires factions { cul_1, cul_3, } and building_present_min_level market market_three and not building_present_min_level colony_eastern eastcol_two and region_religion rel_h 69 and building_present_min_level govmakedonia makedonia5 or building_present_min_level govepeiros epeiros5 or building_present_min_level govseleukid seleukid5 or building_present_min_level govptolemaioi ptolemaioi5 or building_present_min_level govbaktria baktria5 or building_present_min_level govpergamon pergamon5 or building_present_min_level govbospor bospparadyn or building_present_min_level govkh kh2
            {
                capability	;;; Recruitment pool - 12 * 0.04
                {
    				recruit_pool "hellenistic cavalry thessalikoi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and hidden_resource greek1 and hidden_resource deuteroi
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and not hidden_resource lydian
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and not hidden_resource baktria and not event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.12  3  0  requires factions { f_kh, } and not hidden_resource baktria and not event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and not hidden_resource baktria and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.12  3  0  requires factions { f_kh, } and not hidden_resource baktria and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and not hidden_resource baktria and not event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry hippeis"  1  0.12  3  0  requires factions { f_kh, } and not hidden_resource baktria and not event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and not hidden_resource baktria and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.12  3  0  requires factions { f_kh, } and not hidden_resource baktria and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic cavalry baktrioi hippeis"  1  0.04  1  0  requires factions { f_kh, f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and hidden_resource baktria
    				recruit_pool "hellenistic cavalry baktrioi hippotoxotai"  1  0.08  2  0  requires factions { f_kh, f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and hidden_resource baktria
    				recruit_pool "hellenistic cavalry lydian lancers"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, } and hidden_resource lydian
    				recruit_pool "hellenistic infantry Deuteroi phalangitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and hidden_resource deuteroi
    				recruit_pool "hellenistic infantry Deuteroi phalangitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and hidden_resource achaenleague and not hidden_resource deuteroi and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic infantry Deuteroi phalangitai"  1  0.12  3  0  requires factions { f_kh, } and hidden_resource achaenleague and event_counter ecThorakitaiReform 1
                    recruit_pool "hellenistic infantry hoplitai haploi"  1  0.1  2  0  requires factions { f_kh, }
                    recruit_pool "hellenistic infantry hoplitai haploi"  0  0.05  1  0  requires factions { f_kh, } and not event_counter ecThureosReform 1
    				recruit_pool "hellenistic infantry hoplitai haploi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_pontos, f_pergamon, f_bosporan, }
    				recruit_pool "hellenistic infantry hoplitai haploi"  0  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_pontos, f_pergamon, f_bosporan, } and not event_counter ecThureosReform 1
    				recruit_pool "hellenistic infantry hoplitai haploi"  1  0.04  1  0  requires factions { f_seleukid, f_ptolemaioi, f_baktria, }
    				recruit_pool "hellenistic infantry hoplitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, }
    				recruit_pool "hellenistic infantry hoplitai"  0  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and not event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic infantry hoplitai"  1  0.06  2  0  requires factions { f_kh, }
    				recruit_pool "hellenistic infantry hoplitai"  0  0.06  1  0  requires factions { f_kh, } and not event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic infantry epilektoi hoplitai"  1  0.04  1  0  requires factions { f_kh, }
                    recruit_pool "hellenistic infantry thureophoroi"  1  0.06  2  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and event_counter ecThureosReform 1
                    recruit_pool "hellenistic infantry thureophoroi"  0  0.02  0  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic infantry thorakitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic infantry euzonoi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and not hidden_resource logades and not hidden_resource krete and event_counter ecThureosReform 1
                    recruit_pool "hellenistic infantry euzonoi"  0  0.04  0  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and not hidden_resource logades and not hidden_resource krete and event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_kh, f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and event_counter ecThureosReform 1
    				recruit_pool "hellenistic infantry hemithorakitai"  0  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_kh, f_pergamon, } and not hidden_resource logades and not hidden_resource krete and not event_counter ecThureosReform 1
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_pergamon, } and not hidden_resource logades and not hidden_resource krete and not event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.06  2  0  requires factions { f_kh, } and not hidden_resource logades and not hidden_resource krete and not event_counter ecThorakitaiReform 1
    				recruit_pool "hellenistic infantry peltastai logades"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and hidden_resource logades
                    recruit_pool "hellenistic infantry cretan"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and hidden_resource krete
                    recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_kh, }
    				recruit_pool "hellenistic infantry akontistai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, }
    				recruit_pool "hellenistic infantry akontistai"  0  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and not event_counter ecThureosReform 1
    				recruit_pool "hellenistic infantry toxotai"  1  0.12  3  0  requires factions { f_kh, } and not hidden_resource krete
    				recruit_pool "hellenistic infantry toxotai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and not hidden_resource krete
    				recruit_pool "hellenistic infantry sphendonitai"  1  0.12  3  0  requires factions { f_kh, }
    				recruit_pool "hellenistic infantry sphendonitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, }
    				recruit_pool "hellenistic missile cretan archers"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_kh, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and hidden_resource krete
                    recruit_pool "eastern infantry uazali"  1  0.08  2  0  requires factions { f_kh, f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, } and hidden_resource anatolian and hidden_resource hellen2
    				happiness_bonus bonus 3 requires factions { cul_1, cul_3, }
    				trade_base_income_bonus bonus 3 requires factions { f_kh, }
    				happiness_bonus bonus -2 requires factions { cul_2, cul_4, cul_5, cul_6, cul_7, }
    				free_upkeep bonus 2 requires factions { cul_1, cul_3, }
                }
                material stone
                construction  12
                cost  12000
                settlement_min city
                upgrades
                {
                }
            }
        }
        plugins
        {
        }
    }
    building colony_hellenistic
    {
        religion rel_h
        levels helcol_one helcol_two helcol_three helcol_ref
        {
            helcol_one requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, f_kh, } and building_present_min_level hinterland_farms farms_two and not building_present govallied and not building_present colony_eastern and event_counter ecMakedoniaColonistsOn 1 or event_counter ecEpeirosColonistsOn 1 or event_counter ecSeleukidColonistsOn 1 or event_counter ecPtolemaioiColonistsOn 1 or event_counter ecBaktriaColonistsOn 1 or event_counter ecPontosColonistsOn 1 or event_counter ecPergamonColonistsOn 1 or event_counter ecBosporanColonistsOn 1 or event_counter ecKoinonColonistsOn 1
            {
                capability	;;; Recruitment pool - 6 * 0.03
                {
    				;;; CORE POOL
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and not hidden_resource indo and not hidden_resource baktria and not hidden_resource arabian and not hidden_resource baltic and not hidden_resource briton and not hidden_resource daha and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource numidia and not hidden_resource saka and not hidden_resource sarmatian
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and not hidden_resource indo and not hidden_resource baktria and not hidden_resource arabian and not hidden_resource baltic and not hidden_resource briton and not hidden_resource daha and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource numidia and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.03  1  0  requires factions { f_pontos, } and event_counter ecThorakitaiReform 1 and hidden_resource skythian
    				recruit_pool "hellenistic cavalry thureopherontes hippotoxotai"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource skythian
    				recruit_pool "hellenistic cavalry baktrioi hippotoxotai"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource indo or hidden_resource baktria
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.09  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and not hidden_resource arabian and not hidden_resource baltic and not hidden_resource briton and not hidden_resource daha and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource numidia and not hidden_resource saka and not hidden_resource sarmatian
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.06  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and not hidden_resource indo and not hidden_resource baktria and not hidden_resource arabian and not hidden_resource baltic and not hidden_resource briton and not hidden_resource daha and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource numidia and not hidden_resource saka and not hidden_resource sarmatian
    				recruit_pool "hellenistic infantry hoplitai indohellenikoi"  1  0.06  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, } and event_counter ecThureosReform 1 and not hidden_resource eastern and hidden_resource indo or hidden_resource baktria
    				recruit_pool "hellenistic infantry akontistai"  1  0.06  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and not hidden_resource arabian and not hidden_resource baltic and not hidden_resource briton and not hidden_resource daha and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource numidia and not hidden_resource saka and not hidden_resource sarmatian
    				recruit_pool "hellenistic infantry euzonoi"  1  0.06  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and not hidden_resource indo and not hidden_resource baktria and not hidden_resource arabian and not hidden_resource baltic and not hidden_resource briton and not hidden_resource daha and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource numidia and not hidden_resource saka and not hidden_resource sarmatian
    				recruit_pool "hellenistic infantry peltastai indohellenikoi"  1  0.06  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and not hidden_resource eastern and hidden_resource indo or hidden_resource baktria 
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and not hidden_resource arabian and not hidden_resource baltic and not hidden_resource briton and not hidden_resource daha and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource numidia and not hidden_resource saka and not hidden_resource sarmatian
    				;;; PANIARDIS
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource sarmatian and hidden_resource mixed
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource sarmatian and hidden_resource mixed
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.09  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource sarmatian and hidden_resource mixed
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.06  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource sarmatian and hidden_resource mixed
    				recruit_pool "hellenistic infantry akontistai"  1  0.06  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource sarmatian and hidden_resource mixed
    				recruit_pool "hellenistic infantry euzonoi"  1  0.06  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource sarmatian and hidden_resource mixed
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource sarmatian and hidden_resource mixed
    				;;; WESTERN ARABIA
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.09  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.06  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry akontistai"  1  0.06  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry euzonoi"  1  0.06  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.03  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core                
    				religion_level bonus 1  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, f_kh, } and not region_religion rel_h 30 and event_counter ecReligionUpdate 1
    				law_bonus bonus 1 requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, f_kh, }
    				free_upkeep bonus 1  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, f_kh, }
    				farming_level bonus -1 requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, f_kh, }
                }
                material stone
                construction  4
                cost  4800
                settlement_min town
                upgrades
                {
                   helcol_two requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, f_kh, } and building_present_min_level govmakedonia makedonia2 or building_present_min_level govepeiros epeiros2 or building_present_min_level govseleukid seleukid2 or building_present_min_level govptolemaioi ptolemaioi2 or building_present_min_level govbaktria baktria2 or building_present_min_level govpontos pontos3 or building_present_min_level govpergamon pergamon2 or building_present_min_level govbospor bosptyra or building_present_min_level govkh kh3
                }

  3. #3
    Roma_Victrix's Avatar Call me Ishmael
    Join Date
    Sep 2010
    Location
    Virginia, USA
    Posts
    15,242

    Default Re: KH being able to build military colonies and Hellenistic poleis

    Spoiler Alert, click show to read: 

    Code:
            }
            helcol_two requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, f_kh, } and building_present roads_garrison and building_present amphitheatres and building_present_min_level hinterland_farms farms_three and not building_present govallied and not building_present colony_eastern and region_religion rel_h 25 and event_counter ecMakedoniaColonistsOn 1 or event_counter ecEpeirosColonistsOn 1 or event_counter ecSeleukidColonistsOn 1 or event_counter ecPtolemaioiColonistsOn 1 or event_counter ecBaktriaColonistsOn 1 or event_counter ecPontosColonistsOn 1 or event_counter ecPergamonColonistsOn 1 or event_counter ecBosporanColonistsOn 1 or event_counter ecKoinonColonistsOn 1
            {
                capability	;;; Recruitment pool - 8 * 0.04
                {
    				;;; ELSEWHERE
    				recruit_pool "hellenistic cavalry hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				;;; WESTERN ARABIA
    				recruit_pool "hellenistic cavalry hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				;;; ANATOLIA
    				recruit_pool "hellenistic cavalry hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry phalangitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "thracian infantry peltastai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, f_kh, } and hidden_resource anatolian and hidden_resource satrapy  ;; placeholder for Thraikioi colonist
    				recruit_pool "hellenistic missile cretan archers"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, f_kh, } and hidden_resource anatolian and hidden_resource hellen2 and hidden_resource hr_i or hidden_resource hr_j
    				recruit_pool "hellenistic infantry cretan"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, f_kh, } and hidden_resource anatolian and hidden_resource hellen2 and hidden_resource hr_i or hidden_resource hr_j
    				;;; BAKTRIA
    				recruit_pool "hellenistic cavalry baktrioi hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource baktria
    				recruit_pool "hellenistic cavalry baktrioi hippotoxotai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource baktria
    				recruit_pool "hellenistic infantry phalangitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource baktria
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource baktria
    				recruit_pool "hellenistic infantry hoplitai indohellenikoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource baktria
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource baktria
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource baktria
    				recruit_pool "hellenistic infantry peltastai indohellenikoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource baktria
    				;;; CAUCASUS
    				recruit_pool "hellenistic cavalry hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic infantry euzonoi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				;;; EASTERN
    				recruit_pool "hellenistic cavalry hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic infantry phalangitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource eastern and not hidden_resource baktria and not hidden_resource hr_river and not hidden_resource hr_c
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic missile cretan archers"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource eastern and hidden_resource hellen1
    				recruit_pool "hellenistic infantry cretan"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource eastern and hidden_resource hellen1
    				recruit_pool "thracian infantry peltastai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource eastern and hidden_resource satrapy and not hidden_resource hr_c ;; placeholder for Thraikioi colonist 
    				;;; IOUDAIA
    				recruit_pool "hellenistic cavalry hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic missile cretan archers"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic infantry cretan"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				;;; EGYPT
    				recruit_pool "hellenistic cavalry hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic infantry phalangitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource egypt and not hidden_resource hr_f
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource egypt and not hidden_resource hr_f
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "thracian infantry peltastai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource egypt and not hidden_resource hr_f  ;; placeholder for Thraikioi colonist
    				recruit_pool "hellenistic missile cretan archers"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource egypt and hidden_resource hellen1
    				recruit_pool "hellenistic infantry cretan"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource egypt and hidden_resource hellen1
    				;;; HELLAS
    				recruit_pool "hellenistic cavalry hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic infantry phalangitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource phalangitai and hidden_resource deuteroi  ;; Pella
    				recruit_pool "hellenistic infantry Deuteroi phalangitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not hidden_resource phalangitai and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1 ;; not-Pella
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic missile cretan archers"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource hr_a and hidden_resource hr_i and hidden_resource greek1
    				recruit_pool "hellenistic infantry cretan"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource hr_a and hidden_resource hr_i and hidden_resource greek1
    				;;; EPIDAMNOS, BYZANTION, MASSALIA, EMPORION & SALAMIS
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource iberia ;; Massalia and Emporion
    				recruit_pool "hellenistic cavalry hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource greek2 and hidden_resource illyria ;; Epidamnos
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "thracian infantry peltastai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource greek2 and hidden_resource thrakia ;; placeholder for Thraikian colonist in Byzantion
    				recruit_pool "hellenistic missile cretan archers"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource greek2 and hidden_resource hyparchia ;; Salamis
    				recruit_pool "hellenistic infantry cretan"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource greek2 and hidden_resource hyparchia ;; Salamis
    				;;; KNOSSOS, RHODOS & KYRENE
    				recruit_pool "hellenistic cavalry hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource greek1 and hidden_resource libya ;; Kyrene
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource greek1 and hidden_resource libya ;; Kyrene
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource greek1 and hidden_resource libya ;; Kyrene
    				recruit_pool "hellenistic infantry Deuteroi phalangitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource greek1 and hidden_resource libya ;; Kyrene
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern and not hidden_resource libya and not hidden_resource krete ;; Rhodos
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern
    				recruit_pool "hellenistic missile cretan archers"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource krete
    				recruit_pool "hellenistic infantry cretan"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource krete
    				recruit_pool "hellenistic missile cretan archers"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern and not hidden_resource libya and not hidden_resource krete ;; Rhodos - placeholder for Rhodioi Sphendonetai
    				recruit_pool "hellenistic infantry cretan"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern and not hidden_resource libya and not hidden_resource krete ;; Rhodos
    				;;; MEGALE HELLAS
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.16  4  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				;;; INDIA
    				recruit_pool "hellenistic cavalry baktrioi hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource indo and not hidden_resource eastern
    				recruit_pool "hellenistic cavalry baktrioi hippotoxotai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource indo and not hidden_resource eastern
    				recruit_pool "hellenistic infantry hoplitai indohellenikoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource indo and not hidden_resource eastern
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource indo and not hidden_resource eastern
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource indo and not hidden_resource eastern
    				recruit_pool "hellenistic infantry peltastai indohellenikoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource indo and not hidden_resource eastern
    				;;; PONTIC
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource pontic and hidden_resource skythian
    				recruit_pool "thracian cavalry prodromoi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource pontic and hidden_resource thrakia
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource pontic
    				recruit_pool "hellenistic cavalry thureopherontes hippotoxotai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource pontic and not hidden_resource thrakia
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.08  2  0  requires factions { f_pontos, } and event_counter ecThorakitaiReform 1 and hidden_resource pontic
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource pontic and hidden_resource thrakia
    				recruit_pool "hellenistic infantry phalangitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource pontic and hidden_resource anatolian and not hidden_resource thrakia
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource pontic 
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource pontic
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource pontic
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource pontic and hidden_resource anatolian and not hidden_resource thrakia
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource pontic
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource pontic
    				recruit_pool "hellenistic infantry thureopherontes toxotai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource skythian
    				recruit_pool "thracian infantry peltastai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource pontic and hidden_resource thrakia or hidden_resource dacia ;; placeholder for Thraikian colonist in Nikaia/Histria
    				;;; PUNIC
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource punic
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource punic
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry Deuteroi phalangitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource punic
    				religion_level bonus 1  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, }  and not region_religion rel_h 50 and event_counter ecReligionUpdate 1 
    				law_bonus bonus 1  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, }
    				free_upkeep bonus 1  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, }
    				farming_level bonus -2 requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, }
    			}
                material stone
                construction  8
                cost  9600
                settlement_min large_town
                upgrades
                {
                    helcol_three requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, f_kh, } and building_present_min_level govmakedonia makedonia6 or building_present_min_level govepeiros epeiros6 or building_present_min_level govseleukid seleukid5 or building_present_min_level govptolemaioi ptolemaioi6 or building_present_min_level govbaktria baktria5 or building_present_min_level govpontos pontos5 or building_present_min_level govpergamon pergamon6 or building_present_min_level govbospor bospparadyn or building_present_min_level govkh kh3
                }

  4. #4
    Roma_Victrix's Avatar Call me Ishmael
    Join Date
    Sep 2010
    Location
    Virginia, USA
    Posts
    15,242

    Default Re: KH being able to build military colonies and Hellenistic poleis

    Spoiler Alert, click show to read: 

    Code:
            }
            helcol_three requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, f_kh, } and building_present roads_garrison and building_present amphitheatres and building_present_min_level hinterland_farms farms_five and not building_present govallied and not building_present colony_eastern and region_religion rel_h 45 and event_counter ecMakedoniaColonistsOn 1 or event_counter ecEpeirosColonistsOn 1 or event_counter ecSeleukidColonistsOn 1 or event_counter ecPtolemaioiColonistsOn 1 or event_counter ecBaktriaColonistsOn 1 or event_counter ecPontosColonistsOn 1 or event_counter ecPergamonColonistsOn 1 or event_counter ecBosporanColonistsOn 1 or event_counter ecKoinonColonistsOn 1
    		{
                capability	;;; Recruitment pool - 12 * 0.04
                {
    				;;; ELSEWHERE
    				recruit_pool "hellenistic cavalry hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource iberia and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource iberia and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.16  4  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource iberia and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource iberia and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource iberia and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource iberia and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource iberia and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource iberia and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				;;; WESTERN ARABIA
    				recruit_pool "hellenistic cavalry hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.16  4  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				;;; ANATOLIA
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "thracian cavalry prodromoi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource anatolian and hidden_resource satrapy  
    				recruit_pool "hellenistic cavalry hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry phalangitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "thracian infantry peltastai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource anatolian and hidden_resource satrapy  ;; placeholder for Thraikioi colonist
    				recruit_pool "celtic infantry uextias"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource anatolian and not hidden_resource pontic and not hidden_resource hellen2 ;; placeholder for Galatian colonists
    				recruit_pool "hellenistic missile cretan archers"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource anatolian and hidden_resource hellen2 and hidden_resource hr_i or hidden_resource hr_j
    				recruit_pool "hellenistic infantry cretan"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource anatolian and hidden_resource hellen2 and hidden_resource hr_i or hidden_resource hr_j
    				;;; BAKTRIA
    				recruit_pool "hellenistic cavalry baktrioi hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource baktria
    				recruit_pool "hellenistic cavalry baktrioi hippotoxotai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource baktria
    				recruit_pool "hellenistic infantry phalangitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource baktria
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource baktria
    				recruit_pool "hellenistic infantry hoplitai indohellenikoi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource baktria
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource baktria
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource baktria
    				recruit_pool "hellenistic infantry peltastai indohellenikoi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource baktria
    				;;; CAUCASUS
    				recruit_pool "hellenistic cavalry hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				;;; EASTERN
    				recruit_pool "hellenistic cavalry thessalikoi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource eastern and hidden_resource hellen1
    				recruit_pool "hellenistic cavalry kataphractoi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource eastern and resource dogs and event_counter ecThorakitaiReform 1 ;; places with the warhorse resource
    				recruit_pool "thracian cavalry prodromoi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and resource dogs and hidden_resource eastern and hidden_resource satrapy and not hidden_resource hr_c  
    				recruit_pool "hellenistic cavalry hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic infantry phalangitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource eastern and not hidden_resource baktria and not hidden_resource hr_river and not hidden_resource hr_c
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic missile cretan archers"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource eastern and hidden_resource hellen1
    				recruit_pool "hellenistic infantry cretan"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource eastern and hidden_resource hellen1
    				recruit_pool "thracian infantry peltastai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource eastern and hidden_resource satrapy and not hidden_resource hr_c ;; placeholder for Thraikioi colonist 
    				;;; IOUDAIA
    				recruit_pool "hellenistic cavalry hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.16  4  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic missile cretan archers"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic infantry cretan"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				;;; EGYPT
    				recruit_pool "hellenistic cavalry kleruchoi agema"  1  0.04  1  0  requires factions { f_ptolemaioi, } and hidden_resource egypt and not hidden_resource hr_f
    				recruit_pool "thracian cavalry prodromoi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource egypt and hidden_resource hellen2 
    				recruit_pool "hellenistic cavalry hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic infantry phalangitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource egypt and not hidden_resource hr_f
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource egypt and not hidden_resource hr_f
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "thracian infantry peltastai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource egypt and not hidden_resource hr_f  ;; placeholder for Thraikioi colonist
    				recruit_pool "celtic infantry uextias"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource egypt and not hidden_resource hr_f ;; placeholder for Galatian colonists
    				recruit_pool "hellenistic missile cretan archers"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource egypt and hidden_resource hellen1
    				recruit_pool "hellenistic infantry cretan"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource egypt and hidden_resource hellen1
    				;;; HELLAS
    				recruit_pool "hellenistic cavalry hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic infantry phalangitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource phalangitai and hidden_resource deuteroi  ;; Pella
    				recruit_pool "hellenistic infantry Deuteroi phalangitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not hidden_resource phalangitai and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1 ;; not-Pella
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic missile cretan archers"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource hr_a and hidden_resource hr_i and hidden_resource greek1
    				recruit_pool "hellenistic infantry cretan"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource hr_a and hidden_resource hr_i and hidden_resource greek1
    				;;; EPIDAMNOS, BYZANTION, MASSALIA, EMPORION & SALAMIS
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource iberia ;; Massalia and Emporion
    				recruit_pool "thracian cavalry prodromoi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource greek2 and hidden_resource thrakia 
    				recruit_pool "hellenistic cavalry hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.16  4  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource greek2 and hidden_resource illyria ;; Epidamnos
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "thracian infantry peltastai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource greek2 and hidden_resource thrakia ;; placeholder for Thraikian colonist in Byzantion
    				recruit_pool "hellenistic missile cretan archers"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource greek2 and hidden_resource hyparchia ;; Salamis
    				recruit_pool "hellenistic infantry cretan"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource greek2 and hidden_resource hyparchia ;; Salamis
    				;;; KNOSSOS, RHODOS & KYRENE
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource greek1 and hidden_resource libya ;; Kyrene
    				recruit_pool "hellenistic cavalry hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource greek1 and hidden_resource libya ;; Kyrene
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource greek1 and hidden_resource libya ;; Kyrene
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.16  4  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource greek1 and hidden_resource libya ;; Kyrene
    				recruit_pool "hellenistic infantry Deuteroi phalangitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource greek1 and hidden_resource libya ;; Kyrene
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern and not hidden_resource libya and not hidden_resource krete ;; Rhodos
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern
    				recruit_pool "hellenistic missile cretan archers"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource krete
    				recruit_pool "hellenistic infantry cretan"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource krete
    				recruit_pool "hellenistic missile cretan archers"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern and not hidden_resource libya and not hidden_resource krete ;; Rhodos - placeholder for Rhodioi Sphendonetai
    				recruit_pool "hellenistic infantry cretan"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern and not hidden_resource libya and not hidden_resource krete ;; Rhodos
    				;;; MEGALE HELLAS
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.2  5  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic infantry thorakitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				;;; INDIA
    				recruit_pool "hellenistic cavalry baktrioi hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource indo and not hidden_resource eastern
    				recruit_pool "hellenistic cavalry baktrioi hippotoxotai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource indo and not hidden_resource eastern
    				recruit_pool "hellenistic infantry hoplitai indohellenikoi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource indo and not hidden_resource eastern
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource indo and not hidden_resource eastern
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource indo and not hidden_resource eastern
    				recruit_pool "hellenistic infantry peltastai indohellenikoi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource indo and not hidden_resource eastern
    				;;; PONTIC
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource pontic and hidden_resource skythian
    				recruit_pool "thracian cavalry prodromoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource pontic and hidden_resource thrakia
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource pontic
    				recruit_pool "hellenistic cavalry thureopherontes hippotoxotai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource pontic and not hidden_resource thrakia
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.12  3  0  requires factions { f_pontos, } and event_counter ecThorakitaiReform 1 and hidden_resource pontic
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource pontic and hidden_resource thrakia
    				recruit_pool "hellenistic infantry phalangitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource pontic and hidden_resource anatolian and not hidden_resource thrakia
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource pontic 
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource pontic
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource pontic
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource pontic and hidden_resource anatolian and not hidden_resource thrakia
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource pontic
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource pontic
    				recruit_pool "hellenistic infantry thureopherontes toxotai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource skythian
    				recruit_pool "thracian infantry peltastai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource pontic and hidden_resource thrakia or hidden_resource dacia ;; placeholder for Thraikian colonist in Nikaia/Histria
    				;;; PUNIC
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource punic
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource punic
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry Deuteroi phalangitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource punic
    				religion_level bonus 1  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and not region_religion rel_h 70 and event_counter ecReligionUpdate 1
    				law_bonus bonus 2  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, }
    				free_upkeep bonus 2  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, }
    				farming_level bonus -3 requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, }
                }
                material stone
                construction  12
                cost  14400
                settlement_min large_city
                upgrades
                {
                    helcol_ref requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, f_kh, } and building_present_min_level govmakedonia makedonia6 or building_present_min_level govepeiros epeiros6 or building_present_min_level govseleukid seleukid5 or building_present_min_level govptolemaioi ptolemaioi6 or building_present_min_level govbaktria baktria5 or building_present_min_level govpontos pontos5  or building_present_min_level govpergamon pergamon6 or building_present_min_level govbospor bospparadyn or building_present_min_level govkh kh3
                }

  5. #5
    Roma_Victrix's Avatar Call me Ishmael
    Join Date
    Sep 2010
    Location
    Virginia, USA
    Posts
    15,242

    Default Re: KH being able to build military colonies and Hellenistic poleis

    Spoiler Alert, click show to read: 

    Code:
            }
            helcol_ref requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_pontos, f_pergamon, f_bosporan, f_kh, } and building_present roads_garrison and building_present amphitheatres and building_present_min_level hinterland_farms land_reform1 and not building_present govallied and not building_present colony_eastern and region_religion rel_h 40 and event_counter ecMakedoniaColonistsOn 1 or event_counter ecEpeirosColonistsOn 1 or event_counter ecSeleukidColonistsOn 1 or event_counter ecPtolemaioiColonistsOn 1 or event_counter ecBaktriaColonistsOn 1 or event_counter ecPontosColonistsOn 1 or event_counter ecPergamonColonistsOn 1 or event_counter ecBosporanColonistsOn 1 or event_counter ecKoinonColonistsOn 1
            {
                capability	;;; Recruitment pool - 12 * 0.04
                {
    				;;; ELSEWHERE
    				recruit_pool "hellenistic cavalry hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource iberia and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource iberia and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.16  4  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource iberia and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource iberia and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource iberia and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource iberia and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource iberia and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and not hidden_resource anatolian and not hidden_resource arabian and not hidden_resource baktria and not hidden_resource baltic and not hidden_resource briton and not hidden_resource caucasus and not hidden_resource daha and not hidden_resource eastern and not hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource germania and not hidden_resource greek1 and not hidden_resource greek2 and not hidden_resource hellen1 and not hidden_resource hellen2 and not hidden_resource iberia and not hidden_resource ioudaioi and not hidden_resource indo and not hidden_resource numidia and not hidden_resource pontic and not hidden_resource punic and not hidden_resource saka and not hidden_resource sarmatian and not hidden_resource skythian
    				;;; WESTERN ARABIA
    				recruit_pool "hellenistic cavalry hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.16  4  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource arabian and not hidden_resource hr_d and not hidden_resource saba_core
    				;;; ANATOLIA
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "thracian cavalry prodromoi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource anatolian and hidden_resource satrapy  
    				recruit_pool "hellenistic cavalry hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.16  4  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry thorakitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry akontistai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource anatolian and not hidden_resource pontic
    				recruit_pool "thracian infantry peltastai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource anatolian and hidden_resource satrapy  ;; placeholder for Thraikioi colonist
    				recruit_pool "celtic infantry uextias"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource anatolian and not hidden_resource pontic and not hidden_resource hellen2 ;; placeholder for Galatian colonists
    				recruit_pool "hellenistic missile cretan archers"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource anatolian and hidden_resource hellen2 and hidden_resource hr_i or hidden_resource hr_j
    				recruit_pool "hellenistic infantry cretan"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource anatolian and hidden_resource hellen2 and hidden_resource hr_i or hidden_resource hr_j
    				;;; BAKTRIA
    				recruit_pool "hellenistic cavalry baktrioi hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource baktria
    				recruit_pool "hellenistic cavalry baktrioi hippotoxotai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource baktria
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource baktria
    				recruit_pool "hellenistic infantry hoplitai indohellenikoi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource baktria
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource baktria
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource baktria
    				recruit_pool "hellenistic infantry peltastai indohellenikoi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource baktria
    				;;; CAUCASUS
    				recruit_pool "hellenistic cavalry hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource caucasus and not hidden_resource pontic
    				;;; EASTERN
    				recruit_pool "hellenistic cavalry thessalikoi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource eastern and hidden_resource hellen1
    				recruit_pool "hellenistic cavalry kataphractoi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource eastern and resource dogs and event_counter ecThorakitaiReform 1 ;; places with the warhorse resource
    				recruit_pool "thracian cavalry prodromoi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and resource dogs and hidden_resource eastern and hidden_resource satrapy and not hidden_resource hr_c  
    				recruit_pool "hellenistic cavalry hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.16  4  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic infantry thorakitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource eastern and not hidden_resource baktria
    				recruit_pool "hellenistic missile cretan archers"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource eastern and hidden_resource hellen1
    				recruit_pool "hellenistic infantry cretan"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource eastern and hidden_resource hellen1
    				recruit_pool "thracian infantry peltastai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource eastern and hidden_resource satrapy and not hidden_resource hr_c ;; placeholder for Thraikioi colonist 
    				;;; IOUDAIA
    				recruit_pool "hellenistic cavalry hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.16  4  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic missile cretan archers"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				recruit_pool "hellenistic infantry cretan"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource ioudaioi and not hidden_resource eastern and not hidden_resource egypt
    				;;; EGYPT
    				recruit_pool "hellenistic cavalry kleruchoi agema"  1  0.04  1  0  requires factions { f_ptolemaioi, } and hidden_resource egypt and not hidden_resource hr_f
    				recruit_pool "thracian cavalry prodromoi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource egypt and hidden_resource hellen2 
    				recruit_pool "hellenistic cavalry hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.16  4  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic infantry thorakitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource egypt and not hidden_resource hr_f
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource egypt and not hidden_resource ethiopia and not hidden_resource libya
    				recruit_pool "thracian infantry peltastai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource egypt and not hidden_resource hr_f  ;; placeholder for Thraikioi colonist
    				recruit_pool "celtic infantry uextias"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource egypt and not hidden_resource hr_f ;; placeholder for Galatian colonists
    				recruit_pool "hellenistic missile cretan archers"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource egypt and hidden_resource hellen1
    				recruit_pool "hellenistic infantry cretan"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource egypt and hidden_resource hellen1
    				;;; HELLAS
    				recruit_pool "hellenistic cavalry hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.16  4  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic infantry thorakitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource hr_a and not hidden_resource hr_c and not hidden_resource eastern and hidden_resource greek1 or hidden_resource hellen1
    				recruit_pool "hellenistic missile cretan archers"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource hr_a and hidden_resource hr_i and hidden_resource greek1
    				recruit_pool "hellenistic infantry cretan"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource hr_a and hidden_resource hr_i and hidden_resource greek1
    				;;; EPIDAMNOS, BYZANTION, MASSALIA, EMPORION & SALAMIS
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource iberia ;; Massalia and Emporion
    				recruit_pool "thracian cavalry prodromoi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource greek2 and hidden_resource thrakia 
    				recruit_pool "hellenistic cavalry hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.16  4  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic infantry thorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource greek2 and hidden_resource illyria ;; Epidamnos
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource greek2 and hidden_resource celtic or hidden_resource thrakia or hidden_resource illyria or hidden_resource iberia or hidden_resource hyparchia
    				recruit_pool "thracian infantry peltastai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource greek2 and hidden_resource thrakia ;; placeholder for Thraikian colonist in Byzantion
    				recruit_pool "hellenistic missile cretan archers"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource greek2 and hidden_resource hyparchia ;; Salamis
    				recruit_pool "hellenistic infantry cretan"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource greek2 and hidden_resource hyparchia ;; Salamis
    				;;; KNOSSOS, RHODOS & KYRENE
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource greek1 and hidden_resource libya ;; Kyrene
    				recruit_pool "hellenistic cavalry hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource greek1 and hidden_resource libya ;; Kyrene
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource greek1 and hidden_resource libya ;; Kyrene
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.16  4  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource greek1 and hidden_resource libya ;; Kyrene
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.16  4  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern
    				recruit_pool "hellenistic infantry thorakitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern and not hidden_resource libya and not hidden_resource krete ;; Rhodos
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern
    				recruit_pool "hellenistic missile cretan archers"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource krete
    				recruit_pool "hellenistic infantry cretan"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource krete
    				recruit_pool "hellenistic missile cretan archers"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern and not hidden_resource libya and not hidden_resource krete ;; Rhodos - placeholder for Rhodioi Sphendonetai
    				recruit_pool "hellenistic infantry cretan"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource greek1 and hidden_resource hr_d and not hidden_resource logades and not hidden_resource eastern and not hidden_resource libya and not hidden_resource krete ;; Rhodos
    				;;; MEGALE HELLAS
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic cavalry lonchophoroi hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.2  5  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic infantry thorakitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource hr_a and hidden_resource hr_c and hidden_resource greek1 or hidden_resource greek2
    				;;; INDIA
    				recruit_pool "hellenistic cavalry baktrioi hippeis"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource indo and not hidden_resource eastern
    				recruit_pool "hellenistic cavalry baktrioi hippotoxotai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource indo and not hidden_resource eastern
    				recruit_pool "hellenistic infantry hoplitai indohellenikoi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource indo and not hidden_resource eastern
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource indo and not hidden_resource eastern
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.04  1  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource indo and not hidden_resource eastern
    				recruit_pool "hellenistic infantry peltastai indohellenikoi"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource indo and not hidden_resource eastern
    				;;; PONTIC
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource pontic and hidden_resource skythian
    				recruit_pool "thracian cavalry prodromoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource pontic and hidden_resource thrakia
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource pontic
    				recruit_pool "hellenistic cavalry thureopherontes hippotoxotai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource pontic and not hidden_resource thrakia
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.12  3  0  requires factions { f_pontos, } and event_counter ecThorakitaiReform 1 and hidden_resource pontic
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource pontic and hidden_resource thrakia
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource pontic 
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource pontic
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource pontic
    				recruit_pool "hellenistic infantry thorakitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource pontic and hidden_resource anatolian and not hidden_resource thrakia
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource pontic
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource pontic
    				recruit_pool "hellenistic infantry thureopherontes toxotai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource skythian
    				recruit_pool "thracian infantry peltastai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, } and hidden_resource pontic and hidden_resource thrakia or hidden_resource dacia ;; placeholder for Thraikian colonist in Nikaia/Histria
    				;;; PUNIC
    				recruit_pool "hellenistic cavalry xystophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and hidden_resource punic
    				recruit_pool "hellenistic cavalry hippakontistai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThorakitaiReform 1 and hidden_resource punic
    				recruit_pool "hellenistic cavalry thureopherontes hippeis"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry hemithorakitai"  1  0.12  3  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry thureophoroi"  1  0.12  3 0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry machairophoroi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry thorakitai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThorakitaiReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry akontistai"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and not event_counter ecThureosReform 1 and hidden_resource punic
    				recruit_pool "hellenistic infantry euzonoi"  1  0.08  2  0  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_pontos, f_pergamon, f_bosporan, f_baktria, f_kh, } and event_counter ecThureosReform 1 and hidden_resource punic
    				religion_level bonus 1  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, }  and not region_religion rel_h 70 and event_counter ecReligionUpdate 1
    				law_bonus bonus 2  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, }
    				free_upkeep bonus 2  requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, }
    				farming_level bonus -3 requires factions { f_makedonia, f_epeiros, f_seleukid, f_ptolemaioi, f_baktria, f_kh, f_pontos, f_pergamon, f_bosporan, }
                }
                material stone
                construction  4
                cost  2000
                settlement_min huge_city
                upgrades
                {
                }
            }
        }
        plugins
        {
        }

  6. #6
    Roma_Victrix's Avatar Call me Ishmael
    Join Date
    Sep 2010
    Location
    Virginia, USA
    Posts
    15,242

    Default Re: KH being able to build military colonies and Hellenistic poleis

    ^^ Quick reminder: each one of these blocks of text must be copied and lined up perfectly (without any spaces in between) as you paste over your original document called "export_descr_buildings". I'd recommend that you copy and paste it all together in one separate document, making sure things are lined up right, before pasting over the corresponding text found in your "export_descr_buildings" file.

  7. #7

    Default Re: KH being able to build military colonies and Hellenistic poleis

    Also note. With the upcoming review of the KH goverments this change isnt very reccomended. They already get extra recruitment from Polis and conversion from givevrments, and their post reform goverments are also gonna give them basically what the colonies give to other factions (with some exceptions like phalangitai).
    If you make them been able to create and use colonies too their recruitment posibilities are gonna become huge and unbalacing.

    We will either find a way, or make one.


  8. #8
    Roma_Victrix's Avatar Call me Ishmael
    Join Date
    Sep 2010
    Location
    Virginia, USA
    Posts
    15,242

    Default Re: KH being able to build military colonies and Hellenistic poleis

    Very true. However, in comparison to other Hellenistic factions, KH is pretty stunted in terms of recruitment capabilities for native Hellenic units outside of their core territories. For instance, the Seleukids can recruit Cretan archers in numerous provinces of the eastern Mediterranean basin, yet KH is limited to recruiting them only in Crete and a couple other places perhaps. That's a huge disadvantage and that's not the only unit that's affected by this.

  9. #9

    Default Re: KH being able to build military colonies and Hellenistic poleis

    Quote Originally Posted by Roma_Victrix View Post
    Very true. However, in comparison to other Hellenistic factions, KH is pretty stunted in terms of recruitment capabilities for native Hellenic units outside of their core territories. For instance, the Seleukids can recruit Cretan archers in numerous provinces of the eastern Mediterranean basin, yet KH is limited to recruiting them only in Crete and a couple other places perhaps. That's a huge disadvantage and that's not the only unit that's affected by this.
    An issue completely resolved with their new government buildings - two of which imitate the helcol pools.

    With the next patch, the only thing you really need of this set of changes is the ability to establish new polis buildings, if desired.

  10. #10
    delra's Avatar Praepositus
    Join Date
    Jun 2007
    Location
    Warsaw, Poland
    Posts
    5,590

    Default Re: KH being able to build military colonies and Hellenistic poleis

    So basically government itself will be a polis?

  11. #11

    Default Re: KH being able to build military colonies and Hellenistic poleis

    No. That whole thread where I laid out the details was lost, crap.

    Strategeia gives a small pool of local levies, across a broad swathe of the map. Can't be built anywhere with a bigger polis than minor.
    Polis en Symmachia kai Philia requires a polis, and gives no recruitment of it's own.
    Synhedrion ton Hellenon/Symmachikon Koinon require a polis, and give a pool similar to a helcol_one.
    Epimeleteia epi Laous requires there not be a polis, and gives a big native pool.
    Epistateia epi Hellenas requires there not be a polis, but with >50% rel_h and similates a polis_two pool. This is for Greek settlements that don't already have a polis (and normally KH can't build one, either).
    Sympoliteia Hellenon/Polis tou ton Hellenon Koinou require at least a polis_two and similate a helcol_two pool - minus Phalangitai (get Deuteroi instead).

  12. #12
    delra's Avatar Praepositus
    Join Date
    Jun 2007
    Location
    Warsaw, Poland
    Posts
    5,590

    Default Re: KH being able to build military colonies and Hellenistic poleis

    Okay, that looks reasonable. :-)

    Are Greeks going to get (one day, when ready?) that fancy reform phalanx they were getting in EB1?

  13. #13

    Default Re: KH being able to build military colonies and Hellenistic poleis

    Quote Originally Posted by delra View Post
    Okay, that looks reasonable. :-)

    Are Greeks going to get (one day, when ready?) that fancy reform phalanx they were getting in EB1?
    Nope, not as far as I can see.

  14. #14
    Roma_Victrix's Avatar Call me Ishmael
    Join Date
    Sep 2010
    Location
    Virginia, USA
    Posts
    15,242

    Default Re: KH being able to build military colonies and Hellenistic poleis

    What kind of additional heavy units could Koinon Hellenon expect to see in the next big release a year or so from now? I love the new thorakitai heavy infantry and the old tried-and-true standard before that, the epilektoi hoplitai, but what else is in the works? And cavalry-wise, I love those Thessalikoi lancers. They're not as heavy duty as the Seleukid cataphracts, but Koinon Hellenon was seriously lacking some mounted punch. Now they've got some real muscle! I'd like to see more of that, to be honest. But, you know, while being totally historically accurate.

    Could the Koinon Hellenon field a unique pike phalanx unit akin to the Agema Phalangitai of Macedon, the Ptolemaic Empire, and the Seleukid Empire? The Deuteroi phalangitai are pretty cool, but they're not exactly elite. Did any of the Greek city-states south of Thessaly employ elite pike phalanx units to match the Macedonian ones or those of the eastern successor states?

  15. #15
    delra's Avatar Praepositus
    Join Date
    Jun 2007
    Location
    Warsaw, Poland
    Posts
    5,590

    Default Re: KH being able to build military colonies and Hellenistic poleis

    Ideally we'd get a different hoplite for each hellenic city on the map.

  16. #16

    Default Re: KH being able to build military colonies and Hellenistic poleis

    The Hellenistic roster is virtually complete, barring some late Lancers and one other late cavalry unit; then Tarantinoi, Spartans, Hyperaspistai (a heavier elite to partner the Peltastai Logades), Rhodian Slingers and possibly a late elite skirmisher.

    KH won't get any phalanxes beyond the levy type and mercenaries. It was often a temporary experiment that some cities had phalanxes at all.

    Quote Originally Posted by delra View Post
    Ideally we'd get a different hoplite for each hellenic city on the map.
    That would be a waste of slots for what is essentially a bunch of the same units.
    Last edited by QuintusSertorius; January 15, 2016 at 07:39 AM.

  17. #17

    Default Re: KH being able to build military colonies and Hellenistic poleis

    Yeah, the greek poleis always had problems to arrange phalangites when they wanted them and even when they did their sucess was mediocre at best.

    Glad to see we will have some of those unique region units like Tarantinoi and Spartans. Didnt thought you were gonna include the later. Nice because would make more symbolic that normally medicore settelment. Would they replace standard hoplites there or just be an addition? I guess they will be somewhere in the middle of the epilektoi and the standar ones, maybe closer to the first morale and fatigue but with similar equipment to latter.

    Theres no gonna be other units like Rhodian slingers? I thought I had heard of those.

    After the change I guess as Quintus said only interest would be founding polis. Although in that case you will always have lots of colony points available, maybe you would need to strecht the rate at which they ar received a lot for them Victrix.
    You still will get the best recruitment from your core, but I think that makes sense for all factions, even more for the KH given their background and structure. Could be a problem if the core was small but is easilly 10-12 settlements so you can really provide quite a lot of troops. I would understand thats the core that looks to defend its independance, and that carries the real goverment of the Greek League, the rest would be regions where the League has expanded its influence but not real members.

    We will either find a way, or make one.


  18. #18
    delra's Avatar Praepositus
    Join Date
    Jun 2007
    Location
    Warsaw, Poland
    Posts
    5,590

    Default Re: KH being able to build military colonies and Hellenistic poleis

    They'd be AOR units for multiplie factions and each of them could slightly differ from others as a unit. The way Syracusans had longer spears and Massalians different shields in EB1 (or the other way round, can't really recall in detail).

  19. #19

    Default Re: KH being able to build military colonies and Hellenistic poleis

    Sorry, I forgot the Rhodians - they're still planned.

  20. #20
    alex33's Avatar Centenarius
    Join Date
    May 2011
    Location
    Vindobona, Pannonia
    Posts
    803

    Default Re: KH being able to build military colonies and Hellenistic poleis

    Hyperaspistai... that is like the coolest name i ever heard. I guess from what you said they are more of a KH, AB, Pergamon variant of the peltastai Makedones?



Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •