国策制作

本页面所适用的版本可能已经过时,最后更新于1.8
林登万讨论 | 贡献2020年8月15日 (六) 23:39的版本

国策的定义在/Hearts of Iron IV/common/national_focus/*.txt

国策

单个国策被捆绑于国策树上。

属性

id

(变量类型: 字符串string) 国策的独一无二的标识符。

text

(变量类型: 字符串string, 默认: id) 一个可替换的文本标识符。这允许多个国策使用同一个名称和描述。

dynamic

(变量类型: 布尔boolean, 默认: no) 如果为真,本地化的字符串可以包括占位符,例如可以允许国策名字根据意识形态改变。

cost

(变量类型: number (three decimal places precision), 默认: 0) 国策将要花费多长时间(乘以7天)。

allow_branch

(变量类型: AND trigger, 默认: { }) If this trigger is non-empty it decides exclusively whether a focus is available. If it is false, the focus and all its dependants will be unavailable and invisible.

前提条件(prerequisite)

定义一系列作为该国策前提条件的国策(至少一个)。前提国策的id可以由focusOR给出。可以出现多次,在这种情况下每一个prerequisite都需要满足。例如:

prerequisite = { focus = GER_kdf_wagen OR = GER_synthetic_rubber }
prerequisite = { focus = GER_important_focus }

在上面的例子中,GER_kdf_wagenGER_synthetic_rubber中的一个完成了,就是满足了国策的第一个前提条件,但是GER_important_focus也需要完成。第一行也可以等效地写成prerequisite = { focus = GER_kdf_wagen focus = GER_synthetic_rubber }.

互斥(mutually_exclusive)

定义一系列国策,每个国策都和该国策互斥。语法规则和prerequisites相同。 Can be provided multiple times, to make the focus part of multiple sets of mutually exclusive focuses.

available

(变量类型: AND trigger, 默认: { }) In the absence of allow_branch, a focus will not be available if this trigger is false.

available_if_capitulated

(变量类型: 布尔boolean, 默认: no) If false, the focus is unavailable to countries that are capitulated, and if currently active, it will cancel when the country capitulates.

cancelable

(变量类型: 布尔boolean, 默认: yes) If set to false, the focus may not be cancelled explicitly.

cancel

(变量类型: AND trigger, 默认: { }) When a focus is in progress and the cancel trigger becomes true, the progress will get canceled. In contrast to normal AND triggers, an empty trigger is treated as false.

cancel_if_invalid

(变量类型: 布尔boolean, 默认: yes) If true, the active focus will cancel when available becomes false.

continue_if_invalid

(变量类型: 布尔boolean, 默认: no) If true, cancel and cancel_if_invalid get ignored

select_effect

(变量类型: effect) When the focus gets selected, this effect will be executed.

completion_reward

(变量类型: effect) 当国策完成时,效果将会实施。

complete_tooltip

(变量类型: effect) The focus' tooltip will show this effect instead of the actual completion_reward.

跳过(bypass)

(变量类型: AND trigger, 默认: { }) Any focus that is currently running or available will bypass if this trigger is true. In contrast to normal AND triggers, an empty trigger is treated as false. Bypassing ignores the available trigger. If a focus has a mutually exclusive choice, the player needs to bypass it explicitly, otherwise the bypass happens automatically as soon as the conditions are fulfilled.

icon

(变量类型: 字符串string) Graphical icon name, normally defined in /Hearts of Iron IV/interface/goals.gfx.

x

(变量类型: 整数integer, 默认: 0) Horizontal visual position of the focus, in grid columns.

y

(变量类型: 整数integer, 默认: 0) Vertical visual position of the focus, in grid rows.

offset

An additional shift of the x and y attributes, conditioned on a trigger. The x and y attributes are 整数integers, trigger is an AND trigger. Example:

offset = {
	x = -1
	y = 0
	trigger = {
		NOT = { has_dlc = "Man the Guns" }
	}
}

relative_position_id

(变量类型: 字符串string) The graphical coordinates of this focus will be taken relative to the referenced focus. Usually this is one of the prerequisites, allowing an entire branch to moved around by just moving the root focus.

historical

(变量类型: 布尔boolean, 默认: no) unused

historical_ai

(变量类型: AND trigger, 默认: { }) If historical AI focus is enabled, the AI will only pick the focus if this trigger is true.

ai_will_do

(变量类型: MTTH, 默认: { base = 1 }) Defines the probability of the AI picking this focus. The value is further modified by +50% if the focus is not at the root of a branch, proportionately reduced if a mutually exclusive choice, as well as multiplied by any focus_factors in AI strategy plans. For each available focus, the AI generates a random number between 0 and the calculated value. It chooses the focus with the highest resulting number.

For example if two focuses are available with calculated values of 1.5 and 3 respectively, the former has a chance of 1-in-6 to be picked and the latter 5-in-6.

will_lead_to_war_with

(变量类型: country tag) The specified country will receive a warning that war goals are being justified against it while the focus is running. Can appear multiple times.

Localization

The localization keys of focuses are prefixed with its id (or text). Given a focus with id = XYZ, the localization keys are

  • XYZ: name
  • XYZ_desc: description

国策树

Each country is assigned a focus tree, which is a collection of national focuses. It can get amended by continuous focuses and shared focuses.

Attributes

id

(变量类型: 字符串string) A unique identifier for the focus tree.

country

(变量类型: MTTH, 默认: { base = 1 }) A score for the fit of this tree for the given tag. A country uses the national focus tree with the highest score. To assign a tree to a particular country, the score should be zero by 默认 and modified to a high value for just that country.

默认

(变量类型: 布尔boolean, 默认 no) If set to yes, this focus tree will be used for all countries that did not get a score greater than 0 on any focus tree. Only one focus tree should be set to be the 默认, generic_focus in the base game.

reset_on_civil_war

(变量类型: 布尔boolean, 默认: yes) If set to no, if the newly spawned tag in a civil war gets the same focus tree, it will copy the progress unlocked by the original country. Otherwise it starts the focus tree from the beginning.

continuous_focus_position

(变量类型: point, 默认: { x = 0, y = 0 }) The visual location of the continuous focus palette.

focus

(变量类型: national focus) Defines a national focus as described above that is added to this tree. Can appear multiple times.

shared_focus

(变量类型: 字符串string) Causes the referenced shared focus and its dependants to be inserted in this tree. Can appear multiple times. A shared focus is declared outside of any focus tree using shared_focus. It otherwise has the same semantics as a normal national focus.

例子

shared_focus = {
    id = shared_1
    x = 10
    offset = {
        x = 10
        trigger = {
            tag = LIT
        }
    }
    completion_reward = {
        army_experience = 10
    }
}
focus_tree = {
    id = lithuania_focus
    country = {
        base = 0
        modifier = {
            add = 10
            tag = LIT
        }
    }
    shared_focus = shared_1

    focus = {
        id = LIT_focus_1
        x = 10
        completion_reward = {
            navy_experience = 10
        }
    }
    focus = {
        id = LIT_focus_2
        prerequisite = { focus = LIT_focus_1 }
        relative_position_id = LIT_focus_1
        y = 10
        completion_reward = {
            navy_experience = 10
        }
    }
}
focus_tree = {
    id = basic_focus
    country = {
        base = 1
    }
    shared_focus = shared_1
}