Results 1 to 2 of 2

Thread: Traits/Ancillaries where can i find a liist

  1. #1

    Default Traits/Ancillaries where can i find a liist

    Hi, im not expecting a detailed list. its just ive never messed with my medieval 2 files so ive got no idea where the information will be stored. With so many cool traits added it'd be nice to have a better look at whats needed to unlock some etc, Granted alot of them are very straight forward like the one where you get +morale for some generals with the specific trait, and others that benefit from %movement based on the units in the army. but others seem to be a little bit more confusing to understand how to activate them

  2. #2
    Seether's Avatar RoTK Workhorse
    Join Date
    Oct 2005
    Location
    FloRida
    Posts
    5,404

    Default Re: Traits/Ancillaries where can i find a liist

    There is no list, so you'll have to look into the different files yourself and find out the different ancillary and trait triggers.

    For ancillaries:
    • Go to the rotk/data/text folder and open export_ancillaries.txt
    • Find the ancillary (or ancillaries) that you want to know more about (ie: Fangtian Halberd)
    • In the brackets directly before the name, you will see the ancillary's reference ID (ie: Fangtian Halberd reference ID is 1dao-101)
    • Now go to rotk/data folder and open export_descr_ancillaries.txt
    • First search "TRIGGERS" to get to the top of the ancillary trigger section
    • Below that, find the reference ID's entry; the triggers to get the Fangtian Halberd will look like this:
      Code:
      ;-1dao-101-----------------------------------------
      Trigger trigger_1dao-101_101
          WhenToTest PostBattle
      
          Condition IsGeneral
                and GeneralFoughtInCombat
                and Trait ZhanDou1000 < 2
                and Trait A1010JnQD-A = 0
                and not I_WorldwideAncillaryExists 1dao-101
                and not FactionType venice
      
          AcquireAncillary 1dao-101  Chance  5
      
      ;------------------------------------------
      Trigger trigger_1dao-101_102
          WhenToTest PostBattle
      
          Condition IsGeneral
                and GeneralFoughtInCombat
                and Trait ZhanDou1000 < 2
                and Trait A1010JnQD-A = 1
                and not I_WorldwideAncillaryExists 1dao-101
                and not FactionType venice
      
          AcquireAncillary 1dao-101  Chance  60
      
      ;------------------------------------------
      Trigger trigger_1dao-101_103
          WhenToTest PostBattle
      
          Condition IsGeneral
                and GeneralFoughtInCombat
                and Trait ZhanDou1000 < 2
                and Trait A1010JnQD-A = 2
                and not I_WorldwideAncillaryExists 1dao-101
                and not FactionType venice
      
          AcquireAncillary 1dao-101  Chance  80
      
      ;------------------------------------------
      Trigger trigger_1dao-101_104
          WhenToTest PostBattle
      
          Condition IsGeneral
                and GeneralFoughtInCombat
                and Trait ZhanDou1000 < 2
                and Trait A1010JnQD-A = 3
                and not I_WorldwideAncillaryExists 1dao-101
                and not FactionType venice
      
          AcquireAncillary 1dao-101  Chance  100
      
      ;------------------------------------------
      Trigger trigger_1dao-101_201
          WhenToTest PostBattle
      
          Condition IsGeneral
                and not I_WorldwideAncillaryExists 1dao-101
                and FactionType venice
      
          AcquireAncillary 1dao-101  Chance  100
      
      ;------------------------------------------
      Trigger trigger_1dao-101_301
          WhenToTest CharacterTurnEnd
      
          Condition IsGeneral
                and not IsFactionLeader
                and not I_WorldwideAncillaryExists 1dao-101
                and FactionType venice
      
          AcquireAncillary 1dao-101  Chance  30
      
      ;------------------------------------------
      Trigger trigger_1dao-101_302
          WhenToTest CharacterTurnEnd
      
          Condition IsGeneral
                and IsFactionLeader
                and not I_WorldwideAncillaryExists 1dao-101
                and FactionType venice
      
          AcquireAncillary 1dao-101  Chance  100


    For traits, done in the same method as described above for ancillaries, the two files you will access are data/text/export_vnvs.txt & data/export_descr_character_traits.txt
    Member of the Imperial House of Hader - Under the Benevolent Patronage of y2day
    A Wolf Among Sheep: A Rise of Three Kingdoms AAR

Posting Permissions

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