Skip to content

Commit ebcf862

Browse files
committed
Increase Weapon Skill using Swarm trait
1 parent e26b30d commit ebcf862

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

common/src/commonMain/kotlin/cz/frantisekmasa/wfrp_master/common/character/effects/CharacteristicChange.kt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,15 @@ open class CharacteristicChange(
113113
)
114114
}
115115

116+
if (name.equals(translator.translate(Str.character_effect_swarm), ignoreCase = true)) {
117+
return CharacteristicChange(
118+
plus =
119+
Stats.ZERO.copy(
120+
weaponSkill = 10,
121+
),
122+
)
123+
}
124+
116125
if (name.equals(translator.translate(Str.character_effect_tough), ignoreCase = true)) {
117126
return CharacteristicChange(
118127
plus =

0 commit comments

Comments
 (0)