Another typo fix.

This commit is contained in:
Torbjörn Andersson 2023-03-08 18:15:51 +01:00
parent 8d409c6b3b
commit 98b95e92ee
4 changed files with 10 additions and 10 deletions

View file

@ -2755,7 +2755,7 @@ locations: !!omap
You are on a small ledge at the top of a nearly vertical cliff. You are on a small ledge at the top of a nearly vertical cliff.
There is a low crawl leading off to the northeast. There is a low crawl leading off to the northeast.
short: 'You''re at top of cliff.' short: 'You''re at top of cliff.'
maptag: 'Cliftop' maptag: 'Clifftop'
conditions: {DEEP: true} conditions: {DEEP: true}
travel: [ travel: [
{verbs: [CLIMB, DOWN], action: [goto, LOC_CLIFFACE]}, {verbs: [CLIMB, DOWN], action: [goto, LOC_CLIFFACE]},
@ -3173,7 +3173,7 @@ arbitrary_messages: !!omap
To achieve the next higher rating would be a neat trick! To achieve the next higher rating would be a neat trick!
Congratulations!! Congratulations!!
- OFF_SCALE: 'You just went off my scale!!' - OFF_SCALE: 'You just went off my scale!!'
- SAVERESUME_DISABLED: 'Save abd resume are disabled.' - SAVERESUME_DISABLED: 'Save and resume are disabled.'
- RESUME_HELP: 'To resume your Adventure, start a new game and then say "RESUME".' - RESUME_HELP: 'To resume your Adventure, start a new game and then say "RESUME".'
# This message is not currently used # This message is not currently used
#- TABLE_SPACE: |- #- TABLE_SPACE: |-

View file

@ -1,7 +1,7 @@
/* /*
* 'cheat' is a tool for generating save game files to test states that ought * 'cheat' is a tool for generating save game files to test states that ought
* not happen. It leverages chunks of advent, mostly initialize() and * not happen. It leverages chunks of advent, mostly initialize() and
* savefile(), so we know we're always outputing save files that advent * savefile(), so we know we're always outputting save files that advent
* can import. * can import.
* *
* Copyright (c) 1977, 2005 by Will Crowther and Don Woods * Copyright (c) 1977, 2005 by Will Crowther and Don Woods

View file

@ -163,9 +163,9 @@ even as primitive as Adventure's.
- [[[SN]]] - [[[SN]]]
http://www.digitalhumanities.org/dhq/vol/1/2/000009/000009.html[Digital http://www.digitalhumanities.org/dhq/vol/1/2/000009/000009.html[Digital
Humanties Quarterly] Humanities Quarterly]
- [[[DND]]] https://en.wikipedia.org/wiki/Dnd_(video_game)[dnd (ivdeo game)] - [[[DND]]] https://en.wikipedia.org/wiki/Dnd_(video_game)[dnd (video game)]
- [[[WUMPUS]]] https://en.wikipedia.org/wiki/Hunt_the_Wumpus[Hunt The Wumpus] - [[[WUMPUS]]] https://en.wikipedia.org/wiki/Hunt_the_Wumpus[Hunt The Wumpus]

View file

@ -5,7 +5,7 @@ usage: make-graph.py [-a] -d] [-m] [-s]
Make a DOT graph of Colossal Cave. Make a DOT graph of Colossal Cave.
-a = emit graph of entire dungeon -a = emit graph of entire dungeon
-d = emit graoh of mazw all different -d = emit graph of maze all different
-f = emit graph of forest locations -f = emit graph of forest locations
-m = emit graph of maze all alike -m = emit graph of maze all alike
-s = emit graph of non-forest surface locations -s = emit graph of non-forest surface locations
@ -70,7 +70,7 @@ def roomlabel(loc):
return description return description
# A forwarder is a location that you can't actually stop in - when you go there # A forwarder is a location that you can't actually stop in - when you go there
# it ships some message (which is the point) then shifts you to a nexr location. # it ships some message (which is the point) then shifts you to a next location.
# A forwarder has a zero-length array of notion verbs in its travel section. # A forwarder has a zero-length array of notion verbs in its travel section.
# #
# Here is an example forwarder declaration: # Here is an example forwarder declaration:
@ -97,7 +97,7 @@ def forward(loc):
return loc return loc
def reveal(objname): def reveal(objname):
"Should this object be revealed when mappinmg?" "Should this object be revealed when mapping?"
if "OBJ_" in objname: if "OBJ_" in objname:
return False return False
if objname == "VEND": if objname == "VEND":
@ -148,8 +148,8 @@ if __name__ == "__main__":
startlocs[location] = [objname] startlocs[location] = [objname]
# Compute reachability, using forwards. # Compute reachability, using forwards.
# Dictionary ke6y is (from, to) iff its a valid link, # Dictionary key is (from, to) iff its a valid link,
# value is correspoinding motion verbs. # value is corresponding motion verbs.
links = {} links = {}
nodes = [] nodes = []
for (loc, attrs) in db["locations"]: for (loc, attrs) in db["locations"]: