### 修改原版剧本描述模板(临时版)【作者:Bstarh-Tao(胡桃)】 所有人可以使用、修改,祝所有mod制作者的制作道理顺利! ### 特别鸣谢 杀老师(寂静风使) ### #原版文件位置:Hearts of Iron IV\common\bookmarks #开局文件blitzkrieg.txt为闪电战剧本(1939),the_gathering_storm.txt为迫近的风暴剧本(1936),各位可以尝试添加新的剧本 bookmarks = { bookmark = { name = "XXX" desc = "XXX_DESC" #都是在本地化文件中汉化 date = 1936.1.1.12 #开始时间(年、月、日、当日时间【以英国伦敦为准】) picture = "GFX_select_date_1936" #剧本图片 default_country = "GER" #维基百科描述:default = yes用于将书签标记为默认,导致游戏在主菜单中预加载其条件,并让玩家默认选择它。默认为 false,只有一个书签应该有这个。 default = yes "TAG" = { #必须要使用英文双引号 history = "TAG_GATHERING_STORM_DESC" #法国剧本描述 ideology = democratic #意识形态 available = { } #使用此描述的条件 ideas = { 直接写ideas(民族精神)的名字,好像只能写3个 } focuses = { 直接写国策的id(名字),好像也只能写3个 } } #其他国家 "---"={ history = "OTHER_GATHERING_STORM_DESC" } #次要国家 "TAG" = { #必须要使用英文双引号 history = "TAG_GATHERING_STORM_DESC" #法国剧本描述 ideology = democratic #意识形态(维基百科描述:是国家开始的意识形态群体。这用于确定国家领导人、意识形态图标、国家名称和国旗。) available = { } #使用此描述的条件(维基百科描述:是触发块,必须满足该触发块才能使国家/地区显示在选择中。这通常仅用于 DLC 检查,因为在选择国家/地区之前,其他任何内容都不得合理更改。) minor = yes #是否是次要国家,填yes就是次要国家,不写此代码或写no就是主要国家,不过国家排序好像是按这个文件tag写的顺序排的 # 维基百科描述:用于将国家/地区标记为次要国家/地区,使其以小旗帜显示在下方菜单中,而不是显示领导者的顶部菜单中。这也要求国家/地区从没有默认 = yes, # 的国家焦点树开始显示在选择中,在基础游戏中使用,以使有趣的国家/地区选择取决于 DLC。 ideas = { 直接写ideas(民族精神)的名字,好像只能写3个(#维基百科描述:是选择国家时应该向玩家展示的民族精神清单。 # 这不会改变或取决于国家在启动时的实际精神,这通常在国家历史或州历史中处理。默认情况下,限制为 3 个条目。) } focuses = { 直接写国策的id(名字),好像也只能写3个(#维基百科描述:是选择国家/地区时应向玩家显示的国家重点列表。默认情况下,限制为 3 个条目。) } } …… effect = { randomize_weather = 22345 # <- Obligatory in every bookmark ! 貌似是必须写的 #123 = { rain_light = yes } 不知道什么意思 } } } #示例 #bookmarks = { # bookmark = { # Relatively empty bookmark # name = example_bookmark_1 # desc = example_bookmark_1_desc # date = 1936.1.1.12 # picture = GFX_select_date_1936 # # "---" = { # history = OTHER_SCENARIO1_DESC # } # effect = { # randomize_weather = 1228 # } # } # bookmark = { # A bookmark with a few countries. # name = example_bookmark_2 # desc = example_bookmark_2_desc # date = 1936.1.1.12 # picture = GFX_select_date_1936 # # default = yes # default_country = BHR # # BHR = { # history = BHR_SCENARIO2_DESC # ideology = neutrality # # focuses = { BHR_focus_1 } # ideas = { # BHR_idea_1 # BHR_idea_2 # } # } # QAT = { # history = QAT_SCENARIO2_DESC # ideology = democratic # minor = yes # # available = { NOT = { has_dlc = "Arms Against Tyranny" } } # } # QAT = { # history = QAT_SCENARIO2_DESC # ideology = democratic # minor = yes # # focuses = { # QAT_focus_1 # QAT_focus_2 # } # available = { has_dlc = "Arms Against Tyranny" } # } # "---" = { # history = OTHER_SCENARIO2_DESC # } # effect = { # randomize_weather = 45768 # 321 = { transfer_state_to = QAT } # Despite being on the same date as the previous bookmark, it will have different starting history # } # } #}