set down framework, storage/map gen/etc.

This commit is contained in:
Vermilingua
2013-10-12 13:19:38 +11:00
parent 36b9cf2142
commit acc04d0780
6 changed files with 126 additions and 7 deletions
+49
View File
@@ -3392,5 +3392,54 @@ Events.Setpieces = {
}
}
}
},
"cache": { /* Cache - contains some of supplies from previous game */
title: 'An Underground Cache',
scenes: {
'start': {
text: [
'a destroyed village stands before you',
'with bodies littering the ground.'
],
notification: 'you smell the metallic tang of a wanderer afterburner.',
buttons: {
'enter': {
text: 'enter',
nextScene: {1: 'underground'}
},
'leave': {
text: 'leave',
nextScene: 'end'
}
}
},
'underground': {
text: [
'a small shack stands at the center of the village.',
'there are still supplies inside.'
],
buttons: {
'take': {
text: 'take',
nextScene: {1: 'exit'}
}
}
},
'exit': {
text: [
'all the work of a previous generation is here.',
'ripe for the picking.'
],
onLoad: function() {
World.markVisited(World.curPos[0], World.curPos[1]);
},
buttons: {
'leave': {
text: 'leave',
nextScene: 'end'
}
}
}
}
}
};