42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
/************************
|
|
* LEGACY MAP of *
|
|
* Catacombs *
|
|
* done by *
|
|
* Markus Birth *
|
|
* mbirth@webwriters.de *
|
|
************************/
|
|
|
|
var catacombs = new Array();
|
|
|
|
catacombs['title'] = 'Catacombs';
|
|
catacombs['map'] = [
|
|
'?#####??######?',
|
|
'?#AX #### #?',
|
|
'?## E X## #?',
|
|
'?# #### #?',
|
|
'?##### ## ####?',
|
|
'?# # #?',
|
|
'?# ###### ##?',
|
|
'?# r # # h?',
|
|
'?# #### # # ##?',
|
|
'?# # #??',
|
|
'?## ##### # ###',
|
|
'### # #',
|
|
'# ### # ##### #',
|
|
'# E #X # #',
|
|
'##### ##### #',
|
|
'????# x ###',
|
|
'????#########??'];
|
|
|
|
catacombs['infos'] = [
|
|
' 2| 3|Altar',
|
|
' 3| 7|Locked Door|You need the Catacombs Key to open this door.',
|
|
' 8| 4|Ladder|Entrance',
|
|
' 8|14|Shelf|some items',
|
|
'13| 2|Catacombs Key|plus one item',
|
|
'14| 4|Door|use the nearby switch to open it',
|
|
'16| 9|Switch|opens the nearby door',
|
|
'18|17|Map and engine made by Markus Birth|<<A HREF="mailto:mbirth@webwriters.de">mbirth@webwriters.de</A>>'
|
|
];
|
|
|