[BNW] Is there a way to browse the default BNW Lua files for abilities and the like?

GreatKnightJ

Chieftain
Joined
Jul 1, 2018
Messages
4
I'm trying to make a custom trait and want to see the Lua for traits in the vanilla game (vanilla as in unmodded, NOT pre-expansion) to use for reference. Is there any simple way to find these?
 
There aren't any such animals. The trait definitions are read directly from the game's base xml/sql database after everything loads into the game's database from the xml files that define leader traits ( etc), and these settings within the database are implemented directly by the game's core DLL code. None of it is handled in lua files.

So where a trait may have
FightWellDamaged = "true"
appearing within an xml file, this setting for this trait is handled directly at DLL (ie, C++) level rather than within any lua file.
 
Back
Top Bottom