|
| 1 | +#################################### |
| 2 | +### USU + MORGENROTE CONFIG FILE ### |
| 3 | +#################################### |
| 4 | + |
| 5 | +# The vic3-tiger.conf file is in standard Paradox script format. |
| 6 | +# It should be placed in the top directory of your mod. |
| 7 | + |
| 8 | +languages = { |
| 9 | + # Check all languages. |
| 10 | +} |
| 11 | + |
| 12 | +# Allows configuring what reports are printed |
| 13 | +filter = { |
| 14 | + show_vanilla = no |
| 15 | + show_loaded_mods = no |
| 16 | + |
| 17 | + # Contains rules for reports, using trigger syntax. |
| 18 | + # Only reports matching the trigger will be printed. |
| 19 | + # The root trigger is an AND block, just like any other trigger. |
| 20 | + trigger = { |
| 21 | + # NOR = { |
| 22 | + # AND = { |
| 23 | + # text = "is_incorporated" |
| 24 | + # file = common/buildings/zMoG_USU_government.txt |
| 25 | + # } |
| 26 | + # } |
| 27 | + ignore_keys_in_files = { |
| 28 | + keys = { exact-duplicate-item } |
| 29 | + files = { |
| 30 | + common/modifier_type_definitions/aMoG_USU_MR_LLWA_pms.txt # This is an intentional overwrite |
| 31 | + } |
| 32 | + } |
| 33 | + } |
| 34 | + |
| 35 | +} |
| 36 | + |
| 37 | +# Use a load_mod section to tell vic3-tiger to load another mod before this one. |
| 38 | +# This is useful when making submods or compatibility patch mods. |
| 39 | +# You can have multiple load_mod sections. |
| 40 | +load_mod = { |
| 41 | + # The label will be used in the error output to mark files from this mod |
| 42 | + # The path to the mod's location. Use forward slashes. |
| 43 | + |
| 44 | + label = "USU" |
| 45 | + mod = "D:/OneDrive/Documents/Paradox Interactive/Victoria 3/mod/Urban Synergy Unleashed" |
| 46 | +} |
| 47 | +load_mod = { |
| 48 | + label = "MR" |
| 49 | + mod = "E:/SteamLibrary/steamapps/workshop/content/529340/2889925770" |
| 50 | +} |
| 51 | +load_mod = { |
| 52 | + label = "LLWA" |
| 53 | + mod = "E:/SteamLibrary/steamapps/workshop/content/529340/3032533792" |
| 54 | +} |
| 55 | + |
| 56 | +# Sometimes vic3-tiger makes a mistake in determining the scope types expected |
| 57 | +# by a scripted trigger or effect. Its conclusions can be overridden here. |
| 58 | +# Scope overrides can be ALL (to accept any scope) or a list separated by |, |
| 59 | +# like character|province|landed_title |
| 60 | +scope_override = { |
| 61 | +} |
| 62 | + |
| 63 | +# Optional block to control output styles and colors. Colors are enabled by default. |
| 64 | +# Another way to disable all ANSI characters in the output is to supply the --no-color flag. |
| 65 | +# That flag will override anything you define here, in the config file. |
| 66 | +output_style = { |
| 67 | + # Default value is 'yes', except with vic3-tiger-auto when it is default 'no'. |
| 68 | + # If set to 'no', no ANSI characters will be added to the output and the output will not be colored. |
| 69 | + # Also, all other settings in this block will be ignored. |
| 70 | +# enable = yes |
| 71 | + |
| 72 | + # Optional block to set the error color. |
| 73 | +# error = { |
| 74 | +# # Default is red. Supported values are Black, Red, Green, Yellow, Blue, Purple, Cyan, White. |
| 75 | +# color = "red" |
| 76 | +# } |
| 77 | + # Optional block to set the warning color. |
| 78 | +# warning = { |
| 79 | +# # Default is yellow. Supported values are Black, Red, Green, Yellow, Blue, Purple, Cyan, White. |
| 80 | +# color = "yellow" |
| 81 | +# } |
| 82 | + # Optional block to set the info color. |
| 83 | +# info = { |
| 84 | +# # Default is green. Supported values are Black, Red, Green, Yellow, Blue, Purple, Cyan, White. |
| 85 | +# color = "green" |
| 86 | +# } |
| 87 | + # Optional block to set the advice color. |
| 88 | +# untidy = { |
| 89 | +# # Default is cyan. Supported values are Black, Red, Green, Yellow, Blue, Purple, Cyan, White. |
| 90 | +# color = "cyan" |
| 91 | +# } |
| 92 | + |
| 93 | +} |
0 commit comments