CodeFlayer
Explorer
Respectful Greetings
Here is an example of a language and for roll-able tables I have devised, for the first level of the dungeon below the most estimable Tegel Manor. Over a series of posts, I hope to use this language to examine it's design and calibration using computation methods. The over-arching goal is a tool for encounter balance for game masters shared in some form of "open source". While the encounters here examined are from Tegel Manor, the algorithms from 5e will be used (hence the label) under the hypothesis that a monster equivalency exists between original and 5e.
** spoilers **
I hope to expound further in subsequent posts on tools, methods, and results for this and other tables.
--CodeFlayer
edit - specified Original TM, updated room G
Here is an example of a language and for roll-able tables I have devised, for the first level of the dungeon below the most estimable Tegel Manor. Over a series of posts, I hope to use this language to examine it's design and calibration using computation methods. The over-arching goal is a tool for encounter balance for game masters shared in some form of "open source". While the encounters here examined are from Tegel Manor, the algorithms from 5e will be used (hence the label) under the hypothesis that a monster equivalency exists between original and 5e.
** spoilers **
Code:
PropertyTable rat_type {
:5: (giant, .cr. 1/8),
:1: (giant, .cr. 1/4),
:1: (giant, .cr. 1/2),
:1: (giant, .cr. 1)
}
ItemTable lvl_1 {
1#8 ! rat(room A, @rat_type),
2#6 ! rat(room B, @rat_type),
1#6 ! rat(room D, @rat_type),
1#10 ! rat(room F, @rat_type),
[ 3#6 ! rat(room G, @rat_type), magic_item(buried, room G) ]
1#6 ! rat(room H, @rat_type),
1#3 ! rat(room K, @rat_type),
1#4 ! mongoose(room I, giant, .cr. 1),
[ 60% 1 wererat(room J, .cr. 2), chest(invisible, contents unknown)]
}
ItemTable lvl_1_factions {
[
60% 1 lesser rat king(room C, giant, .cr. 2),
1#3*10 ! rat(room C, @rat_type),
gems_or_jewelry
],
[
70% 1 greater rat king(room E, giant, .cr. 3),
6#6 ! rat(room E, @rat_type),
gems_or_jewelry,
magic sword(hidden, .cost. 4000)
]
}
I hope to expound further in subsequent posts on tools, methods, and results for this and other tables.
--CodeFlayer
edit - specified Original TM, updated room G
Last edited: