DigglesMods/BugFix

Wrong Weapon Combinations

Closed this issue · 0 comments

In the file Data\Scripts\init\fight.tcl there are weapon combinations defined.

fight_weapon_kombi { Axt_unq_1 Schild_unq_1 } { 2.0 1.5 }
fight_weapon_kombi { Axt_unq_2 Amulett_1 } { 2.0 0 }
fight_weapon_kombi { Axt_unq_3 Schild_unq_2 } { 2.0 1.5 }
fight_weapon_kombi { Axt_unq_4 Amulett_2 } { 2.0 0 }
fight_weapon_kombi { Schwert_2 Amulett_3 } { 2.5 0 }

The combination (Smaragdschwert - Prallab)
fight_weapon_kombi { Axt_unq_1 Schild_unq_1 } { 2.0 1.5 }
and (Haudrauf, Smaragdschild)
fight_weapon_kombi { Axt_unq_3 Schild_unq_2 } { 2.0 1.5 }

should be (Smaragdschwert - Smaragdschild)
fight_weapon_kombi { Axt_unq_1 Schild_unq_2 } { 2.0 1.5 }
and (Haudrauf, Prallab)
fight_weapon_kombi { Axt_unq_3 Schild_unq_1 } { 2.0 1.5 }

Thanks to tomscorer (Forum)