-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCTXP.config
More file actions
53 lines (48 loc) · 2.25 KB
/
Copy pathCTXP.config
File metadata and controls
53 lines (48 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Configuration file for Scouting Effect Movement Speed by quezzas (original mod by Dennis)
#### Use custom Scouting perk Experience gain
# true or false to activate or disable extra Scouting XP gain while moving on the campaign map.
# When enabled, your scout gains bonus XP every in-game hour based on terrain difficulty:
# Water = 20 XP, Mountain/Snow/Dune = 15 XP, Steppe/Desert/Swamp/Forest = 10 XP,
# Plain/Lake/River/Canyon/Rural/Flat = 5 XP
# Set to false to only use the game's native Scouting XP gain (Base XP is 5).
gainBonusXP=true
#### Experience gained factor
# Multiply bonus XP gained from difficult terrain. Has no effect if gainBonusXP is false.
# (Min 0.0, Max 1.0.)
# Example:
# 1.0 (Default) -> Forest 5+5=10
# 0.6 (60% extra) -> Forest 5+3=8
# 0.0 (No extra) -> Forest 5+0=5
bonusXpFactor=1.0
#### Speed bonus Factor
# IMPORTANT! Use . instead of ,
# Formula: base_speed * (1 + speedFactor * ScoutingSkill)
# Example: 5.0 * (1 + 0.002 * 200) = 5.0 * 1.4 = 7.0 (that means +40% speed at Scouting 200)
speedFactor=0.002
#### Use flat speed bonus
# false (default) = percentage bonus: base_speed * (1 + speedFactor * ScoutingSkill)
# Bonus scales with base speed, so smaller parties get a bigger absolute bonus.
# true = flat bonus: base_speed + (speedFactor * ScoutingSkill)
# Bonus is the same regardless of party size.
#
# Note: with flat mode, speedFactor=0.002 gives only +0.4 speed at Scouting 200.
# You may want a higher speedFactor (e.g. 0.005) when using flat mode.
useFlatSpeedBonus=false
#### Speed bonus effects specific Groups
# Choose which parties get the scouting speed bonus.
# Combine multiple groups with ";" to apply the bonus to any party that matches at least one (OR logic).
#
# Available groups:
# 1 - your Main Party
# 2 - your Faction (all parties in the same kingdom/faction as the player)
# 3 - everyone (any party with a scout)
# 4 - all Lord Parties
# 5 - your Clan (all parties belonging to the player's clan)
#
# Examples:
# appliesTo=1 -> only your own party
# appliesTo=1;5 -> your party and all other parties in your clan
# appliesTo=1;4;5 -> your party, all lord parties, and your clan's parties
# appliesTo=3 -> every party on the map that has a scout
# appliesTo= -> (none)
appliesTo=1