Quick-fix the 'pillo bug'.
[open-adventure.git] / adventure.yaml
index c5987d71ec19c081f15ff1a31232472eae8ab9e8..9f10ce72c8b5cd092978af2ff62bdd7b03b23ca4 100644 (file)
@@ -1,6 +1,6 @@
 # This YAML file gets processed into a collection of data structure and
 # variable initializers describing Colossal Cave.  It replaces an ad-hoc
-# text database shipped with Adventure versions up to 2.6.  The format
+# text database shipped with Adventure versions up to 2.5.  The format
 # change enabled a lot of use of symbolic names where there were previously
 # inscrutable numeric literals.
 #
 #    If the inventory desription begins with "*" the object is dungeon
 #    furniture that cannot be taken or carried.
 #
+# obituaries: Death messages and reincarnation queries.  Order is
+#    significant, they're used in succession as the player racks up
+#    deaths.
+#
 # hints: Each item contains a hint number (add 10 to get cond bit),
 #    the number of turns he must be at the right loc(s) before
 #    triggering the hint, the points deducted for taking the hint, the
 #    message number (section 6) of the question, and the message
 #    number of the hint.  These values are stashed in the "hints"
 #    array.
+#
+# These correspond to sections 1, 2, 5, 6, 10, 11, and 14 in the old
+# adventure.text format.  Sections 3, 4, 7, 8, and 9 haven't moved yet.
+# Section 12 was obsolete.
 
 locations: !!omap
 - LOC_NOWHERE:
@@ -1042,8 +1050,8 @@ arbitrary_messages:  !!omap
 - ONE_HIT: 'One of them gets you!'
 - NONE_HIT: 'None of them hits you!'
 - DONT_KNOW: 'Sorry, I don''t know the word "%s".'
-- WHAT_DO: 'What do you want to do with the %L?'
-- NO_SEE: 'I see no %L here.'
+- WHAT_DO: 'What do you want to do with the %L%L?' # FIXME: %L%L should become %L once parsing no longer depends on packed tokens
+- NO_SEE: 'I see no %L%L here.' # FIXME: %L%L should become %L once parsing no longer depends on packed tokens
 - DO_WHAT: '%C what?'
 - OKEY_DOKEY: 'Okay, "%s".'
 - GARNERED_POINTS: 'You have garnered %d out of a possible %d points, using %d turn%S.'
@@ -1607,3 +1615,5 @@ hints:
   penalty: 4
   question: MISSING_ONE
   hint: NO_LOCATE
+
+# end