Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You may add new entries to existing encounter tables by including encountertables.xml in your mod, using an existing table name and setting the Load="Merge" property on the encountertable tag.

Code Block
languagexml
titleAdding "My New Ammo" to the "Ammo 1" built-in encounter table
<encountertables>
  <encountertable Name="Ammo 1" Load="Merge">
    <objects>
      <object Chance="100" Number="3d6" Blueprint="My New Ammo"></object>
    </objects>
  </encountertable>
</encountertables>

...