Janis Papanagnou <
janis_pa...@hotmail.com> wrote:
> There are three aligned quests in every game, each one has an aligned
> key and another artifact as prize.... - Do they count in the
> probability calculation for a successful sacrifice?
>
> I suppose so, but would like a confirmation.
I'm pretty sure they do. Looking at the code (0.0.8E0F1), the artifacts
that count against prayer and artifact wishing are the ones marked true
in the array artiexist, counted by nartifact_exist(artifact.c).
The Key of Chaos, for example, is created in makemon by calling oname on
a skeleton key when creating Vecna. oname in turn calls artifact_exists
which sets the artiexist element for the artifact with that name.
The Hand of Vecna is created in a very similar way, by calling oname on
a severed hand.
I didn't check individually for anything else, but it seems like they
all would count.
> Whenever you stumble into a portal to such a quest these two unique
> items will be generated.
Actually, although the alignment key is generated when creating the
monster who carries it, it looks like the other artifact (Eye of the
Beholder, Hand of Vecna) is only generated upon killing the monster (it
happens in make_corpse(mon.c)), so maybe that helps at least a little
bit!
- Michael