DigglesMods / BugFix

Fixes bugs like 'forever pregnancy', Guard-House, 'transport experience calculation error'
GNU General Public License v3.0
1 stars 1 forks source link

Wrong Weapon Combinations #2

Closed cech12 closed 4 years ago

cech12 commented 5 years ago

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)