Results 1 to 3 of 3

Thread: War weariness

  1. #1

    Default War weariness

    Where are the tables/scripts with the war weariness effects/triggers?

  2. #2

    Default Re: War weariness

    Triggers and levels in charlemagne.pack -> campaigns -> cha_attila -> war_weariness.lua

    -- These are the values that war weariness will change by given that the player achieves that result in a battle
    battle_result_values = {
    ["heroic_victory"] = -4,
    ["decisive_victory"] = -3,
    ["close_victory"] = -2,
    ["pyrrhic_victory"] = -1,
    ["valiant_defeat"] = 2,
    ["close_defeat"] = 4,
    ["decisive_defeat"] = 6,
    ["crushing_defeat"] = 10
    };


    -- Table of the effect bundles that are activated at the given level of war weariness
    war_weariness_levels = {
    {bundle = "att_bundle_war_weariness_10",value = 106},
    {bundle = "att_bundle_war_weariness_9", value = 93},
    {bundle = "att_bundle_war_weariness_8", value = 80},
    {bundle = "att_bundle_war_weariness_7", value = 68},
    {bundle = "att_bundle_war_weariness_6", value = 56},
    {bundle = "att_bundle_war_weariness_5", value = 45},
    {bundle = "att_bundle_war_weariness_4", value = 34},
    {bundle = "att_bundle_war_weariness_3", value = 24},
    {bundle = "att_bundle_war_weariness_2", value = 15},
    {bundle = "att_bundle_war_weariness_1", value = 7}
    };



    effects should be in the data.pack somewhere in the db folders

  3. #3

    Default Re: War weariness

    Thnx

Posting Permissions

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