1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-05-17 04:55:05 +01:00

Start message changed for binders

This commit is contained in:
Chris-plus-alphanumericgibberish 2014-06-07 05:04:58 -04:00
parent 862af6bd9b
commit 34155f1ae3
2 changed files with 43 additions and 8 deletions

View file

@ -4643,3 +4643,40 @@ But destiny is a strange and winding road.
And things have learnt to walk that once did crawl.
%E
#
# Legacy text for Binders
#
%Cc - 00207
The priests tell a story:
After the Creation, the cruel god Moloch rebelled
against the authority of Marduk the Creator.
Moloch stole from Marduk the most powerful of all
the artifacts of the gods, the Amulet of Yendor,
and he hid it in the dark cavities of Gehennom, the
Under World, where he now lurks, and bides his time.
The various gods and heroes of this world struggle
mightily to recover the amulet, for the god who reclaims
the amulet will be granted ascendance over the other
gods of the world.
You, a newly empowered %r, have been heralded
from birth as..., well, no one actually heralded your
birth. But if someone had, they would have heralded
you as an instrument of your local feudal overlord.
You were destined to live and die in the village
of your ancestors.
All that changed in one night, when you stumbled
onto a forbidden secret. Since that night, priests
and shopkeepers alike have eyed you with suspicion,
while unseen whisperers ceaselessly repeat a litany
of names in your ears.
Exiled from your village, you seek to claim a new
destiny in the depths of %Z,
or die in the attempt.
Go bravely with %d!
%E

View file

@ -881,18 +881,17 @@ newgame()
if (flags.legacy) {
flush_screen(1);
if(Role_if(PM_EXILE)){
com_pager(207);
#ifdef CONVICT
if (Role_if(PM_CONVICT)) {
} else if (Role_if(PM_CONVICT)) {
com_pager(199);
#endif /* CONVICT */
} else if(Race_if(PM_ELF)){
com_pager(201);
} else {
com_pager(1);
}
#else
if(Race_if(PM_ELF) && (Role_if(PM_PRIEST) || Role_if(PM_RANGER))){
} else if(Race_if(PM_ELF) && (Role_if(PM_PRIEST) || Role_if(PM_RANGER))){
com_pager(201);
} if(Race_if(PM_WORM_THAT_WALKS)){
} else if(Race_if(PM_WORM_THAT_WALKS)){
if(Role_if(PM_CONVICT)){
com_pager(204);
} else if(Race_if(PM_ELF) && (Role_if(PM_PRIEST) || Role_if(PM_RANGER))){
@ -905,7 +904,6 @@ newgame()
} else {
com_pager(1);
}
#endif /* CONVICT */
}
#ifdef INSURANCE