I narrowed down the issue with blank screen when interacting with Katja and visibly pregnant.
npc_reactions.qsrc line 64
gt 'npc_reactions', 'pregnant'
needs to be called as a function as the reactions will be given as $result.
Changing the line 64 into
$result = func('npc_reactions', 'pregnant', $ARGS[1], $ARGS[2])
follows the same pattern as the other reactions and solves the issue.
Tested in game. Don't mind the few debug lines I used in narrowing down where the problem lies:
View attachment 2466068