@sharpee/lang-en-us 0.9.111 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. package/README.md +0 -1
  2. package/actions/asking.d.ts.map +1 -1
  3. package/actions/asking.js +15 -13
  4. package/actions/asking.js.map +1 -1
  5. package/actions/attacking.d.ts.map +1 -1
  6. package/actions/attacking.js +55 -51
  7. package/actions/attacking.js.map +1 -1
  8. package/actions/climbing.d.ts.map +1 -1
  9. package/actions/climbing.js +4 -3
  10. package/actions/climbing.js.map +1 -1
  11. package/actions/closing.js +5 -5
  12. package/actions/closing.js.map +1 -1
  13. package/actions/drinking.js +20 -20
  14. package/actions/drinking.js.map +1 -1
  15. package/actions/dropping.d.ts.map +1 -1
  16. package/actions/dropping.js +4 -3
  17. package/actions/dropping.js.map +1 -1
  18. package/actions/eating.js +20 -20
  19. package/actions/eating.js.map +1 -1
  20. package/actions/entering.js +10 -10
  21. package/actions/entering.js.map +1 -1
  22. package/actions/examining.d.ts +1 -0
  23. package/actions/examining.d.ts.map +1 -1
  24. package/actions/examining.js +12 -11
  25. package/actions/examining.js.map +1 -1
  26. package/actions/exiting.js +4 -4
  27. package/actions/exiting.js.map +1 -1
  28. package/actions/giving.js +12 -12
  29. package/actions/giving.js.map +1 -1
  30. package/actions/going.js +2 -2
  31. package/actions/going.js.map +1 -1
  32. package/actions/index.d.ts +1 -39
  33. package/actions/index.d.ts.map +1 -1
  34. package/actions/index.js +0 -3
  35. package/actions/index.js.map +1 -1
  36. package/actions/inserting.js +8 -8
  37. package/actions/inserting.js.map +1 -1
  38. package/actions/inventory.d.ts.map +1 -1
  39. package/actions/inventory.js +3 -0
  40. package/actions/inventory.js.map +1 -1
  41. package/actions/listening.js +7 -7
  42. package/actions/listening.js.map +1 -1
  43. package/actions/locking.js +8 -8
  44. package/actions/locking.js.map +1 -1
  45. package/actions/looking.js +2 -2
  46. package/actions/looking.js.map +1 -1
  47. package/actions/lowering.js +2 -2
  48. package/actions/lowering.js.map +1 -1
  49. package/actions/opening.js +7 -7
  50. package/actions/opening.js.map +1 -1
  51. package/actions/pulling.js +19 -19
  52. package/actions/pulling.js.map +1 -1
  53. package/actions/pushing.js +14 -14
  54. package/actions/pushing.js.map +1 -1
  55. package/actions/putting.js +12 -12
  56. package/actions/putting.js.map +1 -1
  57. package/actions/raising.js +2 -2
  58. package/actions/raising.js.map +1 -1
  59. package/actions/reading.js +8 -8
  60. package/actions/reading.js.map +1 -1
  61. package/actions/removing.js +8 -8
  62. package/actions/removing.js.map +1 -1
  63. package/actions/searching.js +7 -7
  64. package/actions/searching.js.map +1 -1
  65. package/actions/showing.js +11 -11
  66. package/actions/showing.js.map +1 -1
  67. package/actions/smelling.js +10 -10
  68. package/actions/smelling.js.map +1 -1
  69. package/actions/switching-off.js +12 -12
  70. package/actions/switching-off.js.map +1 -1
  71. package/actions/switching-on.js +11 -11
  72. package/actions/switching-on.js.map +1 -1
  73. package/actions/taking-off.js +4 -4
  74. package/actions/taking-off.js.map +1 -1
  75. package/actions/taking.d.ts.map +1 -1
  76. package/actions/taking.js +8 -5
  77. package/actions/taking.js.map +1 -1
  78. package/actions/talking.js +15 -15
  79. package/actions/talking.js.map +1 -1
  80. package/actions/telling.d.ts.map +1 -1
  81. package/actions/telling.js +14 -13
  82. package/actions/telling.js.map +1 -1
  83. package/actions/throwing.d.ts.map +1 -1
  84. package/actions/throwing.js +24 -20
  85. package/actions/throwing.js.map +1 -1
  86. package/actions/touching.js +20 -20
  87. package/actions/touching.js.map +1 -1
  88. package/actions/turning.js +24 -24
  89. package/actions/turning.js.map +1 -1
  90. package/actions/unlocking.js +8 -8
  91. package/actions/unlocking.js.map +1 -1
  92. package/actions/waiting.js +1 -1
  93. package/actions/waiting.js.map +1 -1
  94. package/actions/wearing.js +5 -5
  95. package/actions/wearing.js.map +1 -1
  96. package/index.d.ts +1 -0
  97. package/index.d.ts.map +1 -1
  98. package/index.js +6 -1
  99. package/index.js.map +1 -1
  100. package/language-provider.d.ts +16 -0
  101. package/language-provider.d.ts.map +1 -1
  102. package/language-provider.js +25 -0
  103. package/language-provider.js.map +1 -1
  104. package/package.json +3 -3
  105. package/sound-messages.d.ts +69 -0
  106. package/sound-messages.d.ts.map +1 -0
  107. package/sound-messages.js +81 -0
  108. package/sound-messages.js.map +1 -0
package/README.md CHANGED
@@ -91,7 +91,6 @@ class BritishEnglishPlugin extends EnglishLanguagePlugin {
91
91
  The package exports its data for customization:
92
92
 
93
93
  - `englishVerbs` - All verb definitions
94
- - `englishTemplates` - All message templates
95
94
  - `englishWords` - Word lists (articles, prepositions, etc.)
96
95
  - `irregularPlurals` - Irregular plural mappings
97
96
  - `abbreviations` - Common abbreviations
@@ -1 +1 @@
1
- {"version":3,"file":"asking.d.ts","sourceRoot":"","sources":["../../../../../../repos/sharpee/packages/lang-en-us/src/actions/asking.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;CA0C1B,CAAC"}
1
+ {"version":3,"file":"asking.d.ts","sourceRoot":"","sources":["../../../../../../repos/sharpee/packages/lang-en-us/src/actions/asking.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;CA6C1B,CAAC"}
package/actions/asking.js CHANGED
@@ -17,23 +17,25 @@ exports.askingLanguage = {
17
17
  // Error messages
18
18
  'no_target': "Ask whom?",
19
19
  'no_topic': "Ask about what?",
20
- 'not_visible': "{You} {can't} see {target}.",
21
- 'too_far': "{target} is too far away.",
20
+ 'not_visible': "{You} {can't} see {the:target}.",
21
+ 'too_far': "{the:cap:target} is too far away.",
22
22
  'not_actor': "{You} can only ask questions of people.",
23
+ // Sentence-start NPC references use {the:cap:target} so proper-named
24
+ // NPCs render without article ("Floyd", not "The Floyd").
23
25
  // Success messages - unknown topic
24
- 'unknown_topic': "{target} says, \"I don't know anything about that.\"",
25
- 'shrugs': "{target} shrugs.",
26
- 'no_idea': "{target} says, \"No idea what you're talking about.\"",
27
- 'confused': "{target} looks confused.",
26
+ 'unknown_topic': "{the:cap:target} says, \"I don't know anything about that.\"",
27
+ 'shrugs': "{the:cap:target} shrugs.",
28
+ 'no_idea': "{the:cap:target} says, \"No idea what you're talking about.\"",
29
+ 'confused': "{the:cap:target} looks confused.",
28
30
  // Success messages - known topic
29
- 'responds': "{target} tells you about {topic}.",
30
- 'explains': "{target} explains about {topic}.",
31
- 'already_told': "{target} says, \"I already told you about that.\"",
32
- 'remembers': "{target} says, \"Ah yes, about {topic}...\"",
31
+ 'responds': "{the:cap:target} tells you about {topic}.",
32
+ 'explains': "{the:cap:target} explains about {topic}.",
33
+ 'already_told': "{the:cap:target} says, \"I already told you about that.\"",
34
+ 'remembers': "{the:cap:target} says, \"Ah yes, about {topic}...\"",
33
35
  // Success messages - conditional responses
34
- 'not_yet': "{target} says, \"I can't tell you about that yet.\"",
35
- 'must_do_first': "{target} says, \"There's something you need to do first.\"",
36
- 'earned_trust': "{target} says, \"Since you've proven yourself, I'll tell you...\""
36
+ 'not_yet': "{the:cap:target} says, \"I can't tell you about that yet.\"",
37
+ 'must_do_first': "{the:cap:target} says, \"There's something you need to do first.\"",
38
+ 'earned_trust': "{the:cap:target} says, \"Since you've proven yourself, I'll tell you...\""
37
39
  },
38
40
  help: {
39
41
  description: 'Ask characters about specific topics to gather information.',
@@ -1 +1 @@
1
- {"version":3,"file":"asking.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/asking.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,cAAc,GAAG;IAC5B,QAAQ,EAAE,kBAAkB;IAE5B,QAAQ,EAAE;QACR,6BAA6B;QAC7B,2BAA2B;QAC3B,kCAAkC;QAClC,iCAAiC;QACjC,+BAA+B;KAChC;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,WAAW,EAAE,WAAW;QACxB,UAAU,EAAE,iBAAiB;QAC7B,aAAa,EAAE,6BAA6B;QAC5C,SAAS,EAAE,2BAA2B;QACtC,WAAW,EAAE,yCAAyC;QAEtD,mCAAmC;QACnC,eAAe,EAAE,sDAAsD;QACvE,QAAQ,EAAE,kBAAkB;QAC5B,SAAS,EAAE,uDAAuD;QAClE,UAAU,EAAE,0BAA0B;QAEtC,iCAAiC;QACjC,UAAU,EAAE,mCAAmC;QAC/C,UAAU,EAAE,kCAAkC;QAC9C,cAAc,EAAE,mDAAmD;QACnE,WAAW,EAAE,6CAA6C;QAE1D,2CAA2C;QAC3C,SAAS,EAAE,qDAAqD;QAChE,eAAe,EAAE,4DAA4D;QAC7E,cAAc,EAAE,mEAAmE;KACpF;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,6DAA6D;QAC1E,QAAQ,EAAE,gFAAgF;QAC1F,OAAO,EAAE,yGAAyG;KACnH;CACF,CAAC"}
1
+ {"version":3,"file":"asking.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/asking.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,cAAc,GAAG;IAC5B,QAAQ,EAAE,kBAAkB;IAE5B,QAAQ,EAAE;QACR,6BAA6B;QAC7B,2BAA2B;QAC3B,kCAAkC;QAClC,iCAAiC;QACjC,+BAA+B;KAChC;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,WAAW,EAAE,WAAW;QACxB,UAAU,EAAE,iBAAiB;QAC7B,aAAa,EAAE,iCAAiC;QAChD,SAAS,EAAE,mCAAmC;QAC9C,WAAW,EAAE,yCAAyC;QAEtD,qEAAqE;QACrE,0DAA0D;QAE1D,mCAAmC;QACnC,eAAe,EAAE,8DAA8D;QAC/E,QAAQ,EAAE,0BAA0B;QACpC,SAAS,EAAE,+DAA+D;QAC1E,UAAU,EAAE,kCAAkC;QAE9C,iCAAiC;QACjC,UAAU,EAAE,2CAA2C;QACvD,UAAU,EAAE,0CAA0C;QACtD,cAAc,EAAE,2DAA2D;QAC3E,WAAW,EAAE,qDAAqD;QAElE,2CAA2C;QAC3C,SAAS,EAAE,6DAA6D;QACxE,eAAe,EAAE,oEAAoE;QACrF,cAAc,EAAE,2EAA2E;KAC5F;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,6DAA6D;QAC1E,QAAQ,EAAE,gFAAgF;QAC1F,OAAO,EAAE,yGAAyG;KACnH;CACF,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"attacking.d.ts","sourceRoot":"","sources":["../../../../../../repos/sharpee/packages/lang-en-us/src/actions/attacking.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyH7B,CAAC"}
1
+ {"version":3,"file":"attacking.d.ts","sourceRoot":"","sources":["../../../../../../repos/sharpee/packages/lang-en-us/src/actions/attacking.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6H7B,CAAC"}
@@ -22,41 +22,45 @@ exports.attackingLanguage = {
22
22
  messages: {
23
23
  // Error messages
24
24
  'no_target': "Attack what?",
25
- 'not_visible': "{You} {can't} see {target}.",
26
- 'not_reachable': "{You} {can't} reach {target}.",
25
+ 'not_visible': "{You} {can't} see {the:target}.",
26
+ 'not_reachable': "{You} {can't} reach {the:target}.",
27
27
  'self': "Violence against {yourself} isn't the answer.",
28
- 'not_holding_weapon': "{You} aren't holding {weapon}.",
29
- 'indestructible': "{target} is far too solid to damage.",
30
- 'need_weapon_to_damage': "{target} requires a weapon to damage.",
31
- 'wrong_weapon_type': "{target} can't be damaged with that type of weapon.",
32
- 'attack_ineffective': "{Your} attack has no effect on {target}.",
28
+ 'not_holding_weapon': "{You} aren't holding {the:weapon}.",
29
+ 'indestructible': "{the:cap:target} is far too solid to damage.",
30
+ 'need_weapon_to_damage': "{the:cap:target} requires a weapon to damage.",
31
+ 'wrong_weapon_type': "{the:cap:target} can't be damaged with that type of weapon.",
32
+ 'attack_ineffective': "{Your} attack has no effect on {the:target}.",
33
33
  // Combat validation errors
34
- 'already_dead': "{target} is already dead.",
34
+ 'already_dead': "{the:cap:target} is already dead.",
35
35
  'violence_not_the_answer': "Violence is not the answer.",
36
- 'combat.cannot_attack': "{You} {can't} attack {targetName}.",
37
- 'combat.already_dead': "{targetName} is already dead.",
38
- 'combat.not_hostile': "{targetName} isn't hostile.",
36
+ // ADR-158: combat.* templates use the formatter chain via the
37
+ // {target} EntityInfo param; CombatService and the attacking action
38
+ // also pass {targetName} (bare string) on the same params block for
39
+ // handler / event-sourcing consumption.
40
+ 'combat.cannot_attack': "{You} {can't} attack {the:target}.",
41
+ 'combat.already_dead': "{the:cap:target} is already dead.",
42
+ 'combat.not_hostile': "{the:cap:target} isn't hostile.",
39
43
  'combat.no_target': "Attack what?",
40
- 'combat.target_unconscious': "{targetName} is already unconscious.",
44
+ 'combat.target_unconscious': "{the:cap:target} is already unconscious.",
41
45
  'combat.need_weapon': "{You} {need} a weapon to attack effectively.",
42
46
  // Combat attack outcomes (ADR-072 CombatService)
43
- 'combat.attack.missed': "{You} {swing} at {targetName} but miss!",
44
- 'combat.attack.hit': "{You} {hit} {targetName} for {damage} damage.",
45
- 'combat.attack.hit_light': "{You} {graze} {targetName}, doing {damage} damage.",
46
- 'combat.attack.hit_heavy': "{You} {land} a solid blow on {targetName}, dealing {damage} damage!",
47
- 'combat.attack.knocked_out': "{targetName} collapses, unconscious!",
48
- 'combat.attack.killed': "{You} {have} slain {targetName}!",
47
+ 'combat.attack.missed': "{You} {swing} at {the:target} but miss!",
48
+ 'combat.attack.hit': "{You} {hit} {the:target} for {damage} damage.",
49
+ 'combat.attack.hit_light': "{You} {graze} {the:target}, doing {damage} damage.",
50
+ 'combat.attack.hit_heavy': "{You} {land} a solid blow on {the:target}, dealing {damage} damage!",
51
+ 'combat.attack.knocked_out': "{the:cap:target} collapses, unconscious!",
52
+ 'combat.attack.killed': "{You} {have} slain {the:target}!",
49
53
  // Combat defense outcomes (ADR-072 CombatService)
50
- 'combat.defend.blocked': "{targetName} blocks {your} attack!",
51
- 'combat.defend.parried': "{targetName} parries {your} attack!",
52
- 'combat.defend.dodged': "{targetName} dodges out of the way!",
54
+ 'combat.defend.blocked': "{the:cap:target} blocks {your} attack!",
55
+ 'combat.defend.parried': "{the:cap:target} parries {your} attack!",
56
+ 'combat.defend.dodged': "{the:cap:target} dodges out of the way!",
53
57
  // Health status descriptions (ADR-072 CombatService)
54
- 'combat.health.healthy': "{targetName} appears uninjured.",
55
- 'combat.health.wounded': "{targetName} has been wounded.",
56
- 'combat.health.badly_wounded': "{targetName} is badly wounded.",
57
- 'combat.health.near_death': "{targetName} is barely clinging to life!",
58
- 'combat.health.unconscious': "{targetName} lies unconscious.",
59
- 'combat.health.dead': "{targetName} is dead.",
58
+ 'combat.health.healthy': "{the:cap:target} appears uninjured.",
59
+ 'combat.health.wounded': "{the:cap:target} has been wounded.",
60
+ 'combat.health.badly_wounded': "{the:cap:target} is badly wounded.",
61
+ 'combat.health.near_death': "{the:cap:target} is barely clinging to life!",
62
+ 'combat.health.unconscious': "{the:cap:target} lies unconscious.",
63
+ 'combat.health.dead': "{the:cap:target} is dead.",
60
64
  // Special weapon effects (ADR-072 CombatService)
61
65
  'combat.special.sword_glows': "{Your} sword glows brightly!",
62
66
  'combat.special.sword_stops_glowing': "{Your} sword's glow fades.",
@@ -67,38 +71,38 @@ exports.attackingLanguage = {
67
71
  'combat.player_died': "{You} {have} been slain!",
68
72
  'combat.player_resurrected': "{You} {feel} life return to {your} body.",
69
73
  // Success messages - combat
70
- 'attacked': "{You} {attack} {target}.",
71
- 'attacked_with': "{You} {attack} {target} with {weapon}.",
72
- 'hit_target': "{You} {hit} {target}.",
74
+ 'attacked': "{You} {attack} {the:target}.",
75
+ 'attacked_with': "{You} {attack} {the:target} with {the:weapon}.",
76
+ 'hit_target': "{You} {hit} {the:target}.",
73
77
  'hit_blindly': "{You} {swing} wildly, hitting nothing.",
74
- 'hit_with': "{You} {hit} {target} with {weapon}.",
75
- 'struck': "{You} {strike} {target}!",
76
- 'struck_with': "{You} {strike} {target} with {weapon}!",
78
+ 'hit_with': "{You} {hit} {the:target} with {the:weapon}.",
79
+ 'struck': "{You} {strike} {the:target}!",
80
+ 'struck_with': "{You} {strike} {the:target} with {the:weapon}!",
77
81
  // Success messages - unarmed
78
- 'punched': "{You} {punch} {target}.",
79
- 'kicked': "{You} {kick} {target}.",
80
- 'unarmed_attack': "{You} {attack} {target} with {your} bare hands.",
82
+ 'punched': "{You} {punch} {the:target}.",
83
+ 'kicked': "{You} {kick} {the:target}.",
84
+ 'unarmed_attack': "{You} {attack} {the:target} with {your} bare hands.",
81
85
  // Success messages - breaking/destroying
82
- 'target_broke': "{target} breaks!",
83
- 'target_shattered': "{target} shatters into pieces!",
84
- 'broke': "{You} {break} {target}!",
85
- 'smashed': "{You} {smash} {target} to pieces!",
86
- 'target_destroyed': "{target} is utterly destroyed!",
87
- 'destroyed': "{You} {destroy} {target}!",
88
- 'shattered': "{target} shatters!",
89
- 'target_damaged': "{target} shows signs of damage. ({damage} damage dealt)",
86
+ 'target_broke': "{the:cap:target} breaks!",
87
+ 'target_shattered': "{the:cap:target} shatters into pieces!",
88
+ 'broke': "{You} {break} {the:target}!",
89
+ 'smashed': "{You} {smash} {the:target} to pieces!",
90
+ 'target_destroyed': "{the:cap:target} is utterly destroyed!",
91
+ 'destroyed': "{You} {destroy} {the:target}!",
92
+ 'shattered': "{the:cap:target} shatters!",
93
+ 'target_damaged': "{the:cap:target} shows signs of damage. ({damage} damage dealt)",
90
94
  // Success messages - killing
91
- 'killed_target': "{You} {have} defeated {target}!",
95
+ 'killed_target': "{You} {have} defeated {the:target}!",
92
96
  'killed_blindly': "Something dies in the darkness.",
93
97
  // Environmental results
94
- 'items_spilled': "{target}'s possessions spill onto the ground.",
98
+ 'items_spilled': "{the:cap:target}'s possessions spill onto the ground.",
95
99
  'passage_revealed': "A hidden passage is revealed!",
96
- 'debris_created': "Debris from {target} litters the area.",
100
+ 'debris_created': "Debris from {the:target} litters the area.",
97
101
  // Target reactions - actors
98
- 'defends': "{target} defends against {your} attack.",
99
- 'dodges': "{target} dodges {your} attack.",
100
- 'retaliates': "{target} fights back!",
101
- 'flees': "{target} flees from {you}!",
102
+ 'defends': "{the:cap:target} defends against {your} attack.",
103
+ 'dodges': "{the:cap:target} dodges {your} attack.",
104
+ 'retaliates': "{the:cap:target} fights back!",
105
+ 'flees': "{the:cap:target} flees from {you}!",
102
106
  // Violence discouragement
103
107
  'peaceful_solution': "Violence isn't necessary here.",
104
108
  'no_fighting': "Fighting won't solve this problem.",
@@ -1 +1 @@
1
- {"version":3,"file":"attacking.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/attacking.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"attacking.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/attacking.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"climbing.d.ts","sourceRoot":"","sources":["../../../../../../repos/sharpee/packages/lang-en-us/src/actions/climbing.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;CA2C5B,CAAC"}
1
+ {"version":3,"file":"climbing.d.ts","sourceRoot":"","sources":["../../../../../../repos/sharpee/packages/lang-en-us/src/actions/climbing.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;CA4C5B,CAAC"}
@@ -27,12 +27,13 @@ exports.climbingLanguage = {
27
27
  ],
28
28
  messages: {
29
29
  'no_target': "What do {you} want to climb?",
30
- 'not_climbable': "{You} {can't} climb {object}.",
30
+ 'not_climbable': "{You} {can't} climb {the:object}.",
31
31
  'cant_go_that_way': "{You} {can't} climb {direction} from here.",
32
32
  'climbed_up': "{You} {climb} up.",
33
33
  'climbed_down': "{You} {climb} down.",
34
- 'climbed_onto': "{You} {climb} onto {object}.",
35
- 'already_there': "{You're} already on {place}.",
34
+ // Note: success path passes `target` param, not `object`. Keep {target}.
35
+ 'climbed_onto': "{You} {climb} onto {the:target}.",
36
+ 'already_there': "{You're} already on {the:place}.",
36
37
  'too_high': "That's too high to climb.",
37
38
  'too_dangerous': "That looks too dangerous to climb.",
38
39
  'need_equipment': "{You}'d need climbing equipment for that.",
@@ -1 +1 @@
1
- {"version":3,"file":"climbing.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/climbing.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,gBAAgB,GAAG;IAC9B,QAAQ,EAAE,oBAAoB;IAE9B,QAAQ,EAAE;QACR,OAAO;QACP,mBAAmB;QACnB,UAAU;QACV,YAAY;QACZ,sBAAsB;QACtB,wBAAwB;QACxB,sBAAsB;QACtB,wBAAwB;QACxB,wBAAwB;QACxB,mBAAmB;QACnB,QAAQ;QACR,oBAAoB;QACpB,SAAS;QACT,qBAAqB;QACrB,yBAAyB;QACzB,wBAAwB;QACxB,qBAAqB;KACtB;IAED,QAAQ,EAAE;QACR,WAAW,EAAE,8BAA8B;QAC3C,eAAe,EAAE,+BAA+B;QAChD,kBAAkB,EAAE,4CAA4C;QAChE,YAAY,EAAE,mBAAmB;QACjC,cAAc,EAAE,qBAAqB;QACrC,cAAc,EAAE,8BAA8B;QAC9C,eAAe,EAAE,8BAA8B;QAC/C,UAAU,EAAE,2BAA2B;QACvC,eAAe,EAAE,oCAAoC;QACrD,gBAAgB,EAAE,2CAA2C;QAC7D,cAAc,EAAE,6BAA6B;QAC7C,kBAAkB,EAAE,gCAAgC;KACrD;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,+CAA+C;QAC5D,QAAQ,EAAE,gDAAgD;QAC1D,OAAO,EAAE,6EAA6E;KACvF;CACF,CAAC"}
1
+ {"version":3,"file":"climbing.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/climbing.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,gBAAgB,GAAG;IAC9B,QAAQ,EAAE,oBAAoB;IAE9B,QAAQ,EAAE;QACR,OAAO;QACP,mBAAmB;QACnB,UAAU;QACV,YAAY;QACZ,sBAAsB;QACtB,wBAAwB;QACxB,sBAAsB;QACtB,wBAAwB;QACxB,wBAAwB;QACxB,mBAAmB;QACnB,QAAQ;QACR,oBAAoB;QACpB,SAAS;QACT,qBAAqB;QACrB,yBAAyB;QACzB,wBAAwB;QACxB,qBAAqB;KACtB;IAED,QAAQ,EAAE;QACR,WAAW,EAAE,8BAA8B;QAC3C,eAAe,EAAE,mCAAmC;QACpD,kBAAkB,EAAE,4CAA4C;QAChE,YAAY,EAAE,mBAAmB;QACjC,cAAc,EAAE,qBAAqB;QACrC,yEAAyE;QACzE,cAAc,EAAE,kCAAkC;QAClD,eAAe,EAAE,kCAAkC;QACnD,UAAU,EAAE,2BAA2B;QACvC,eAAe,EAAE,oCAAoC;QACrD,gBAAgB,EAAE,2CAA2C;QAC7D,cAAc,EAAE,6BAA6B;QAC7C,kBAAkB,EAAE,gCAAgC;KACrD;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,+CAA+C;QAC5D,QAAQ,EAAE,gDAAgD;QAC1D,OAAO,EAAE,6EAA6E;KACvF;CACF,CAAC"}
@@ -12,11 +12,11 @@ exports.closingLanguage = {
12
12
  ],
13
13
  messages: {
14
14
  'no_target': "Close what?",
15
- 'not_closable': "{item} can't be closed.",
16
- 'already_closed': "{item} is already closed.",
17
- 'closed': "{You} {close} {item}.",
18
- 'cant_reach': "{You} {can't} reach {item}.",
19
- 'prevents_closing': "{You} {can't} close {item} while {obstacle} is in the way."
15
+ 'not_closable': "{the:cap:item} can't be closed.",
16
+ 'already_closed': "{the:cap:item} is already closed.",
17
+ 'closed': "{You} {close} {the:item}.",
18
+ 'cant_reach': "{You} {can't} reach {the:item}.",
19
+ 'prevents_closing': "{You} {can't} close {the:item} while {obstacle} is in the way."
20
20
  },
21
21
  help: {
22
22
  description: 'Close containers or doors.',
@@ -1 +1 @@
1
- {"version":3,"file":"closing.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/closing.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,eAAe,GAAG;IAC7B,QAAQ,EAAE,mBAAmB;IAE7B,QAAQ,EAAE;QACR,mBAAmB;QACnB,kBAAkB;KACnB;IAED,QAAQ,EAAE;QACR,WAAW,EAAE,aAAa;QAC1B,cAAc,EAAE,yBAAyB;QACzC,gBAAgB,EAAE,2BAA2B;QAC7C,QAAQ,EAAE,uBAAuB;QACjC,YAAY,EAAE,6BAA6B;QAC3C,kBAAkB,EAAE,4DAA4D;KACjF;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,4BAA4B;QACzC,QAAQ,EAAE,sBAAsB;QAChC,OAAO,EAAE,wFAAwF;KAClG;CACF,CAAC"}
1
+ {"version":3,"file":"closing.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/closing.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,eAAe,GAAG;IAC7B,QAAQ,EAAE,mBAAmB;IAE7B,QAAQ,EAAE;QACR,mBAAmB;QACnB,kBAAkB;KACnB;IAED,QAAQ,EAAE;QACR,WAAW,EAAE,aAAa;QAC1B,cAAc,EAAE,iCAAiC;QACjD,gBAAgB,EAAE,mCAAmC;QACrD,QAAQ,EAAE,2BAA2B;QACrC,YAAY,EAAE,iCAAiC;QAC/C,kBAAkB,EAAE,gEAAgE;KACrF;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,4BAA4B;QACzC,QAAQ,EAAE,sBAAsB;QAChC,OAAO,EAAE,wFAAwF;KAClG;CACF,CAAC"}
@@ -18,35 +18,35 @@ exports.drinkingLanguage = {
18
18
  messages: {
19
19
  // Error messages
20
20
  'no_item': "Drink what?",
21
- 'not_visible': "{You} {can't} see {item}.",
22
- 'not_reachable': "{You} {can't} reach {item}.",
21
+ 'not_visible': "{You} {can't} see {the:item}.",
22
+ 'not_reachable': "{You} {can't} reach {the:item}.",
23
23
  'not_drinkable': "That's not something {you} can drink.",
24
24
  'already_consumed': "There's nothing left to drink.",
25
- 'container_closed': "{You} {need} to open {item} first.",
25
+ 'container_closed': "{You} {need} to open {the:item} first.",
26
26
  // Success messages - basic
27
- 'drunk': "{You} {drink} {item}.",
28
- 'drunk_all': "{You} {drink} all of {item}.",
29
- 'drunk_some': "{You} {drink} some of {item}.",
30
- 'drunk_from': "{You} {drink} from {item}.",
27
+ 'drunk': "{You} {drink} {the:item}.",
28
+ 'drunk_all': "{You} {drink} all of {the:item}.",
29
+ 'drunk_some': "{You} {drink} some of {the:item}.",
30
+ 'drunk_from': "{You} {drink} from {the:item}.",
31
31
  // Success messages - quality
32
- 'refreshing': "{You} {drink} {item}. How refreshing!",
33
- 'satisfying': "{You} {drink} {item}. That hits the spot.",
34
- 'bitter': "{You} {drink} {item}. It's quite bitter.",
35
- 'sweet': "{You} {drink} {item}. It's sweet.",
36
- 'strong': "{You} {drink} {item}. It's strong!",
32
+ 'refreshing': "{You} {drink} {the:item}. How refreshing!",
33
+ 'satisfying': "{You} {drink} {the:item}. That hits the spot.",
34
+ 'bitter': "{You} {drink} {the:item}. It's quite bitter.",
35
+ 'sweet': "{You} {drink} {the:item}. It's sweet.",
36
+ 'strong': "{You} {drink} {the:item}. It's strong!",
37
37
  // Success messages - effects
38
- 'thirst_quenched': "{You} {drink} {item}. {Your} thirst is quenched.",
39
- 'still_thirsty': "{You} {drink} {item}, but {you're} still thirsty.",
40
- 'magical_effects': "{You} {drink} {item}. {You} {feel} strange...",
41
- 'healing': "{You} {drink} {item}. {You} {feel} better!",
38
+ 'thirst_quenched': "{You} {drink} {the:item}. {Your} thirst is quenched.",
39
+ 'still_thirsty': "{You} {drink} {the:item}, but {you're} still thirsty.",
40
+ 'magical_effects': "{You} {drink} {the:item}. {You} {feel} strange...",
41
+ 'healing': "{You} {drink} {the:item}. {You} {feel} better!",
42
42
  // Success messages - container
43
- 'from_container': "{You} {drink} the {liquidType} from {item}.",
43
+ 'from_container': "{You} {drink} the {liquidType} from {the:item}.",
44
44
  'empty_now': "{You} {drink} the last of the {liquidType}.",
45
45
  'some_remains': "{You} {drink} some {liquidType}. Some remains.",
46
46
  // Success messages - special
47
- 'sipped': "{You} {take} a sip of {item}.",
48
- 'quaffed': "{You} {quaff} {item} heartily.",
49
- 'gulped': "{You} {gulp} down {item}."
47
+ 'sipped': "{You} {take} a sip of {the:item}.",
48
+ 'quaffed': "{You} {quaff} {the:item} heartily.",
49
+ 'gulped': "{You} {gulp} down {the:item}."
50
50
  },
51
51
  help: {
52
52
  description: 'Drink liquids to quench thirst or gain effects.',
@@ -1 +1 @@
1
- {"version":3,"file":"drinking.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/drinking.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,gBAAgB,GAAG;IAC9B,QAAQ,EAAE,oBAAoB;IAE9B,QAAQ,EAAE;QACR,mBAAmB;QACnB,wBAAwB;QACxB,iBAAiB;QACjB,sBAAsB;QACtB,mBAAmB;QACnB,oBAAoB;QACpB,qBAAqB;KACtB;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,SAAS,EAAE,aAAa;QACxB,aAAa,EAAE,2BAA2B;QAC1C,eAAe,EAAE,6BAA6B;QAC9C,eAAe,EAAE,uCAAuC;QACxD,kBAAkB,EAAE,gCAAgC;QACpD,kBAAkB,EAAE,oCAAoC;QAExD,2BAA2B;QAC3B,OAAO,EAAE,uBAAuB;QAChC,WAAW,EAAE,8BAA8B;QAC3C,YAAY,EAAE,+BAA+B;QAC7C,YAAY,EAAE,4BAA4B;QAE1C,6BAA6B;QAC7B,YAAY,EAAE,uCAAuC;QACrD,YAAY,EAAE,2CAA2C;QACzD,QAAQ,EAAE,0CAA0C;QACpD,OAAO,EAAE,mCAAmC;QAC5C,QAAQ,EAAE,oCAAoC;QAE9C,6BAA6B;QAC7B,iBAAiB,EAAE,kDAAkD;QACrE,eAAe,EAAE,mDAAmD;QACpE,iBAAiB,EAAE,+CAA+C;QAClE,SAAS,EAAE,4CAA4C;QAEvD,+BAA+B;QAC/B,gBAAgB,EAAE,6CAA6C;QAC/D,WAAW,EAAE,6CAA6C;QAC1D,cAAc,EAAE,gDAAgD;QAEhE,6BAA6B;QAC7B,QAAQ,EAAE,+BAA+B;QACzC,SAAS,EAAE,gCAAgC;QAC3C,QAAQ,EAAE,2BAA2B;KACtC;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,iDAAiD;QAC9D,QAAQ,EAAE,0DAA0D;QACpE,OAAO,EAAE,8EAA8E;KACxF;CACF,CAAC"}
1
+ {"version":3,"file":"drinking.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/drinking.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,gBAAgB,GAAG;IAC9B,QAAQ,EAAE,oBAAoB;IAE9B,QAAQ,EAAE;QACR,mBAAmB;QACnB,wBAAwB;QACxB,iBAAiB;QACjB,sBAAsB;QACtB,mBAAmB;QACnB,oBAAoB;QACpB,qBAAqB;KACtB;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,SAAS,EAAE,aAAa;QACxB,aAAa,EAAE,+BAA+B;QAC9C,eAAe,EAAE,iCAAiC;QAClD,eAAe,EAAE,uCAAuC;QACxD,kBAAkB,EAAE,gCAAgC;QACpD,kBAAkB,EAAE,wCAAwC;QAE5D,2BAA2B;QAC3B,OAAO,EAAE,2BAA2B;QACpC,WAAW,EAAE,kCAAkC;QAC/C,YAAY,EAAE,mCAAmC;QACjD,YAAY,EAAE,gCAAgC;QAE9C,6BAA6B;QAC7B,YAAY,EAAE,2CAA2C;QACzD,YAAY,EAAE,+CAA+C;QAC7D,QAAQ,EAAE,8CAA8C;QACxD,OAAO,EAAE,uCAAuC;QAChD,QAAQ,EAAE,wCAAwC;QAElD,6BAA6B;QAC7B,iBAAiB,EAAE,sDAAsD;QACzE,eAAe,EAAE,uDAAuD;QACxE,iBAAiB,EAAE,mDAAmD;QACtE,SAAS,EAAE,gDAAgD;QAE3D,+BAA+B;QAC/B,gBAAgB,EAAE,iDAAiD;QACnE,WAAW,EAAE,6CAA6C;QAC1D,cAAc,EAAE,gDAAgD;QAEhE,6BAA6B;QAC7B,QAAQ,EAAE,mCAAmC;QAC7C,SAAS,EAAE,oCAAoC;QAC/C,QAAQ,EAAE,+BAA+B;KAC1C;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,iDAAiD;QAC9D,QAAQ,EAAE,0DAA0D;QACpE,OAAO,EAAE,8EAA8E;KACxF;CACF,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"dropping.d.ts","sourceRoot":"","sources":["../../../../../../repos/sharpee/packages/lang-en-us/src/actions/dropping.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;CA0B5B,CAAC"}
1
+ {"version":3,"file":"dropping.d.ts","sourceRoot":"","sources":["../../../../../../repos/sharpee/packages/lang-en-us/src/actions/dropping.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;CA2B5B,CAAC"}
@@ -15,11 +15,12 @@ exports.droppingLanguage = {
15
15
  ],
16
16
  messages: {
17
17
  'no_target': "Drop what?",
18
- 'not_held': "{You} aren't holding {item}.",
18
+ 'not_held': "{You} aren't holding {the:item}.",
19
19
  'nothing_to_drop': "{You} aren't carrying anything.",
20
20
  'dropped': "Dropped.",
21
- 'dropped_in': "{You} {put} {item} in {container}.",
22
- 'dropped_on': "{You} {put} {item} on {surface}.",
21
+ 'dropped_in': "{You} {put} {the:item} in {the:container}.",
22
+ 'dropped_on': "{You} {put} {the:item} on {the:surface}.",
23
+ // Multi-drop label format: rendered without article per IF convention
23
24
  'dropped_multi': "{item}: Dropped."
24
25
  },
25
26
  help: {
@@ -1 +1 @@
1
- {"version":3,"file":"dropping.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/dropping.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,gBAAgB,GAAG;IAC9B,QAAQ,EAAE,oBAAoB;IAE9B,QAAQ,EAAE;QACR,kBAAkB;QAClB,sBAAsB;QACtB,qBAAqB;QACrB,qBAAqB;QACrB,uBAAuB;KACxB;IAED,QAAQ,EAAE;QACR,WAAW,EAAE,YAAY;QACzB,UAAU,EAAE,8BAA8B;QAC1C,iBAAiB,EAAE,iCAAiC;QACpD,SAAS,EAAE,UAAU;QACrB,YAAY,EAAE,oCAAoC;QAClD,YAAY,EAAE,kCAAkC;QAChD,eAAe,EAAE,kBAAkB;KACpC;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,mCAAmC;QAChD,QAAQ,EAAE,uCAAuC;QACjD,OAAO,EAAE,uEAAuE;KACjF;CACF,CAAC"}
1
+ {"version":3,"file":"dropping.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/dropping.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,gBAAgB,GAAG;IAC9B,QAAQ,EAAE,oBAAoB;IAE9B,QAAQ,EAAE;QACR,kBAAkB;QAClB,sBAAsB;QACtB,qBAAqB;QACrB,qBAAqB;QACrB,uBAAuB;KACxB;IAED,QAAQ,EAAE;QACR,WAAW,EAAE,YAAY;QACzB,UAAU,EAAE,kCAAkC;QAC9C,iBAAiB,EAAE,iCAAiC;QACpD,SAAS,EAAE,UAAU;QACrB,YAAY,EAAE,4CAA4C;QAC1D,YAAY,EAAE,0CAA0C;QACxD,sEAAsE;QACtE,eAAe,EAAE,kBAAkB;KACpC;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,mCAAmC;QAChD,QAAQ,EAAE,uCAAuC;QACjD,OAAO,EAAE,uEAAuE;KACjF;CACF,CAAC"}
package/actions/eating.js CHANGED
@@ -19,31 +19,31 @@ exports.eatingLanguage = {
19
19
  messages: {
20
20
  // Error messages
21
21
  'no_item': "Eat what?",
22
- 'not_visible': "{You} {can't} see {item}.",
23
- 'not_reachable': "{You} {can't} reach {item}.",
22
+ 'not_visible': "{You} {can't} see {the:item}.",
23
+ 'not_reachable': "{You} {can't} reach {the:item}.",
24
24
  'not_edible': "That's not something {you} can eat.",
25
- 'is_drink': "{You} should drink {item}, not eat it.",
26
- 'already_consumed': "There's nothing left of {item} to eat.",
25
+ 'is_drink': "{You} should drink {the:item}, not eat it.",
26
+ 'already_consumed': "There's nothing left of {the:item} to eat.",
27
27
  // Success messages - basic
28
- 'eaten': "{You} {eat} {item}.",
29
- 'eaten_all': "{You} {eat} all of {item}.",
30
- 'eaten_some': "{You} {eat} some of {item}.",
31
- 'eaten_portion': "{You} {eat} a portion of {item}.",
28
+ 'eaten': "{You} {eat} {the:item}.",
29
+ 'eaten_all': "{You} {eat} all of {the:item}.",
30
+ 'eaten_some': "{You} {eat} some of {the:item}.",
31
+ 'eaten_portion': "{You} {eat} a portion of {the:item}.",
32
32
  // Success messages - quality
33
- 'delicious': "{You} {eat} {item}. Delicious!",
34
- 'tasty': "{You} {eat} {item}. It's quite tasty.",
35
- 'bland': "{You} {eat} {item}. It's rather bland.",
36
- 'awful': "{You} {eat} {item}. It tastes awful!",
33
+ 'delicious': "{You} {eat} {the:item}. Delicious!",
34
+ 'tasty': "{You} {eat} {the:item}. It's quite tasty.",
35
+ 'bland': "{You} {eat} {the:item}. It's rather bland.",
36
+ 'awful': "{You} {eat} {the:item}. It tastes awful!",
37
37
  // Success messages - effects
38
- 'filling': "{You} {eat} {item}. That was filling.",
39
- 'still_hungry': "{You} {eat} {item}, but {you're} still hungry.",
40
- 'satisfying': "{You} {eat} {item}. Very satisfying!",
41
- 'poisonous': "{You} {eat} {item}. It tastes strange...",
38
+ 'filling': "{You} {eat} {the:item}. That was filling.",
39
+ 'still_hungry': "{You} {eat} {the:item}, but {you're} still hungry.",
40
+ 'satisfying': "{You} {eat} {the:item}. Very satisfying!",
41
+ 'poisonous': "{You} {eat} {the:item}. It tastes strange...",
42
42
  // Success messages - special
43
- 'nibbled': "{You} {nibble} on {item}.",
44
- 'tasted': "{You} {taste} {item}.",
45
- 'devoured': "{You} {devour} {item} hungrily.",
46
- 'munched': "{You} {munch} on {item}."
43
+ 'nibbled': "{You} {nibble} on {the:item}.",
44
+ 'tasted': "{You} {taste} {the:item}.",
45
+ 'devoured': "{You} {devour} {the:item} hungrily.",
46
+ 'munched': "{You} {munch} on {the:item}."
47
47
  },
48
48
  help: {
49
49
  description: 'Eat edible items to satisfy hunger or gain effects.',
@@ -1 +1 @@
1
- {"version":3,"file":"eating.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/eating.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,cAAc,GAAG;IAC5B,QAAQ,EAAE,kBAAkB;IAE5B,QAAQ,EAAE;QACR,iBAAiB;QACjB,qBAAqB;QACrB,oBAAoB;QACpB,mBAAmB;QACnB,sBAAsB;QACtB,oBAAoB;QACpB,uBAAuB;QACvB,mBAAmB;KACpB;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,SAAS,EAAE,WAAW;QACtB,aAAa,EAAE,2BAA2B;QAC1C,eAAe,EAAE,6BAA6B;QAC9C,YAAY,EAAE,qCAAqC;QACnD,UAAU,EAAE,wCAAwC;QACpD,kBAAkB,EAAE,wCAAwC;QAE5D,2BAA2B;QAC3B,OAAO,EAAE,qBAAqB;QAC9B,WAAW,EAAE,4BAA4B;QACzC,YAAY,EAAE,6BAA6B;QAC3C,eAAe,EAAE,kCAAkC;QAEnD,6BAA6B;QAC7B,WAAW,EAAE,gCAAgC;QAC7C,OAAO,EAAE,uCAAuC;QAChD,OAAO,EAAE,wCAAwC;QACjD,OAAO,EAAE,sCAAsC;QAE/C,6BAA6B;QAC7B,SAAS,EAAE,uCAAuC;QAClD,cAAc,EAAE,gDAAgD;QAChE,YAAY,EAAE,sCAAsC;QACpD,WAAW,EAAE,0CAA0C;QAEvD,6BAA6B;QAC7B,SAAS,EAAE,2BAA2B;QACtC,QAAQ,EAAE,uBAAuB;QACjC,UAAU,EAAE,iCAAiC;QAC7C,SAAS,EAAE,0BAA0B;KACtC;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,qDAAqD;QAClE,QAAQ,EAAE,qDAAqD;QAC/D,OAAO,EAAE,8EAA8E;KACxF;CACF,CAAC"}
1
+ {"version":3,"file":"eating.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/eating.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,cAAc,GAAG;IAC5B,QAAQ,EAAE,kBAAkB;IAE5B,QAAQ,EAAE;QACR,iBAAiB;QACjB,qBAAqB;QACrB,oBAAoB;QACpB,mBAAmB;QACnB,sBAAsB;QACtB,oBAAoB;QACpB,uBAAuB;QACvB,mBAAmB;KACpB;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,SAAS,EAAE,WAAW;QACtB,aAAa,EAAE,+BAA+B;QAC9C,eAAe,EAAE,iCAAiC;QAClD,YAAY,EAAE,qCAAqC;QACnD,UAAU,EAAE,4CAA4C;QACxD,kBAAkB,EAAE,4CAA4C;QAEhE,2BAA2B;QAC3B,OAAO,EAAE,yBAAyB;QAClC,WAAW,EAAE,gCAAgC;QAC7C,YAAY,EAAE,iCAAiC;QAC/C,eAAe,EAAE,sCAAsC;QAEvD,6BAA6B;QAC7B,WAAW,EAAE,oCAAoC;QACjD,OAAO,EAAE,2CAA2C;QACpD,OAAO,EAAE,4CAA4C;QACrD,OAAO,EAAE,0CAA0C;QAEnD,6BAA6B;QAC7B,SAAS,EAAE,2CAA2C;QACtD,cAAc,EAAE,oDAAoD;QACpE,YAAY,EAAE,0CAA0C;QACxD,WAAW,EAAE,8CAA8C;QAE3D,6BAA6B;QAC7B,SAAS,EAAE,+BAA+B;QAC1C,QAAQ,EAAE,2BAA2B;QACrC,UAAU,EAAE,qCAAqC;QACjD,SAAS,EAAE,8BAA8B;KAC1C;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,qDAAqD;QAClE,QAAQ,EAAE,qDAAqD;QAC/D,OAAO,EAAE,8EAA8E;KACxF;CACF,CAAC"}
@@ -29,16 +29,16 @@ exports.enteringLanguage = {
29
29
  ],
30
30
  messages: {
31
31
  'no_target': "Enter what?",
32
- 'not_enterable': "{You} {can't} enter {place}.",
33
- 'already_inside': "{You're} already in {place}.",
34
- 'container_closed': "{container} is closed.",
35
- 'too_full': "{place} is full (maximum {max} occupants).",
36
- 'entered': "{You} {get} into {place}.",
37
- 'entered_on': "{You} {get} onto {place}.",
38
- 'cant_enter': "{You} {can't} enter {place}: {reason}.",
39
- 'not_here': "{You} {don't} see {place} here.",
40
- 'too_small': "{place} is too small for {you} to enter.",
41
- 'occupied': "{place} is already occupied."
32
+ 'not_enterable': "{You} {can't} enter {the:place}.",
33
+ 'already_inside': "{You're} already in {the:place}.",
34
+ 'container_closed': "{the:cap:container} is closed.",
35
+ 'too_full': "{the:cap:place} is full (maximum {max} occupants).",
36
+ 'entered': "{You} {get} into {the:place}.",
37
+ 'entered_on': "{You} {get} onto {the:place}.",
38
+ 'cant_enter': "{You} {can't} enter {the:place}: {reason}.",
39
+ 'not_here': "{You} {don't} see {the:place} here.",
40
+ 'too_small': "{the:cap:place} is too small for {you} to enter.",
41
+ 'occupied': "{the:cap:place} is already occupied."
42
42
  },
43
43
  help: {
44
44
  description: 'Enter containers, vehicles, or furniture that can hold you.',
@@ -1 +1 @@
1
- {"version":3,"file":"entering.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/entering.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,gBAAgB,GAAG;IAC9B,QAAQ,EAAE,oBAAoB;IAE9B,QAAQ,EAAE;QACR,mBAAmB;QACnB,oBAAoB;QACpB,sBAAsB;QACtB,oBAAoB;QACpB,mBAAmB;QACnB,qBAAqB;QACrB,uBAAuB;QACvB,mBAAmB;QACnB,mBAAmB;QACnB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,sBAAsB;QACtB,sBAAsB;QACtB,sBAAsB;QACtB,wBAAwB;QACxB,sBAAsB;QACtB,wBAAwB;KACzB;IAED,QAAQ,EAAE;QACR,WAAW,EAAE,aAAa;QAC1B,eAAe,EAAE,8BAA8B;QAC/C,gBAAgB,EAAE,8BAA8B;QAChD,kBAAkB,EAAE,wBAAwB;QAC5C,UAAU,EAAE,4CAA4C;QACxD,SAAS,EAAE,2BAA2B;QACtC,YAAY,EAAE,2BAA2B;QACzC,YAAY,EAAE,wCAAwC;QACtD,UAAU,EAAE,iCAAiC;QAC7C,WAAW,EAAE,0CAA0C;QACvD,UAAU,EAAE,8BAA8B;KAC3C;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,6DAA6D;QAC1E,QAAQ,EAAE,iDAAiD;QAC3D,OAAO,EAAE,+FAA+F;KACzG;CACF,CAAC"}
1
+ {"version":3,"file":"entering.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/entering.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,gBAAgB,GAAG;IAC9B,QAAQ,EAAE,oBAAoB;IAE9B,QAAQ,EAAE;QACR,mBAAmB;QACnB,oBAAoB;QACpB,sBAAsB;QACtB,oBAAoB;QACpB,mBAAmB;QACnB,qBAAqB;QACrB,uBAAuB;QACvB,mBAAmB;QACnB,mBAAmB;QACnB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,sBAAsB;QACtB,sBAAsB;QACtB,sBAAsB;QACtB,wBAAwB;QACxB,sBAAsB;QACtB,wBAAwB;KACzB;IAED,QAAQ,EAAE;QACR,WAAW,EAAE,aAAa;QAC1B,eAAe,EAAE,kCAAkC;QACnD,gBAAgB,EAAE,kCAAkC;QACpD,kBAAkB,EAAE,gCAAgC;QACpD,UAAU,EAAE,oDAAoD;QAChE,SAAS,EAAE,+BAA+B;QAC1C,YAAY,EAAE,+BAA+B;QAC7C,YAAY,EAAE,4CAA4C;QAC1D,UAAU,EAAE,qCAAqC;QACjD,WAAW,EAAE,kDAAkD;QAC/D,UAAU,EAAE,sCAAsC;KACnD;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,6DAA6D;QAC1E,QAAQ,EAAE,iDAAiD;QAC3D,OAAO,EAAE,+FAA+F;KACzG;CACF,CAAC"}
@@ -16,6 +16,7 @@ export declare const examiningLanguage: {
16
16
  examined_switchable: string;
17
17
  examined_wearable: string;
18
18
  examined_door: string;
19
+ examined_wall: string;
19
20
  nothing_special: string;
20
21
  description: string;
21
22
  brief_description: string;
@@ -1 +1 @@
1
- {"version":3,"file":"examining.d.ts","sourceRoot":"","sources":["../../../../../../repos/sharpee/packages/lang-en-us/src/actions/examining.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+C7B,CAAC"}
1
+ {"version":3,"file":"examining.d.ts","sourceRoot":"","sources":["../../../../../../repos/sharpee/packages/lang-en-us/src/actions/examining.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgD7B,CAAC"}
@@ -17,8 +17,8 @@ exports.examiningLanguage = {
17
17
  messages: {
18
18
  // Error messages
19
19
  'no_target': "Examine what?",
20
- 'not_visible': "{You} {can't} see {item} here.",
21
- 'cant_see': "{You} {can't} see {item} here.",
20
+ 'not_visible': "{You} {can't} see {the:item} here.",
21
+ 'cant_see': "{You} {can't} see {the:item} here.",
22
22
  // Success messages - these match stdlib's ExaminingMessages
23
23
  'examined': "{description}",
24
24
  'examined_self': "{description}",
@@ -28,18 +28,19 @@ exports.examiningLanguage = {
28
28
  'examined_switchable': "{description}",
29
29
  'examined_wearable': "{description}",
30
30
  'examined_door': "{description}",
31
- 'nothing_special': "{You} {see} nothing special about {item}.",
31
+ 'examined_wall': "{description}",
32
+ 'nothing_special': "{You} {see} nothing special about {the:item}.",
32
33
  'description': "{description}",
33
34
  'brief_description': "{description}",
34
- 'no_description': "{You} {see} nothing special about {item}.",
35
+ 'no_description': "{You} {see} nothing special about {the:item}.",
35
36
  // Legacy messages for compatibility
36
- 'container_open': "{item} is open.",
37
- 'container_closed': "{item} is closed.",
38
- 'container_empty': "{item} is empty.",
39
- 'container_contents': "In {container} {you} {see} {items}.",
40
- 'surface_contents': "On {surface} {you} {see} {items}.",
41
- 'worn_by_you': "{You} {are} wearing {item}.",
42
- 'worn_by_other': "{actor} is wearing {item}."
37
+ 'container_open': "{the:cap:item} is open.",
38
+ 'container_closed': "{the:cap:item} is closed.",
39
+ 'container_empty': "{the:cap:item} is empty.",
40
+ 'container_contents': "In {the:container} {you} {see} {items}.",
41
+ 'surface_contents': "On {the:surface} {you} {see} {items}.",
42
+ 'worn_by_you': "{You} {are} wearing {the:item}.",
43
+ 'worn_by_other': "{actor} is wearing {the:item}."
43
44
  },
44
45
  help: {
45
46
  description: 'Examine objects more closely.',
@@ -1 +1 @@
1
- {"version":3,"file":"examining.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/examining.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,iBAAiB,GAAG;IAC/B,QAAQ,EAAE,qBAAqB;IAE/B,QAAQ,EAAE;QACR,qBAAqB;QACrB,eAAe;QACf,qBAAqB;QACrB,qBAAqB;QACrB,mBAAmB;QACnB,kBAAkB;KACnB;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,WAAW,EAAE,eAAe;QAC5B,aAAa,EAAE,gCAAgC;QAC/C,UAAU,EAAE,gCAAgC;QAE5C,4DAA4D;QAC5D,UAAU,EAAE,eAAe;QAC3B,eAAe,EAAE,eAAe;QAChC,oBAAoB,EAAE,eAAe;QACrC,oBAAoB,EAAE,eAAe;QACrC,mBAAmB,EAAE,eAAe;QACpC,qBAAqB,EAAE,eAAe;QACtC,mBAAmB,EAAE,eAAe;QACpC,eAAe,EAAE,eAAe;QAChC,iBAAiB,EAAE,2CAA2C;QAC9D,aAAa,EAAE,eAAe;QAC9B,mBAAmB,EAAE,eAAe;QACpC,gBAAgB,EAAE,2CAA2C;QAE7D,oCAAoC;QACpC,gBAAgB,EAAE,iBAAiB;QACnC,kBAAkB,EAAE,mBAAmB;QACvC,iBAAiB,EAAE,kBAAkB;QACrC,oBAAoB,EAAE,qCAAqC;QAC3D,kBAAkB,EAAE,mCAAmC;QACvD,aAAa,EAAE,6BAA6B;QAC5C,eAAe,EAAE,4BAA4B;KAC9C;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,+BAA+B;QAC5C,QAAQ,EAAE,iDAAiD;QAC3D,OAAO,EAAE,2FAA2F;KACrG;CACF,CAAC"}
1
+ {"version":3,"file":"examining.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/examining.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,iBAAiB,GAAG;IAC/B,QAAQ,EAAE,qBAAqB;IAE/B,QAAQ,EAAE;QACR,qBAAqB;QACrB,eAAe;QACf,qBAAqB;QACrB,qBAAqB;QACrB,mBAAmB;QACnB,kBAAkB;KACnB;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,WAAW,EAAE,eAAe;QAC5B,aAAa,EAAE,oCAAoC;QACnD,UAAU,EAAE,oCAAoC;QAEhD,4DAA4D;QAC5D,UAAU,EAAE,eAAe;QAC3B,eAAe,EAAE,eAAe;QAChC,oBAAoB,EAAE,eAAe;QACrC,oBAAoB,EAAE,eAAe;QACrC,mBAAmB,EAAE,eAAe;QACpC,qBAAqB,EAAE,eAAe;QACtC,mBAAmB,EAAE,eAAe;QACpC,eAAe,EAAE,eAAe;QAChC,eAAe,EAAE,eAAe;QAChC,iBAAiB,EAAE,+CAA+C;QAClE,aAAa,EAAE,eAAe;QAC9B,mBAAmB,EAAE,eAAe;QACpC,gBAAgB,EAAE,+CAA+C;QAEjE,oCAAoC;QACpC,gBAAgB,EAAE,yBAAyB;QAC3C,kBAAkB,EAAE,2BAA2B;QAC/C,iBAAiB,EAAE,0BAA0B;QAC7C,oBAAoB,EAAE,yCAAyC;QAC/D,kBAAkB,EAAE,uCAAuC;QAC3D,aAAa,EAAE,iCAAiC;QAChD,eAAe,EAAE,gCAAgC;KAClD;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,+BAA+B;QAC5C,QAAQ,EAAE,iDAAiD;QAC3D,OAAO,EAAE,2FAA2F;KACrG;CACF,CAAC"}
@@ -23,10 +23,10 @@ exports.exitingLanguage = {
23
23
  ],
24
24
  messages: {
25
25
  'already_outside': "{You're} not inside anything.",
26
- 'container_closed': "{container} is closed.",
27
- 'cant_exit': "{You} {can't} exit {place}.",
28
- 'exited': "{You} {get} out of {place}.",
29
- 'exited_from': "{You} {get} {preposition} {place}.",
26
+ 'container_closed': "{the:cap:container} is closed.",
27
+ 'cant_exit': "{You} {can't} exit {the:place}.",
28
+ 'exited': "{You} {get} out of {the:place}.",
29
+ 'exited_from': "{You} {get} {preposition} {the:place}.",
30
30
  'nowhere_to_go': "There's nowhere to go from here.",
31
31
  'exit_blocked': "The way out is blocked.",
32
32
  'must_stand_first': "{You}'ll need to stand up first."
@@ -1 +1 @@
1
- {"version":3,"file":"exiting.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/exiting.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,eAAe,GAAG;IAC7B,QAAQ,EAAE,mBAAmB;IAE7B,QAAQ,EAAE;QACR,MAAM;QACN,SAAS;QACT,SAAS;QACT,QAAQ;QACR,YAAY;QACZ,OAAO;QACP,UAAU;QACV,OAAO;QACP,UAAU;QACV,WAAW;QACX,WAAW;QACX,WAAW;QACX,QAAQ;KACT;IAED,QAAQ,EAAE;QACR,iBAAiB,EAAE,+BAA+B;QAClD,kBAAkB,EAAE,wBAAwB;QAC5C,WAAW,EAAE,6BAA6B;QAC1C,QAAQ,EAAE,6BAA6B;QACvC,aAAa,EAAE,oCAAoC;QACnD,eAAe,EAAE,kCAAkC;QACnD,cAAc,EAAE,yBAAyB;QACzC,kBAAkB,EAAE,kCAAkC;KACvD;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,8DAA8D;QAC3E,QAAQ,EAAE,gCAAgC;QAC1C,OAAO,EAAE,iGAAiG;KAC3G;CACF,CAAC"}
1
+ {"version":3,"file":"exiting.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/exiting.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,eAAe,GAAG;IAC7B,QAAQ,EAAE,mBAAmB;IAE7B,QAAQ,EAAE;QACR,MAAM;QACN,SAAS;QACT,SAAS;QACT,QAAQ;QACR,YAAY;QACZ,OAAO;QACP,UAAU;QACV,OAAO;QACP,UAAU;QACV,WAAW;QACX,WAAW;QACX,WAAW;QACX,QAAQ;KACT;IAED,QAAQ,EAAE;QACR,iBAAiB,EAAE,+BAA+B;QAClD,kBAAkB,EAAE,gCAAgC;QACpD,WAAW,EAAE,iCAAiC;QAC9C,QAAQ,EAAE,iCAAiC;QAC3C,aAAa,EAAE,wCAAwC;QACvD,eAAe,EAAE,kCAAkC;QACnD,cAAc,EAAE,yBAAyB;QACzC,kBAAkB,EAAE,kCAAkC;KACvD;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,8DAA8D;QAC3E,QAAQ,EAAE,gCAAgC;QAC1C,OAAO,EAAE,iGAAiG;KAC3G;CACF,CAAC"}