I've been attempting to add Formation Attack to a unit I've created but I can't find it or the Disciplined ability anywhere in the PFM. Can someone point me to where it is?
I've been attempting to add Formation Attack to a unit I've created but I can't find it or the Disciplined ability anywhere in the PFM. Can someone point me to where it is?
Haven't done it myself yet, but I think it's done in the following way:
First find the unit you want to edit inside: db > land_units_tables
Let's say we want to change "Ger_Sword_Masters", it's on line 284. Scroll to the right until you see the field called "attribute_group". On line 284 in the attribute_group field it says: "melee_infantry_elite_cold"
Now let's go look up what that does exactly. Go to db > unit_attributes_to_groups_junctions_tables
Look on the right side for "melee_infantry_elite_cold". It gives the unit "encourages", "hide_forest", and "resist_cold". That's not what you want right? Because you want "formed_attack".
Now I think there are three ways to give formed_attack to Ger_Sword_Masters.
1.You can change the Ger_Sword_Masters unit's attribute_group inside land_units to (for example) "heavy_infantry".
But this will also add all the other attributes that come with heavy_infantry.
You can see which attributes are added to heavy_infantry inside db > unit_attributes_to_groups_junctions_tables
2. Go to: db > unit_attributes_to_groups_junctions_tables
Then you can add formed_attack to "melee_infantry_elite_cold".
But then all units that are part of melee_infantry_elite_cold will get formed_attack.
3. You can create a new attribute group inside db > unit_attributes_groups_tables.
Then you add that newly created attribute group inside: db > unit_attributes_to_groups_junctions_tables, and give it a few attributes like formed_attack.
And afterwards you add the unit Ger_Sword_Masters to your newly created attribute group. You do that inside db > land_units_tables, inside the field called attribute_group.